@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   PRODUCT.CSS — Stugware Product Page
   ============================================================ */

body.product-page {
    font-family: 'Outfit', sans-serif !important;
    background-color: #0a0a0a !important;
    color: #e4e4e7 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.product-page * { box-sizing: border-box; }
html { scrollbar-width: none; -ms-overflow-style: none; background: #0a0a0a !important; }
html::-webkit-scrollbar { display: none; }

body.product-page {
    --bg-base:       #0a0a0a;
    --bg-elevated:   #111113;
    --bg-card:       #16161a;
    --bg-card-hover: #1c1c21;
    --border-subtle: rgba(255,255,255,0.06);
    --border-hover:  rgba(30,140,91,0.4);
    --green-primary: #1e8c5b;
    --green-light:   #2dd881;
    --green-glow:    rgba(45,216,129,0.15);
    --green-gradient:linear-gradient(135deg,#1e8c5b,#2dd881);
    --text-primary:  #f4f4f5;
    --text-secondary:#a1a1aa;
    --text-muted:    #71717a;
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     16px;
    --radius-xl:     20px;
}

/* NAV */
body.product-page nav {
    background: rgba(10,10,10,0.85) !important;
    backdrop-filter: blur(20px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
    border-bottom: 1px solid var(--border-subtle) !important;
}

/* PRODUCT LAYOUT */
.product-section { padding: 2rem 0 4rem; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-grid.no-coupon { align-items: stretch; }
.product-grid.no-coupon .product-left-col { display:flex; flex-direction:column; }
.product-grid.no-coupon .product-left-col .req-display.desktop-only { flex:1; display:flex; flex-direction:column; }
.product-grid.no-coupon .product-left-col .req-display.desktop-only .req-display-body { flex:1; }
.product-grid.no-coupon .product-info-side { display:flex; flex-direction:column; }
.product-grid.no-coupon .product-info-side .info-block.desktop-only { flex:1; display:flex; flex-direction:column; }
.product-grid.no-coupon .product-info-side .info-block.desktop-only .info-panel { flex:1; max-height:none; }

/* GALLERY */
.gallery-main { position:relative; border-radius:var(--radius-lg); overflow:hidden; background:var(--bg-card); border:1px solid var(--border-subtle); cursor:pointer; aspect-ratio:16/10; }
.gallery-main img, .gallery-main iframe { width:100%; height:100%; object-fit:cover; display:block; border-radius:var(--radius-lg); transition:transform .4s ease; }
.gallery-main:hover img { transform:scale(1.02); }
.gallery-main::after { content:''; position:absolute; top:1rem; right:1rem; width:36px; height:36px; background:rgba(0,0,0,.5) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cpolyline points='9 21 3 21 3 15'/%3E%3Cline x1='21' y1='3' x2='14' y2='10'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E") center/18px no-repeat; border-radius:8px; opacity:0; transition:opacity .2s ease; pointer-events:none; }
.gallery-main:hover::after { opacity:1; }
.gallery-thumbs { display:flex; gap:.5rem; margin-top:.75rem; overflow-x:auto; padding-bottom:.25rem; }
.gallery-thumb { width:72px; height:52px; border-radius:var(--radius-sm); overflow:hidden; cursor:pointer; border:2px solid transparent; opacity:.5; transition:all .2s ease; flex-shrink:0; background:var(--bg-card); }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }
.gallery-thumb.active { opacity:1; border-color:var(--green-primary); }
.gallery-thumb:hover { opacity:.8; }
.gallery-thumb-yt { display:flex; align-items:center; justify-content:center; width:100%; height:100%; font-size:.6rem; font-weight:700; color:var(--text-muted); letter-spacing:.05em; }

/* LIGHTBOX */
.lightbox-overlay { position:fixed; inset:0; z-index:10000; background:rgba(0,0,0,.92); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:all .3s ease; cursor:zoom-out; }
.lightbox-overlay.active { opacity:1; visibility:visible; }
.lightbox-overlay img { max-width:95vw; max-height:95vh; object-fit:contain; border-radius:var(--radius-md); box-shadow:0 20px 80px rgba(0,0,0,.5); }
.lightbox-close { position:absolute; top:1.5rem; right:1.5rem; width:44px; height:44px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); border-radius:50%; color:#fff; font-size:1.25rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .2s; z-index:10001; }
.lightbox-close:hover { background:rgba(255,255,255,.2); transform:scale(1.1); }
.lightbox-nav { position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); border-radius:50%; color:#fff; font-size:1.25rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .2s; }
.lightbox-nav:hover { background:rgba(255,255,255,.15); }
.lightbox-prev { left:1.5rem; }
.lightbox-next { right:1.5rem; }

/* PRODUCT INFO */
.product-info-side { display:flex; flex-direction:column; gap:1.5rem; }
.product-header-row { display:flex; align-items:center; gap:.75rem; flex-wrap:wrap; }
.product-header-row .badge { margin-bottom:0 !important; vertical-align:middle; }
.product-page-title { font-size:1.75rem; font-weight:800; color:var(--text-primary); margin:0; letter-spacing:-.02em; line-height:1.2; }

/* PLAN SELECTOR */
.plans-section { background:var(--bg-card); border:1.5px solid rgba(45,216,129,.2); border-radius:var(--radius-lg); padding:1.5rem; overflow:hidden; }
.plans-title { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--green-light); margin:0 0 1rem; display:flex; align-items:center; gap:6px; }
.plans-title::before { content:''; display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--green-light); flex-shrink:0; }
.plans-grid { display:flex; flex-direction:column; gap:0; }
.plan-card { position:relative; display:flex; justify-content:space-between; align-items:center; padding:1rem 1.15rem; background:transparent; border:none; border-bottom:1px solid var(--border-subtle); border-radius:0; cursor:pointer; transition:all .2s ease; overflow:hidden; }
.plan-card:last-child { border-bottom:none; }
.plan-card::after { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--green-gradient); opacity:0; transition:opacity .2s; }
.plan-card:hover:not(.plan-disabled) { background:rgba(45,216,129,.04); }
.plan-card:hover:not(.plan-disabled)::after { opacity:1; }
.plan-card.plan-disabled { opacity:.35; cursor:not-allowed; }
.plan-name { font-size:.95rem; font-weight:600; color:var(--text-primary); position:relative; z-index:1; }
.plan-price { font-size:1.15rem; font-weight:500; color:var(--text-primary); position:relative; z-index:1; font-variant-numeric:tabular-nums; }
.plan-price::first-letter { color:var(--green-light); }
.plan-card.plan-disabled .plan-price { color:var(--text-muted); }
.plan-oos { font-size:.65rem; color:var(--text-muted); position:relative; z-index:1; font-weight:500; }

/* OFFER CARD */
.offer-card { background:var(--bg-card); border:1px solid var(--green-primary); border-radius:var(--radius-lg); padding:1.25rem 1.5rem; position:relative; overflow:hidden; }
.offer-card::before { content:''; position:absolute; inset:0; background:var(--green-gradient); opacity:.04; pointer-events:none; }
.offer-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:.75rem; position:relative; z-index:1; }
.offer-code { font-size:.95rem; font-weight:700; color:var(--text-primary); }
.offer-badge { display:inline-flex; align-items:center; gap:.3rem; padding:.3rem .7rem; background:var(--green-gradient); color:#fff; border-radius:6px; font-size:.75rem; font-weight:700; }
.offer-label { font-size:.82rem; color:var(--text-secondary); margin-bottom:.75rem; position:relative; z-index:1; }
.timer-row { display:flex; gap:.5rem; position:relative; z-index:1; }
.timer-cell { display:flex; flex-direction:column; align-items:center; background:var(--bg-base); border:1px solid var(--border-subtle); border-radius:var(--radius-sm); padding:.5rem .75rem; min-width:52px; }
.timer-val { font-size:1.35rem; font-weight:800; color:var(--text-primary); line-height:1; font-variant-numeric:tabular-nums; }
.timer-lbl { font-size:.6rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--text-muted); margin-top:.2rem; }

/* OFFER ARROW */
.offer-card-wrapper { position:relative; }
.offer-arrow { position:absolute; top:-1.5rem; right:-7rem; display:flex; flex-direction:column; align-items:center; gap:.25rem; pointer-events:none; user-select:none; animation:offer-arrow-pulse 1.6s ease-in-out infinite; }
.offer-arrow-label { font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--green-light); opacity:.9; white-space:nowrap; transform:rotate(-8deg); }
.offer-arrow-svg { width:80px; height:90px; }
@keyframes offer-arrow-pulse { 0%,100%{transform:translate(0,0);opacity:.8;} 50%{transform:translate(-3px,4px);opacity:1;} }
@media(max-width:768px){.offer-arrow{display:none!important}}

