:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --indigo: #059669;
  --violet: #047857;
  --rose: #e11d48;
  --emerald: #059669;
  --amber: #fbbf24;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(15, 23, 42, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--soft); font-family: Inter, Arial, sans-serif; font-weight: 500; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.eyebrow { margin: 0 0 10px; color: var(--indigo); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-title { margin: 0; font-size: clamp(32px, 5vw, 50px); line-height: 1.05; letter-spacing: -.045em; font-weight: 900; }
.lead { color: var(--muted); font-size: 17px; line-height: 1.75; }
.muted { color: var(--muted); }

/* Header */
.trust-bar { color: #fff; background: #020617; }
.trust-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 16px; font-size: 11px; font-weight: 800; }
.trust-inner > div { display: flex; gap: 20px; }
.nav-shell { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(226,232,240,.9); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.nav-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: #fff; background: #020617; font-size: 13px; font-weight: 900; box-shadow: 0 10px 25px rgba(79,70,229,.2); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; font-weight: 900; }
.brand small { margin-top: 2px; color: var(--indigo); font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a { position: relative; color: #334155; font-size: 12px; font-weight: 800; transition: color .2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--indigo); }
.page-nav-dropdown { position: relative; }
.page-nav-dropdown summary { cursor: pointer; list-style: none; color: #334155; font-size: 12px; font-weight: 800; }
.page-nav-dropdown summary::-webkit-details-marker { display: none; }
.page-nav-dropdown > div { position: absolute; z-index: 30; top: 24px; left: 50%; display: grid; min-width: 210px; padding: 8px; transform: translateX(-50%); border: 1px solid #e2e8f0; border-radius: 14px; background: #fff; box-shadow: 0 18px 45px rgba(15,23,42,.16); }
.page-nav-dropdown > div a { padding: 10px 12px; border-radius: 9px; white-space: nowrap; }
.page-nav-dropdown > div a:hover { background: #f1f5f9; }
.drawer-panel nav .drawer-subitem { padding-left: 30px; font-size: 13px; }
.footer-subitem { padding-left: 12px; opacity: .85; }
.blog-cover { overflow: hidden; }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-featured-image { width: 100%; max-height: 520px; margin-bottom: 24px; object-fit: cover; border-radius: 18px; }
.desktop-nav a.active::after { content: ""; position: absolute; right: 0; bottom: -28px; left: 0; height: 2px; background: var(--indigo); }
.nav-actions { display: flex; gap: 8px; }
.message-button, .cart-button { border-radius: 12px; padding: 12px 15px; color: #fff; font-size: 12px; font-weight: 900; }
.message-button { background: var(--violet); }
.cart-button { background: var(--rose); }
.cart-button span, .drawer-cart span, .mobile-cta span { display: inline-grid; min-width: 20px; height: 20px; margin-left: 4px; place-items: center; border-radius: 999px; color: var(--ink); background: #fff; font-size: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fff; font-size: 20px; }
.mobile-drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; pointer-events: none; }
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.drawer-overlay { position: absolute; inset: 0; border: 0; opacity: 0; background: rgba(2,6,23,.55); backdrop-filter: blur(3px); transition: opacity .25s; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; width: min(88%, 370px); height: 100%; padding: 24px; overflow-y: auto; transform: translateX(100%); background: #fff; box-shadow: -20px 0 50px rgba(2,6,23,.15); transition: transform .28s; }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; }
.drawer-head strong { font-weight: 900; }
.drawer-head button { width: 40px; height: 40px; border: 0; border-radius: 11px; background: #f1f5f9; }
.drawer-panel nav { display: grid; gap: 6px; }
.drawer-panel nav a { border-radius: 12px; padding: 13px 14px; color: #334155; font-size: 15px; font-weight: 800; }
.drawer-panel nav a:hover { background: #f1f5f9; }
.drawer-panel nav .drawer-cart { margin-top: 14px; color: #fff; background: var(--rose); text-align: center; }

/* Hero and common page headers */
.hero { overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(5,150,105,.34), transparent 30%), radial-gradient(circle at 10% 90%, rgba(16,185,129,.15), transparent 30%), linear-gradient(135deg,#020617,#0f172a 58%,#052e2b); }
.hero-grid { display: grid; min-height: 620px; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; padding-block: 80px; }
.hero h1 { max-width: 700px; margin: 0; font-size: clamp(48px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; font-weight: 900; }
.hero h1 span { color: transparent; background: linear-gradient(90deg,#6ee7b7,#a7f3d0,#fde68a); background-clip: text; }
.hero p { max-width: 620px; color: #cbd5e1; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .secondary-button, .outline-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 0; border-radius: 13px; padding: 0 20px; font-size: 13px; font-weight: 900; transition: transform .2s, box-shadow .2s; }
.primary-button { color: #fff; background: var(--indigo); box-shadow: 0 12px 25px rgba(79,70,229,.22); }
.primary-button:hover, .secondary-button:hover, .outline-button:hover { transform: translateY(-2px); }
.secondary-button { color: var(--ink); background: #fff; }
.outline-button { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.hero-card { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 30px; padding: 28px; background: rgba(255,255,255,.09); box-shadow: 0 30px 80px rgba(2,6,23,.35); backdrop-filter: blur(18px); }
.hero-card h2 { margin: 18px 0 8px; font-size: 28px; font-weight: 900; }
.hero-card .price { font-size: 34px; font-weight: 900; }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; color: #cbd5e1; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.page-hero { color: #fff; background: radial-gradient(circle at 80% 0%, rgba(124,58,237,.28), transparent 30%), #020617; }
.page-hero .container { padding-block: 72px; }
.breadcrumbs { margin-bottom: 18px; color: #a5b4fc; font-size: 12px; font-weight: 800; }
.page-hero h1 { max-width: 780px; margin: 0; font-size: clamp(38px,6vw,64px); line-height: 1; letter-spacing: -.045em; font-weight: 900; }
.page-hero p { max-width: 650px; color: #cbd5e1; line-height: 1.75; }

/* Product visuals and cards */
.product-visual { position: relative; display: grid; min-height: 250px; place-items: center; overflow: hidden; border-radius: 17px; background: linear-gradient(145deg,#6366f1,#312e81); }
.product-visual::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.05), 0 0 0 60px rgba(255,255,255,.03); }
.product-visual.rose { background: linear-gradient(145deg,#f43f5e,#881337); }
.product-visual.emerald { background: linear-gradient(145deg,#10b981,#065f46); }
.product-visual.sky { background: linear-gradient(145deg,#0ea5e9,#312e81); }
.product-visual.amber { background: linear-gradient(145deg,#f59e0b,#92400e); }
.product-visual.violet { background: linear-gradient(145deg,#8b5cf6,#4c1d95); }
.product-card-image { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.product-box { position: relative; z-index: 2; display: grid; width: 112px; height: 168px; place-items: center; transform: rotate(-4deg); border: 1px solid rgba(255,255,255,.42); border-radius: 10px; color: #fff; background: rgba(15,23,42,.68); box-shadow: 0 25px 40px rgba(2,6,23,.35); backdrop-filter: blur(10px); }
.product-box strong { font-size: 34px; font-weight: 900; }
.product-box small { font-size: 7px; font-weight: 900; letter-spacing: .18em; }
.badge { position: absolute; z-index: 4; top: 16px; left: 16px; border-radius: 999px; padding: 7px 10px; color: var(--ink); background: var(--amber); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.products-section { padding-block: 80px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 3px 12px rgba(15,23,42,.03); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card-media { position: relative; padding: 12px; }
.product-card-body { padding: 8px 20px 20px; }
.product-card .category { color: var(--indigo); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-card h2, .product-card h3 { margin: 7px 0 8px; font-size: 22px; letter-spacing: -.025em; font-weight: 900; }
.product-card p { min-height: 48px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.price-list { overflow: hidden; margin-top: 16px; border: 1px solid var(--line); border-radius: 12px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; color: #475569; font-size: 11px; font-weight: 800; }
.price-row + .price-row { border-top: 1px solid #f1f5f9; }
.price-row.popular { color: #065f46; background: #ecfdf5; }
.price-row em { border-radius: 5px; padding: 3px 5px; color: #fff; background: var(--indigo); font-size: 8px; font-style: normal; text-transform: uppercase; }
.card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 16px; }
.card-actions .primary-button { min-height: 44px; }
.quick-add { width: 44px; height: 44px; border: 0; border-radius: 12px; color: var(--rose); background: #fff1f2; font-weight: 900; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filters a { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; color: #475569; background: #fff; font-size: 11px; font-weight: 800; }
.filters a.active { border-color: var(--indigo); color: #fff; background: var(--indigo); }

/* Product details */
.product-detail { padding-block: 70px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: start; }
.product-left-column, .product-right-column { min-width: 0; }
.product-description { margin-top: 26px; }
.product-description > :first-child { margin-top: 0; }
.product-description > :last-child { margin-bottom: 0; }
.product-detail .product-visual { min-height: 520px; border-radius: 28px; }
.product-detail .product-box { width: 170px; height: 260px; }
.product-gallery { min-width: 0; }
.product-gallery-main { position: relative; overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.product-gallery-main img { display: block; width: 100%; height: 100%; object-fit: contain; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; margin-top: 12px; }
.product-gallery-thumb { overflow: hidden; aspect-ratio: 1/1; border: 2px solid transparent; border-radius: 12px; padding: 3px; background: #fff; }
.product-gallery-thumb.active { border-color: var(--indigo); box-shadow: 0 0 0 2px #c7d2fe; }
.product-gallery-thumb img { display: block; width: 100%; height: 100%; border-radius: 8px; object-fit: cover; }
.product-info h1 { margin: 8px 0 16px; font-size: clamp(36px,4vw,52px); line-height: 1.05; letter-spacing: -.045em; font-weight: 900; }
.product-summary { border: 1px solid #dbe7e8; border-radius: 12px; padding: 18px 20px; color: #263746; background: #f4fbfb; font-size: 14px; font-weight: 700; line-height: 1.65; }
.availability { color: var(--emerald); font-size: 12px; font-weight: 900; }
.product-copy { color: var(--muted); font-size: 16px; line-height: 1.8; }
.feature-list { display: grid; gap: 9px; margin: 24px 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 25px; color: #475569; font-size: 14px; font-weight: 700; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 900; }
.buy-box { margin-top: 24px; padding: 0; background: #fff; }
.buy-box h2 { margin: 0; border-bottom: 1px solid var(--line); padding-bottom: 10px; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.variant-list { display: grid; }
.variant-option { display: flex; min-height: 46px; cursor: pointer; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding: 8px 14px; }
.variant-option:has(input:checked) { background: #fff5ef; }
.variant-option input { accent-color: var(--indigo); }
.variant-option span { flex: 1; font-size: 13px; font-weight: 800; }
.variant-option strong { min-width: 98px; border-radius: 6px; padding: 7px 10px; color: #fff; background: #263b53; font-size: 14px; font-weight: 900; text-align: center; }
.variant-option:has(input:checked) strong { background: #ff7f45; }
.popular-pill { flex: 0 !important; border-radius: 5px; padding: 4px 6px; color: #fff; background: var(--indigo); font-size: 8px !important; text-transform: uppercase; }
.buy-actions { display: grid; grid-template-columns: 90px 1fr; gap: 10px; margin-top: 14px; }
.quantity-input { width: 100%; border: 1px solid var(--line); border-radius: 13px; padding: 0 12px; text-align: center; font-weight: 900; }
.buy-actions.single-action { grid-template-columns: 1fr; }
.selected-package { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; border: 1px solid #dbe7e8; border-radius: 10px; padding: 14px 16px; background: #f4fbfb; }
.selected-package span { display: grid; gap: 3px; }
.selected-package small { color: #94a3b8; font-weight: 800; }
.selected-package b { color: #ff7f45; font-size: 27px; }
.cart-line.fixed-package { grid-template-columns: 68px minmax(0,1fr) auto auto; }
.medical-note { margin-top: 22px; border: 1px solid #fde68a; border-radius: 15px; padding: 16px; color: #78350f; background: #fffbeb; font-size: 12px; line-height: 1.65; }

/* Cart */
.cart-section { padding-block: 70px; }
.cart-layout { display: grid; grid-template-columns: 1.35fr .65fr; align-items: start; gap: 28px; }
.cart-card, .summary-card, .empty-state { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 5px 20px rgba(15,23,42,.04); }
.cart-card { overflow: hidden; }
.cart-line { display: grid; grid-template-columns: 86px 1fr 90px 120px auto; align-items: center; gap: 16px; padding: 18px; }
.cart-line + .cart-line { border-top: 1px solid var(--line); }
.cart-thumb { display: grid; height: 82px; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(145deg,#6366f1,#312e81); font-weight: 900; }
.cart-thumb { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.cart-thumb img { display: block; width: 100%; height: 100%; object-fit: contain; }
.cart-product-info { min-width: 0; }
.cart-package-change { display: grid; gap: 6px; margin-top: 12px; }
.cart-line.fixed-package > .cart-package-change { grid-column: 2; }
.cart-package-change > label { color: #475569; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.cart-package-change > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 7px; }
.cart-package-change select { min-width: 0; width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; color: var(--ink); background: #fff; font-size: 11px; font-weight: 800; }
.cart-package-change button { border: 0; border-radius: 10px; padding: 9px 12px; color: #fff; background: var(--indigo); font-size: 11px; font-weight: 900; }
.cart-line h2 { margin: 0 0 5px; font-size: 16px; font-weight: 900; }
.cart-line p { margin: 0; color: var(--muted); font-size: 11px; }
.cart-line input { width: 70px; border: 1px solid var(--line); border-radius: 10px; padding: 9px; text-align: center; font-weight: 800; }
.cart-line > strong { font-size: 14px; text-align: right; }
.remove-button { border: 0; color: var(--rose); background: transparent; font-size: 12px; font-weight: 900; }
.cart-update { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding: 16px 18px; }
.summary-card { position: sticky; top: 98px; padding: 22px; }
.summary-card h2 { margin: 0 0 18px; font-size: 20px; font-weight: 900; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; color: #475569; font-size: 13px; }
.summary-row + .summary-row { border-top: 1px solid #f1f5f9; }
.summary-row.total { margin-top: 4px; color: var(--ink); font-size: 17px; font-weight: 900; }
.summary-card .primary-button { width: 100%; margin-top: 16px; }
.empty-state { padding: 60px 24px; text-align: center; }
.empty-state h2 { font-size: 30px; font-weight: 900; }

/* Blog */
.blog-section { padding-block: 75px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-cover { position: relative; display: flex; min-height: 190px; align-items: end; padding: 22px; color: #fff; background: radial-gradient(circle at 70% 20%,rgba(255,255,255,.2),transparent 25%), linear-gradient(145deg,#6366f1,#312e81); }
.blog-cover.rose { background: linear-gradient(145deg,#f43f5e,#881337); }
.blog-cover.emerald { background: linear-gradient(145deg,#10b981,#065f46); }
.blog-cover.sky { background: linear-gradient(145deg,#0ea5e9,#312e81); }
.blog-cover.violet { background: linear-gradient(145deg,#8b5cf6,#4c1d95); }
.blog-cover span { border-radius: 999px; padding: 7px 10px; background: rgba(255,255,255,.15); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.blog-card-body { padding: 22px; }
.blog-meta { color: var(--indigo); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.blog-card h2 { margin: 10px 0; font-size: 22px; line-height: 1.25; letter-spacing: -.02em; font-weight: 900; }
.blog-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.read-link { display: inline-block; margin-top: 10px; color: var(--indigo); font-size: 12px; font-weight: 900; }
.article-wrap { padding-block: 70px; }
.article-layout { display: grid; grid-template-columns: minmax(0,820px) 280px; justify-content: center; align-items: start; gap: 40px; }
.article-body { border: 1px solid var(--line); border-radius: 28px; padding: 48px; background: #fff; }
.article-body h1 { margin: 12px 0 18px; font-size: clamp(38px,5vw,58px); line-height: 1.05; letter-spacing: -.045em; font-weight: 900; }
.article-body .intro { color: var(--muted); font-size: 18px; line-height: 1.8; }
.article-body section { padding-top: 32px; }
.article-body h2 { font-size: 28px; letter-spacing: -.025em; font-weight: 900; }
.article-body section p { color: #475569; font-size: 15px; line-height: 1.85; }
.article-note { margin-top: 30px; border-left: 4px solid var(--indigo); border-radius: 0 14px 14px 0; padding: 20px; color: #312e81; background: #eef2ff; font-size: 14px; line-height: 1.7; }
.seo-guide { padding-block: 80px; background: #eef2ff; }
.seo-guide-body { max-width: 920px; margin-inline: auto; }
.seo-guide-body > h2 { margin: 0; font-size: clamp(34px,5vw,52px); line-height: 1.08; letter-spacing: -.04em; font-weight: 900; }
.seo-guide-body h3 { margin: 0 0 12px; font-size: 23px; font-weight: 900; }
.seo-guide-body li { margin: 7px 0; color: #475569; line-height: 1.7; }
.seo-guide-body blockquote { margin: 24px 0 0; border-left: 4px solid var(--indigo); border-radius: 0 14px 14px 0; padding: 18px 20px; color: #312e81; background: #eef2ff; font-weight: 800; line-height: 1.7; }
.article-sidebar { position: sticky; top: 98px; }
.sidebar-card { border: 1px solid var(--line); border-radius: 18px; padding: 20px; background: #fff; }
.sidebar-card + .sidebar-card { margin-top: 16px; }
.sidebar-card h2 { margin: 0 0 12px; font-size: 15px; font-weight: 900; }
.sidebar-card a { display: block; border-top: 1px solid #f1f5f9; padding: 10px 0; color: #475569; font-size: 12px; font-weight: 700; }

/* Footer */
.site-footer { color: #94a3b8; background: #020617; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 45px; padding-block: 60px; }
.footer-brand strong { color: #fff; }
.brand-mark.light { color: #020617; background: #fff; }
.footer-grid p { max-width: 360px; font-size: 13px; line-height: 1.75; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-grid h2 { margin: 0 0 8px; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { display: flex; justify-content: space-between; padding-block: 20px; font-size: 10px; }
.mobile-cta { display: none; }
.desktop-order-contact { display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid rgba(255,255,255,.1); padding-block: 28px; }
.desktop-order-contact strong { color: #fff; font-size: 18px; }
.desktop-order-contact p { margin: 7px 0 0; color: #cbd5e1; font-size: 13px; }
.desktop-contact-links { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-choice { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; padding: 11px 15px; color: #fff!important; font-size: 12px; font-weight: 900; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.contact-choice.whatsapp { background: #16a34a; }.contact-choice.viber { background: #7360f2; }.contact-choice.telegram { background: #229ed9; }
.mobile-contact-dialog { display: none; }
.mobile-contact-slide { display: none; }

@media (max-width: 980px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .product-grid, .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .article-layout { grid-template-columns: minmax(0,820px); }
  .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-card + .sidebar-card { margin-top: 0; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 24px,1180px); }
  .trust-inner { display: grid; justify-content: center; gap: 5px; padding-block: 9px; text-align: center; }
  .trust-inner > div { justify-content: center; gap: 6px 14px; }
  .trust-inner > div:last-child span:last-child { display: none; }
  .nav-inner { min-height: 68px; }
  .brand-mark { width: 39px; height: 39px; }
  .hero-grid { min-height: auto; gap: 42px; padding-block: 54px; }
  .hero h1 { font-size: clamp(38px,12vw,52px); }
  .hero p { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions a { width: 100%; }
  .hero-card { border-radius: 22px; padding: 20px; }
  .page-hero .container { padding-block: 52px; }
  .page-hero h1 { font-size: 39px; }
  .section-heading { display: block; }
  .section-heading > a { margin-top: 16px; }
  .products-section, .blog-section { padding-block: 52px; }
  .product-grid, .blog-grid { grid-template-columns: 1fr; }
  .product-card, .blog-card { max-width: 460px; margin-inline: auto; }
  .product-visual { min-height: 220px; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }
  .filters a { flex: 0 0 auto; }
  .product-detail { padding-block: 46px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail .product-visual { min-height: 360px; }
  .product-detail .product-box { width: 140px; height: 215px; }
  .product-gallery-main { border-radius: 20px; }
  .product-gallery-thumbs { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .product-info h1 { font-size: 42px; }
  .buy-actions { grid-template-columns: 80px 1fr; }
  .cart-section { padding-block: 46px; }
  .cart-line { grid-template-columns: 65px 1fr auto; gap: 12px; }
  .cart-line.fixed-package { grid-template-columns: 65px minmax(0,1fr) auto; }
  .cart-package-change > div { grid-template-columns: 1fr; }
  .cart-package-change button { width: 100%; }
  .cart-thumb { height: 65px; }
  .cart-line input { grid-column: 2; width: 75px; }
  .cart-line > strong { grid-column: 3; grid-row: 1; }
  .remove-button { grid-column: 3; grid-row: 2; }
  .cart-line.fixed-package .remove-button { grid-column: 3; grid-row: 2; }
  .cart-update { flex-direction: column; }
  .cart-update button, .cart-update a { width: 100%; }
  .article-wrap { padding-block: 45px; }
  .seo-guide { padding-block: 52px; }
  .article-body { border-radius: 20px; padding: 22px; }
  .article-body h1 { font-size: 38px; }
  .article-body .intro { font-size: 16px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 45px; }
  .footer-bottom .container { gap: 10px; flex-direction: column; }
  .mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; padding-bottom: env(safe-area-inset-bottom); color: #fff; background: #020617; box-shadow: 0 -10px 30px rgba(15,23,42,.18); }
  .desktop-order-contact { display: none; }
  .mobile-cta a, .mobile-cta button { display: grid; min-height: 62px; place-items: center; border: 0; padding: 10px; color: #fff; font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; }
  .mobile-cta button:first-child { background: var(--violet); }
  .mobile-cta a:last-child { background: var(--rose); }
  .mobile-contact-slide { position: fixed; bottom: calc(70px + env(safe-area-inset-bottom)); left: 10px; z-index: 65; display: grid; width: min(205px,calc(50vw - 16px)); gap: 8px; visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(24px); transition: opacity .22s ease,transform .22s ease,visibility .22s; }
  .mobile-contact-slide.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .slide-contact { display: grid; grid-template-columns: 38px 1fr; min-height: 52px; align-items: center; gap: 8px; border: 2px solid #fff; border-radius: 14px; padding: 7px 10px; color: #fff!important; box-shadow: 0 10px 28px rgba(2,6,23,.3); font-size: 12px; font-weight: 900; }
  .slide-contact span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); font-size: 18px; }
  .slide-contact.whatsapp { background: #16a34a; }.slide-contact.viber { background: #7360f2; }.slide-contact.telegram { background: #229ed9; }.slide-contact.empty { grid-template-columns: 1fr; color: #0f172a!important; background: #fff; }
  .mobile-contact-dialog.open { position: fixed; inset: 0; z-index: 75; display: block; }
  .mobile-contact-backdrop { position: absolute; inset: 0; border: 0; background: rgba(2,6,23,.62); backdrop-filter: blur(3px); }
  .mobile-contact-panel { position: absolute; right: 12px; bottom: calc(74px + env(safe-area-inset-bottom)); left: 12px; border-radius: 22px; padding: 20px; color: #0f172a; background: #fff; box-shadow: 0 25px 70px rgba(2,6,23,.38); }
  .mobile-contact-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
  .mobile-contact-head small, .mobile-contact-head strong { display: block; }.mobile-contact-head small { margin-bottom: 4px; color: #64748b; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }.mobile-contact-head strong { font-size: 21px; }
  .mobile-contact-head button { display: grid; width: 40px; height: 40px; place-items: center; border: 0; border-radius: 50%; color: #334155; background: #f1f5f9; font-size: 28px; cursor: pointer; }
  .mobile-contact-panel>p { margin: 13px 0 16px; color: #64748b; font-size: 13px; }.mobile-contact-panel>p strong { color: #0f172a; }
  .mobile-contact-links { display: grid; gap: 10px; }
  .mobile-contact-links .contact-choice { display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; justify-content: start; min-height: 64px; padding: 10px 15px; text-align: left; }
  .mobile-contact-links .contact-choice>span { grid-row: 1/3; font-size: 24px; }.mobile-contact-links .contact-choice>strong { font-size: 14px; }.mobile-contact-links .contact-choice>small { opacity: .85; font-size: 10px; }
}

@media (max-width: 370px) {
  .trust-inner { font-size: 9px; }
  .brand small { display: none; }
  .hero h1, .page-hero h1 { font-size: 34px; }
  .buy-actions { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 55px 1fr; }
  .cart-line.fixed-package { grid-template-columns: 55px minmax(0,1fr); }
  .cart-line > strong, .remove-button { grid-column: 2; grid-row: auto; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Završni mobilni raspored korpe */
@media (max-width: 700px) {
  .cart-section > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 10px !important;
  }

  .cart-layout {
    width: 100% !important;
    gap: 16px !important;
  }

  .cart-card,
  .cart-layout .summary-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 18px !important;
  }

  .cart-line.fixed-package {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    gap: 14px !important;
    padding: 16px !important;
  }

  .cart-line.fixed-package .cart-thumb {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 88px !important;
    height: 88px !important;
    border-radius: 12px !important;
  }

  .cart-line.fixed-package .cart-product-info {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .cart-line.fixed-package .cart-product-info h2 {
    margin: 0 0 5px !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
  }

  .cart-line.fixed-package .cart-product-info > p {
    margin: 0 0 12px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .cart-package-change {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 2px auto 0 !important;
  }

  .cart-package-change > div {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .cart-package-change select,
  .cart-package-change button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
  }

  .cart-line.fixed-package > strong {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    justify-self: stretch !important;
    border: 1px solid #fde68a !important;
    border-radius: 10px !important;
    padding: 11px 13px !important;
    color: #78350f !important;
    background: #fffbeb !important;
    font-size: 16px !important;
    text-align: right !important;
  }

  .cart-line.fixed-package .remove-button {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    justify-self: end !important;
    padding: 6px 2px !important;
  }

  .cart-update {
    padding: 14px 16px 16px !important;
  }

  .cart-update .outline-button {
    width: 100% !important;
  }
}

@media (max-width: 390px) {
  .cart-line.fixed-package {
    grid-template-columns: 74px minmax(0, 1fr) !important;
    gap: 11px !important;
    padding: 13px !important;
  }

  .cart-line.fixed-package .cart-thumb {
    width: 74px !important;
    height: 74px !important;
  }
}
.contact-brand-icon{display:block;width:20px;height:20px;fill:currentColor;flex:0 0 auto}.footer-contact-link{display:flex!important;align-items:center;gap:8px}.footer-contact-link.whatsapp{color:#25d366}.footer-contact-link.viber{color:#7360f2}.footer-contact-link.telegram{color:#229ed9}.contact-choice span .contact-brand-icon{width:24px;height:24px}.slide-contact span .contact-brand-icon{width:22px;height:22px}
/* Glavno dugme - Zlatni premium prelaz */
.btn-premium {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.1rem 2.2rem !important;
  border-radius: 0.75rem !important;
  font-size: 1.125rem !important; 
  font-weight: 900 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #050505 0%, #1a1a24 50%, #c59b46 100%) !important;
  border: 1px solid #d4af37 !important;
  box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.25) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  letter-spacing: 0.5px !important;
}

.btn-premium:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 25px -5px rgba(212, 175, 55, 0.4) !important;
}

/* Sekundarno dugme - Brza poruka */
.btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.1rem 2.2rem !important;
  border-radius: 0.75rem !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background-color: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-4px) !important;
}

/* Navigacioni bedževi (Hero chips) */
.hero-chip {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 9999px !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  font-size: 1rem !important; 
  font-weight: 600 !important;
  color: #f8fafc !important;
  font-family: system-ui, -apple-system, sans-serif !important;
}

/* Donja navigaciona traka (Trust bar) */
.trust-nav-item {
  padding: 1rem !important;
  text-align: center !important;
  font-size: 1rem !important; 
  font-weight: 800 !important;
  color: #334155 !important;
  font-family: system-ui, -apple-system, sans-serif !important;
}
@media (max-width: 700px) {
    .selected-package > span {
        min-width: 0 !important;
    }

    .selected-package [data-selected-label] {
        overflow-wrap: anywhere !important;
    }

    .variant-option {
        gap: 8px !important;
        padding-inline: 12px !important;
    }

    .variant-option > span:not(.popular-pill):not(.stock-pill) {
        min-width: 0 !important;
        overflow-wrap: anywhere !important;
    }

    .variant-option > strong {
        min-width: 96px !important;
        box-sizing: border-box !important;
        padding-inline: 6px !important;
        white-space: nowrap !important;
    }
}
/* Normalna veličina kontakt ikonica u footeru */
.site-footer .contact-brand-icon,
.site-footer .footer-contact-link svg,
.site-footer .contact-choice svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    flex: 0 0 20px !important;
    fill: currentColor !important;
}

/* Kontakt redovi u običnom footeru */
.site-footer .footer-contact-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
}

/* Ikonice u gornjem desktop kontakt delu */
.site-footer .desktop-contact-links .contact-choice span {
    display: inline-flex !important;
    width: 20px !important;
    height: 20px !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 20px !important;
}

/* Ikonice u mobilnom meniju za poruke */
.mobile-contact-slide .contact-brand-icon,
.mobile-contact-slide .slide-contact svg {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    flex: 0 0 22px !important;
}

/* ==========================================================
   ZAVRŠNA NORMALIZACIJA KONTAKT IKONICA I MOBILNOG FOOTERA
   Ova pravila moraju ostati na samom kraju fajla.
   ========================================================== */

svg.contact-brand-icon,
.footer-contact-link > svg,
.contact-choice svg,
.slide-contact svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    flex: 0 0 20px !important;
    overflow: hidden !important;
    fill: currentColor !important;
}

.footer-contact-link,
.desktop-contact-links .contact-choice {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
}

.footer-contact-link > span,
.desktop-contact-links .contact-choice > span {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    align-items: center !important;
    flex: 0 0 auto !important;
}

.mobile-contact-checkbox {
    position: fixed !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 700px) {
    .desktop-order-contact {
        display: none !important;
    }

    .mobile-cta .mobile-message-button,
    .mobile-cta > a {
        display: grid !important;
        min-height: 62px !important;
        place-items: center !important;
        margin: 0 !important;
        padding: 10px !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .mobile-cta .mobile-message-button {
        cursor: pointer !important;
        background: var(--violet) !important;
    }

    .mobile-contact-checkbox:checked + .mobile-contact-slide {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .mobile-contact-slide .slide-contact svg,
    .mobile-contact-slide svg.contact-brand-icon {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
        flex-basis: 22px !important;
    }
}

@media (min-width: 701px) {
    .mobile-contact-checkbox,
    .mobile-contact-slide,
    .mobile-cta {
        display: none !important;
    }
}
/* Širi box proizvoda na mobilnom */
@media (max-width: 700px) {
    .products-section .container {
        width: calc(100% - 16px) !important;
        max-width: none !important;
        margin-inline: 8px !important;
    }

    .products-section .product-grid {
        width: 100% !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .products-section .product-card {
        width: 100% !important;
        max-width: none !important;
        margin-inline: 0 !important;
    }

    .products-section .product-card-media {
        padding: 10px !important;
    }

    .products-section .product-visual {
        width: 100% !important;
        min-height: 300px !important;
    }

    .products-section .product-card-body {
        padding: 12px 16px 18px !important;
    }
}
/* Mobilni proizvodi bez pomeranja cele stranice levo-desno */
@media (max-width: 700px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .products-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .products-section .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-inline: auto !important;
        padding-inline: 8px !important;
    }

    .products-section .product-grid {
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .products-section .product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .products-section .product-card-media {
        width: 100% !important;
        min-width: 0 !important;
        padding: 10px !important;
    }

    .products-section .product-visual {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 300px !important;
    }

    .products-section .product-card-body {
        width: 100% !important;
        min-width: 0 !important;
        padding: 12px 16px 18px !important;
    }

    .products-section .card-actions {
        width: 100% !important;
        min-width: 0 !important;
        grid-template-columns: minmax(0, 1fr) 44px !important;
    }

    .products-section .filters {
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }
}
/* Zeleno dugme „Nastavi kupovinu“ */
.cart-update a.outline-button {
    border-color: var(--indigo) !important;
    color: #fff !important;
    background: var(--indigo) !important;
    box-shadow: 0 8px 18px rgba(5, 150, 105, 0.18);
}

.cart-update a.outline-button:hover {
    color: #fff !important;
    background: #047857 !important;
    transform: translateY(-1px);
}