/* INFO BLOCKS */
.info-block { background:var(--bg-card); border:1px solid var(--border-subtle); border-radius:var(--radius-lg); overflow:hidden; }
.info-tabs { display:flex; border-bottom:1px solid var(--border-subtle); }
.info-tab { padding:.75rem 1.25rem; font-size:.85rem; font-weight:600; color:var(--text-muted); cursor:pointer; transition:all .2s; border-bottom:2px solid transparent; background:none; border-top:none; border-left:none; border-right:none; font-family:inherit; width:100%; text-align:center; }
.info-tab:hover { color:var(--text-secondary); }
.info-tab.active { color:var(--green-light); border-bottom-color:var(--green-primary); }
.info-panel { display:none; padding:1.25rem 1.5rem; color:var(--text-secondary); font-size:.9rem; line-height:1.7; max-height:300px; overflow-y:auto; text-align:center; }
.info-panel.active { display:block; }

/* FEATURES SECTION */
.features-block { background:transparent; border:none; border-radius:0; overflow:visible; margin-top:3rem; }
.features-header { padding:0 0 1rem; }
.features-header h3 { font-size:1.15rem; font-weight:700; color:var(--text-primary); margin:0; }
.features-columns { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.feature-col { background:var(--bg-card); border:1px solid var(--border-subtle); border-radius:var(--radius-lg); padding:1.5rem 1.25rem; transition:all .25s ease; }
.feature-col:hover { border-color:var(--border-hover); box-shadow:0 0 24px rgba(30,140,91,.08); }
.feature-col-title { font-size:.85rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--green-light); margin:0 0 1.25rem; display:flex; align-items:center; justify-content:center; gap:.5rem; text-align:center; padding-bottom:.75rem; border-bottom:1px solid var(--border-subtle); }

/* ============================================================
   FEATURE HTML — RTE OUTPUT
   
   RULES:
   • Only <p> and <div> that are direct children AND contain
     actual visible text get the ✓ checkmark.
   • Empty nodes, <br>-only nodes, whitespace-only nodes: NO ✓
   • This is enforced by :not(:empty) + :has() CSS
   • PHP also strips trailing empties before saving/rendering
   ============================================================ */
.feature-html {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Every direct block child that has content → ✓
   The phantom-killer rules below use display:none on empties,
   so these rules safely apply to everything. */
.feature-html > p,
.feature-html > div {
    position: relative;
    padding: .28rem 0 .28rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    min-height: 1.4em;
}

.feature-html > p::before,
.feature-html > div::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: .28rem;
    color: var(--green-light);
    font-weight: 700;
    font-size: .92rem;
    line-height: 1.65;
}

/* ── PHANTOM CHECKMARK KILLERS ──────────────────────────── */

/* 1. Completely empty elements — no height, no checkmark */
.feature-html > p:empty,
.feature-html > div:empty {
    display: none !important;
}
.feature-html > p:empty::before,
.feature-html > div:empty::before { display: none !important; }

/* 2. Elements containing ONLY a <br> — no checkmark, zero height */
.feature-html > p:has(> br:only-child),
.feature-html > div:has(> br:only-child) {
    display: none !important;
}
.feature-html > p:has(> br:only-child)::before,
.feature-html > div:has(> br:only-child)::before { display: none !important; }

/* 3. Bare <br> at top level — hide completely */
.feature-html > br { display: none !important; }

/* 4. Spacer divs — hidden (PHP no longer emits them, but legacy safety) */
.feature-html > .fh-spacer { display: none !important; }
.feature-html > .fh-spacer::before { display: none !important; }

/* 5. Elements with only whitespace spans */
.feature-html > p:has(> span:only-child:empty),
.feature-html > div:has(> span:only-child:empty) {
    display: none !important;
}
.feature-html > p:has(> span:only-child:empty)::before,
.feature-html > div:has(> span:only-child:empty)::before { display: none !important; }

/* ── Bold = section heading style ─ */
.feature-html > p > b,
.feature-html > p > strong,
.feature-html > div > b,
.feature-html > div > strong { color:var(--text-primary); font-weight:700; }

/* If ENTIRE direct child is bold → heading row, no checkmark */
.feature-html > p:has(> b:only-child),
.feature-html > p:has(> strong:only-child),
.feature-html > div:has(> b:only-child),
.feature-html > div:has(> strong:only-child) {
    padding-left: 0;
    margin-top: .5rem;
    color: var(--text-primary);
    font-weight: 700;
    font-size: .88rem;
}
.feature-html > p:has(> b:only-child)::before,
.feature-html > p:has(> strong:only-child)::before,
.feature-html > div:has(> b:only-child)::before,
.feature-html > div:has(> strong:only-child)::before { display:none; }

/* Font-size spans from the size picker */
.feature-html span[style*="font-size"] { display:inline; }

/* UL/LI inside feature-html */
.feature-html ul { list-style:none; padding:0 0 0 1.5rem; margin:.2rem 0; }
.feature-html ul li { position:relative; padding:.2rem 0 .2rem 1.2rem; font-size:.88rem; color:var(--text-secondary); line-height:1.5; }
.feature-html ul li::before { content:'✓'; position:absolute; left:0; top:.2rem; color:var(--green-light); font-weight:700; font-size:.85rem; }

/* Strip inline backgrounds/colors from paste */
.feature-html * { background:transparent !important; background-color:transparent !important; }
.feature-html [style*="color"] { color:inherit; }
.feature-html img { display:none !important; }
.feature-html font { font-size:inherit !important; color:inherit !important; font-family:inherit !important; }

/* Mobile feature-html inside info-panel */
.info-panel .feature-html { text-align:left; }

/* REQUIREMENTS DISPLAY */
.req-display { background:var(--bg-card); border:1px solid var(--border-subtle); border-radius:var(--radius-lg); overflow:hidden; }
.req-display-header { padding:.85rem 1.25rem; font-size:.85rem; font-weight:700; color:var(--green-light); border-bottom:2px solid var(--green-primary); letter-spacing:.01em; text-align:center; }
.req-display-body { padding:1rem 1.25rem; display:flex; flex-direction:column; gap:.85rem; }
.req-row { display:flex; align-items:center; gap:.65rem; }
.req-icon { width:32px; height:32px; display:flex; align-items:center; justify-content:center; background:rgba(45,216,129,.08); border-radius:8px; color:var(--green-light); font-size:1rem; flex-shrink:0; }
.req-label { font-size:.82rem; font-weight:600; color:var(--text-muted); min-width:65px; }
.req-value { font-size:.88rem; font-weight:500; color:var(--text-primary); }
.req-pill { display:inline-flex; align-items:center; padding:.2rem .6rem; background:rgba(255,255,255,.06); border:1px solid var(--border-subtle); border-radius:6px; font-size:.78rem; font-weight:600; color:var(--text-secondary); }
.req-pill-green { background:rgba(45,216,129,.1); border-color:rgba(45,216,129,.2); color:var(--green-light); }
.req-pill-red { background:rgba(248,113,113,.1); border-color:rgba(248,113,113,.2); color:#f87171; }
.req-note { margin-top:.25rem; padding-top:.75rem; border-top:1px solid var(--border-subtle); font-size:.82rem; color:var(--text-muted); line-height:1.6; font-style:italic; }

/* FOOTER */
body.product-page footer { background:var(--bg-base) !important; border-top:1px solid var(--border-subtle) !important; }
body.product-page .copyright { color:var(--text-muted) !important; border-top:1px solid var(--border-subtle) !important; }

/* SCROLL PROGRESS */
.scroll-progress{position:fixed;bottom:2rem;right:2rem;z-index:999;width:44px;height:44px;cursor:pointer}
.scroll-progress:hover{transform:scale(1.12)}
.scroll-progress svg{width:44px;height:44px}
.scroll-progress-track{fill:none;stroke:rgba(255,255,255,.08);stroke-width:2.5}
.scroll-progress-ring{fill:none;stroke:var(--green-primary);stroke-width:2.5;stroke-linecap:round;transform:rotate(-90deg);transform-origin:center;transition:stroke-dashoffset .15s ease}
.scroll-progress-arrow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:18px;height:18px;color:#fff;transition:transform .3s ease}
.scroll-progress-arrow svg{width:18px;height:18px}
.scroll-progress-arrow.flipped{transform:translate(-50%,-50%) rotate(180deg)}

/* VISIBILITY HELPERS */
.mobile-product-header{display:none}
.mobile-only{display:none!important}
.desktop-only{display:block}
.product-header-row.desktop-only{display:flex}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:768px){
    .mobile-product-header{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap;margin-bottom:1rem;padding:0 .25rem}
    .mobile-product-header .product-page-title{font-size:1.5rem}
    .mobile-product-header .badge{margin-bottom:0!important}
    .mobile-only{display:block!important}
    .desktop-only{display:none!important}
}
@media(max-width:992px){
    .product-grid{grid-template-columns:1fr;gap:2rem}
    .features-columns{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
    .plans-section{padding:1.25rem}
    .plans-grid{display:grid!important;grid-template-columns:1fr 1fr!important;gap:.5rem!important}
    .plan-card{background:var(--bg-base)!important;border:1.5px solid rgba(45,216,129,.15)!important;border-radius:var(--radius-md)!important;border-bottom:1.5px solid rgba(45,216,129,.15)!important;padding:.75rem .85rem!important}
    .plan-card::after{display:none!important}
    .plan-name{font-size:.85rem}
    .plan-price{font-size:1rem}
    .feature-col{padding:1.25rem 1rem}
    .timer-row{flex-wrap:wrap}
    .timer-cell{min-width:46px;padding:.4rem .6rem}
    .timer-val{font-size:1.1rem}
    .lightbox-nav{width:36px;height:36px;font-size:1rem}
    .lightbox-close{width:38px;height:38px;top:1rem;right:1rem}
    .lightbox-prev{left:.75rem}
    .lightbox-next{right:.75rem}
    body.product-page nav{background:#0a0a0a!important;backdrop-filter:none!important}
    body.product-page .nav-links{position:absolute!important;top:100%!important;background:#0a0a0a!important}
    body.product-page .dropdown .dropdown-menu{background:#111113!important;background-color:#111113!important}
    body.product-page footer .footer-wrapper{grid-template-columns:1fr!important;text-align:center!important}
    body.product-page footer .footer-wrapper .column .socials{justify-content:center}
    body.product-page footer .footer-wrapper .column .contact-email{justify-content:center}
    body.product-page footer .footer-wrapper .column .logo{margin:0 auto 1rem}
}
@media(max-width:420px){
    .plans-grid{grid-template-columns:1fr}
    .product-page-title{font-size:1.2rem}
    .gallery-thumb{width:60px;height:44px}
}

/* NAV FIX */
body.product-page nav{position:sticky!important;top:0!important;z-index:1000!important;background:rgba(10,10,10,.85)!important;backdrop-filter:blur(20px) saturate(1.4)!important;-webkit-backdrop-filter:blur(20px) saturate(1.4)!important;border-bottom:1px solid rgba(255,255,255,.06)!important}
body.product-page nav .container{display:flex!important;align-items:center!important;justify-content:space-between!important;height:72px!important;max-width:1240px!important;margin:0 auto!important;padding:0 2rem!important}
body.product-page .nav-logo img{height:44px!important;display:block!important}
body.product-page .nav-links{display:flex!important;flex-direction:row!important;align-items:center!important;list-style:none!important;gap:.25rem!important;margin:0!important;padding:0!important;position:static!important;transform:none!important;background:transparent!important;backdrop-filter:none!important;border:none!important;box-shadow:none!important;width:auto!important;max-height:none!important;overflow:visible!important;opacity:1!important}
body.product-page .nav-links .link a,body.product-page .nav-links .link > a{display:inline-flex!important;align-items:center!important;padding:.5rem 1rem!important;color:#a1a1aa!important;font-weight:500!important;font-size:.9rem!important;border-radius:8px!important;transition:color .15s,background .15s!important;text-decoration:none!important;white-space:nowrap!important}
body.product-page .nav-links .link a:hover{color:#f4f4f5!important;background:rgba(255,255,255,.05)!important}
body.product-page .nav-buttons{display:flex!important;align-items:center!important;gap:.5rem!important;flex-shrink:0!important}
body.product-page .dropdown{position:relative!important}
body.product-page .dropdown .dropdown-menu{position:absolute!important;top:100%!important;left:50%!important;transform:translateX(-50%)!important;min-width:220px!important;padding:.6rem!important;background:rgba(22,22,26,.97)!important;backdrop-filter:blur(20px)!important;border:1px solid rgba(255,255,255,.08)!important;border-radius:12px!important;box-shadow:0 16px 48px rgba(0,0,0,.5)!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transition:opacity .18s,visibility .18s!important;z-index:100!important}
body.product-page .dropdown:hover .dropdown-menu,body.product-page .dropdown.dropdown-open .dropdown-menu{opacity:1!important;visibility:visible!important;pointer-events:auto!important}
body.product-page .dropdown-menu li{list-style:none!important;width:100%!important}
body.product-page .dropdown-menu li a{display:flex!important;align-items:center!important;width:100%!important;box-sizing:border-box!important;padding:.75rem .9rem!important;color:#a1a1aa!important;font-size:.875rem!important;border-radius:8px!important;transition:all .15s!important;text-decoration:none!important}
body.product-page .dropdown-menu li a:hover{color:#2dd881!important;background:rgba(45,216,129,.12)!important}
body.product-page .mobile-menu-btn{display:none!important}

@media(max-width:768px){
    body.product-page nav{background:#0a0a0a!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}
    body.product-page nav .container{height:60px!important;padding:0 1.25rem!important}
    body.product-page .nav-logo img{height:36px!important}
    body.product-page .mobile-menu-btn{display:flex!important;align-items:center!important;justify-content:center!important;width:40px!important;height:40px!important;color:#f4f4f5!important;font-size:1.35rem!important;cursor:pointer!important;background:none!important;border:none!important}
    body.product-page .nav-links{position:absolute!important;top:100%!important;left:0!important;right:0!important;width:100%!important;flex-direction:column!important;background:#0a0a0a!important;padding:.75rem 1.25rem 1.5rem!important;gap:.1rem!important;transform:translateY(-150%)!important;opacity:0!important;transition:transform .3s ease,opacity .3s ease!important;z-index:999!important;border-bottom:1px solid rgba(255,255,255,.08)!important;box-shadow:0 20px 60px rgba(0,0,0,.8)!important;max-height:calc(100vh - 60px)!important;overflow-y:auto!important}
    body.product-page .nav-links.active{transform:translateY(0)!important;opacity:1!important}
    body.product-page .nav-links .link a{display:flex!important;width:100%!important;padding:.85rem 1rem!important;font-size:.95rem!important}
    body.product-page .dropdown .dropdown-menu{position:relative!important;top:0!important;left:0!important;transform:none!important;width:100%!important;background:#111113!important;box-shadow:none!important;border-radius:8px!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;display:none!important}
    body.product-page .dropdown.dropdown-open .dropdown-menu{display:block!important}
    body.product-page .dropdown:hover .dropdown-menu{display:none!important}
    body.product-page .dropdown.dropdown-open:hover .dropdown-menu{display:block!important}
}
@media(max-width:420px){
    body.product-page nav .container{height:56px!important;padding:0 1rem!important}
    body.product-page .nav-logo img{height:32px!important}
}