/*
Theme Name: Accountchi
Theme URI: http://localhost/accountchi
Author: Antigravity
Author URI: http://localhost/accountchi
Description: Accountchi Modern Premium WordPress Theme - Digital Services & E-Commerce
Version: 1.12.0
License: GNU General Public License v2 or later
Text Domain: accountchi
Domain Path: /languages
*/

/* â•â•â•â•â•â•â•â•â•â• CSS VARIABLES & THEME TOKENS â•â•â•â•â•â•â•â•â•â• */
:root{
  /* Neutral surfaces. The previous canvas (#0b0416) was 72% saturated
     violet, which tinted every card and border purple. These carry only a
     whisper of violet so the accent still feels at home. */
  --bg:#0b0a11; --bg2:#08070d; --card:#131220; --chip:#201f30;
  --surface:rgba(139,92,246,.11);
  --border:rgba(255,255,255,.075); --border2:rgba(255,255,255,.145);
  --text:#f0eef7; --muted:#a29db6; --muted2:#8f8aa2;
  /* --accent2 was fuchsia (#d946ef). Pointing it at the same violet
     collapses every purple-to-magenta gradient on the site. */
  --accent:#8b5cf6; --accent2:#8b5cf6;
  --accent-soft:rgba(139,92,246,.11); --accent-text:#a78bfa;
  /* Drove the pulsing radial blobs behind cards; transparent removes them
     without editing forty call sites. */
  --glow:transparent;
  --header:rgba(11,10,17,.78);
  --star:#fbbf24; --ok:#34d399;
  --shadow:0 8px 24px -8px rgba(4,2,12,.5);
  --card-shadow:0 24px 56px -20px rgba(4,2,12,.62);
  --sun:none; --moon:inline-flex;
  --price:block;
  /* Responsive scale */
  --fs-h1:clamp(28px,5vw,62px);
  --fs-h2:clamp(22px,3.6vw,42px);
  --fs-h3:clamp(15px,1.8vw,19px);
  --fs-h4:clamp(14px,1.6vw,17px);
  --fs-body:clamp(13px,1.5vw,16px);
  --fs-small:clamp(12px,1.3vw,14.5px);
  --fs-micro:clamp(10.5px,1.1vw,13px);
  --fs-tiny:clamp(9.5px,1vw,11.5px);
  --header-h:clamp(56px,6.5vw,68px);
  --btn-h:clamp(32px,4.5vw,40px);
  --icon-s:clamp(15px,2vw,20px);
  --icon-s2:clamp(16px,2.2vw,25px);
  --pad-card:clamp(18px,2.5vw,26px);
  --rad-card:clamp(16px,2vw,22px);
  --gap-section:clamp(48px,8vw,110px);
}
:root[data-theme="light"]{
  --bg:#faf9fc; --bg2:#f1eff6; --card:#ffffff; --chip:#f3f1f8;
  --surface:rgba(100,56,214,.075);
  --border:rgba(23,20,42,.10); --border2:rgba(23,20,42,.19);
  /* --muted2 darkened from #8b82ab: the old value measured 3.7:1 on this
     canvas, which fails WCAG AA for the small text it is used on. */
  --text:#17142a; --muted:#56516b; --muted2:#6e6980;
  --accent:#6438d6; --accent2:#6438d6;
  --accent-soft:rgba(100,56,214,.075); --accent-text:#6438d6;
  --glow:transparent;
  --header:rgba(250,249,252,.84);
  --star:#f59e0b; --ok:#059669;
  --shadow:0 8px 24px -8px rgba(42,26,92,.13);
  --card-shadow:0 24px 56px -20px rgba(42,26,92,.18);
  --sun:inline-flex; --moon:none;
}

/* â•â•â•â•â•â•â•â•â•â• GLOBAL BASE â•â•â•â•â•â•â•â•â•â• */
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--text);font-family:'Vazirmatn',system-ui,-apple-system,sans-serif;-webkit-font-smoothing:antialiased;overflow-x:clip}
*{box-sizing:border-box}
::selection{background:var(--accent);color:#fff}
a{color:var(--accent-text);text-decoration:none}
a:hover{color:var(--accent2)}
summary::-webkit-details-marker{display:none}
summary{list-style:none}
input,button,select,textarea{font-family:'Vazirmatn',system-ui,sans-serif}
button{cursor:pointer}
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-thumb{background:var(--border2);border-radius:99px}
::-webkit-scrollbar-track{background:transparent}

/* â”€â”€â”€ Header logo text safety (long site titles) â”€â”€â”€ */
header a>span:last-child{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:min(210px,40vw)}

/* â•â•â•â•â•â•â•â•â•â• KEYFRAME ANIMATIONS â•â•â•â•â•â•â•â•â•â• */
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-16px)}}
@keyframes floaty2{0%,100%{transform:translateY(-8px)}50%{transform:translateY(10px)}}
@keyframes marquee{to{transform:translateX(50%)}}
@keyframes logo-scroll{to{transform:translateX(-50%)}}
@keyframes aurora{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(50px,-40px) scale(1.12)}66%{transform:translate(-40px,30px) scale(.94)}}
@keyframes spinSlow{to{transform:rotate(360deg)}}
@keyframes gradmove{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
@keyframes pulseDot{0%,100%{opacity:1}50%{opacity:.35}}
@keyframes shimmer{to{background-position:-200% 0}}
@keyframes ringPulse{0%{opacity:0;transform:scale(1)}30%{opacity:.6}to{opacity:0;transform:scale(1.35)}}
@keyframes blink{0%,to{opacity:1}50%{opacity:0}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideInLeft{from{transform:translateX(-100%)}to{transform:translateX(0)}}
@keyframes spin{to{transform:rotate(360deg)}}

/* â•â•â•â•â•â•â•â•â•â• BRAND TRACK â•â•â•â•â•â•â•â•â•â• */
#brandTrack img{filter:brightness(0) invert(1)}
:root[data-theme="light"] #brandTrack img{filter:brightness(0)}

/* â•â•â•â•â•â•â•â•â•â• BACKGROUND IMAGES (CATEGORIES) â•â•â•â•â•â•â•â•â•â• */
.proxy-bg-img{background:url(./assets/images/proxybg.png) center/cover;opacity:.35;mix-blend-mode:screen}
:root[data-theme="light"] .proxy-bg-img{background:url(./assets/images/proxybgwhite.png) center/cover;opacity:.55;mix-blend-mode:normal}
:root[data-theme="light"] .proxy-bg-overlay{display:none}
.gift-bg-img{background:url(./assets/images/giftcarddarkbg.png) center/cover;opacity:.3;mix-blend-mode:screen}
:root[data-theme="light"] .gift-bg-img{background:url(./assets/images/giftcardlightbg.png) center/cover;opacity:.5;mix-blend-mode:normal}
:root[data-theme="light"] .gift-bg-overlay{display:none}
:root:not([data-theme="light"]) .gift-light-overlay{display:none}
.premium-bg-img{background:url(./assets/images/premiumbgdark.png) center/cover;opacity:.25;mix-blend-mode:screen}
:root[data-theme="light"] .premium-bg-img{background:url(./assets/images/premiumbglight.png) center/cover;opacity:.65;mix-blend-mode:multiply}

/* â•â•â•â•â•â•â•â•â•â• COMPONENT STYLES â•â•â•â•â•â•â•â•â•â• */

/* Coming Soon Overlay */
.coming-soon-overlay{position:absolute;inset:0;display:grid;place-items:center;z-index:5;opacity:0;transition:opacity .35s ease;pointer-events:none;background:rgba(0,0,0,.25);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);border-radius:22px}
.coming-soon-card:hover .coming-soon-overlay{opacity:1}
.coming-soon-overlay span{font-size:16px;font-weight:900;color:#fbbf24;background:rgba(0,0,0,.55);border:2px solid rgba(251,191,36,.3);padding:8px 22px;border-radius:99px}

/* Products Horizontal Scroll Buttons */
.products-wrap{position:relative}
.scroll-btn{position:absolute;top:50%;z-index:5;width:36px;height:36px;border-radius:50%;border:1px solid var(--border);background:var(--card);color:var(--text);display:none;place-items:center;cursor:pointer;box-shadow:0 4px 16px rgba(0,0,0,.25);transition:all .2s ease;padding:0;transform:translateY(-50%)}
.scroll-btn:hover{border-color:var(--border2);transform:translateY(-50%) scale(1.08)}
.scroll-btn.prev{inset-inline-start:-14px}
.scroll-btn.next{inset-inline-end:-14px}

/* Header Base */
header{background:transparent;transition:padding .35s ease;padding:0}

/* Reduce Motion */
:root[data-motion="off"] *{animation:none !important;transition:none !important}

/* â•â•â•â•â•â•â•â•â•â• HOVER EFFECTS (replaces style-hover attributes) â•â•â•â•â•â•â•â•â•â• */

/* Header nav links */
header nav a{transition:color .2s ease, background .2s ease}
header nav a:hover{color:var(--text)!important;background:var(--surface)!important}

/* Header buttons (toggle, account, hamburger) */
header button, header a[style*="width:40px"]{transition:border-color .2s ease, color .2s ease, transform .2s ease}
header button:hover, header a[style*="width:40px"]:hover{border-color:var(--border2)!important;transform:translateY(-1px)}

/* Search form */
#hero form:focus-within{border-color:var(--border2)!important}
#hero form button[type="submit"]{transition:transform .2s ease}
#hero form button[type="submit"]:hover{transform:translateY(-1px)}

/* Search tags (popular keywords) */
.search-tag{transition:color .2s ease, border-color .2s ease}
.search-tag:hover{color:var(--accent-text)!important;border-color:var(--border2)!important}

/* Hero live search dropdown */
.hero-search-results{
  position:absolute;top:calc(100% + 10px);inset-inline:0;z-index:60;
  background:var(--card);border:1px solid var(--border);border-radius:16px;
  box-shadow:0 18px 50px -12px rgba(0,0,0,.35);overflow-y:auto;
  max-height:min(420px,70vh);padding:6px
}
.hero-search-item{display:flex;align-items:center;gap:12px;padding:9px 10px;border-radius:12px;color:var(--text);text-decoration:none}
.hero-search-item:hover{background:var(--surface)}
.hero-search-item img{width:44px;height:44px;border-radius:10px;object-fit:cover;background:var(--surface);border:1px solid var(--border);flex-shrink:0}
.hero-search-item img.hero-search-noimg{visibility:hidden}
.hero-search-meta{display:flex;flex-direction:column;gap:3px;min-width:0}
.hero-search-title{font-size:13.5px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hero-search-price{font-size:12px;color:var(--accent-text);font-weight:700}
.hero-search-empty{padding:14px 16px;font-size:13px;color:var(--muted);text-align:center}

/* Category cards */
.cat-grid > a{transition:transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease}
.cat-grid > a:hover{transform:translateY(-5px);border-color:var(--border2)!important;box-shadow:var(--card-shadow)!important}

/* Product cards */
.products-grid > article{transition:transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease}
.products-grid > article:hover{transform:translateY(-6px);border-color:var(--border2)!important;box-shadow:var(--card-shadow)!important}

/* Product buy button */
.products-grid .buy-btn{transition:transform .2s ease, box-shadow .2s ease}
.products-grid .buy-btn:hover{transform:translateY(-2px);box-shadow:0 12px 28px -8px var(--glow)!important}

/* Filter tab buttons */
.filter-tab-btn{transition:all .25s ease}

/* How-it-works step cards */
#how > div > div[data-reveal]{transition:transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease}
#how > div > div[data-reveal]:hover{transform:translateY(-4px);border-color:var(--border2)!important}

/* Why us feature cards */
.why-grid > div[data-reveal]{transition:transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease}
.why-grid > div[data-reveal]:hover{transform:translateY(-4px);border-color:var(--border2)!important}

/* Why us â€” delivery flow steps */
.why-flow-step{display:inline-flex;align-items:center;gap:7px;background:var(--surface);border:1px solid var(--border);border-radius:99px;padding:9px 17px;transition:transform .25s cubic-bezier(.22,1,.36,1),border-color .25s ease,box-shadow .25s ease}
.why-flow-step svg{flex-shrink:0;opacity:.78}
.why-flow-step .why-flow-arrow{opacity:.45}
.why-flow-step-hot{background:linear-gradient(135deg,var(--accent),var(--accent2));color:#fff;border-color:transparent;box-shadow:0 12px 28px -10px var(--glow);animation:why-flow-pulse 2.6s ease-in-out infinite}
.why-flow-step-hot svg{opacity:1}
@keyframes why-flow-pulse{0%,100%{box-shadow:0 12px 28px -10px var(--glow)}50%{box-shadow:0 14px 40px -8px var(--glow),0 0 0 5px color-mix(in srgb,var(--accent) 16%,transparent)}}
@media(hover:hover){.why-flow-step:not(.why-flow-step-hot):hover{transform:translateY(-2px);border-color:var(--border2)}}

/* Blog cards */
#blog article{transition:transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease}
#blog article:hover{transform:translateY(-5px);border-color:var(--border2)!important;box-shadow:var(--card-shadow)!important}

/* FAQ accordion hover */
#faq details summary{transition:color .25s ease}
#faq details summary:hover{color:var(--accent-text)!important}
#faq details summary:hover > span:last-child{background:var(--accent)!important;color:#fff!important}

/* CTA buttons */
.cta-btn-white{transition:transform .2s ease, box-shadow .2s ease}
.cta-btn-white:hover{transform:translateY(-2px);color:#4c1d95!important}
.cta-btn-ghost{transition:background .2s ease}
.cta-btn-ghost:hover{background:rgba(255,255,255,.22)!important;color:#fff!important}

/* Footer social buttons */
footer .social-btn{transition:all .25s ease}
footer .social-btn:hover{color:var(--accent-text)!important;border-color:var(--border2)!important}

/* Footer nav links */
footer nav ul a{transition:color .2s ease}
footer nav ul a:hover{color:var(--accent-text)!important}

/* Back to top button */
#back-to-top{transition:opacity .3s,transform .3s,box-shadow .3s}
#back-to-top:hover{transform:translateY(-4px)!important;box-shadow:0 12px 32px -4px var(--glow)!important}

/* Floating card transform origins */
.gift-wrap,[data-float="1"]{transform-origin:top right!important}
.vnum-wrap,[data-float="2"]{transform-origin:top left!important}
.proxy-wrap,[data-float="3"]{transform-origin:top right!important}
  .spotify-wrap,[data-float="4"]{transform-origin:bottom left!important}
  .float5-wrap,[data-float="5"]{transform-origin:bottom left!important}

/* Header scrolled state (glassmorphism capsule) */
header.scrolled{padding:10px clamp(16px,4vw,32px)!important}
header.scrolled>div{border-radius:100px;background:var(--header);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);border-bottom:1px solid var(--border)}

/* WordPress Header Menu List */
.main-menu-list{display:flex;align-items:center;gap:2px;list-style:none;margin:0;padding:0;font-size:14.5px;font-weight:500}
.main-menu-list li a{color:var(--muted)!important;padding:8px 12px!important;border-radius:10px;transition:color .2s ease,background .2s ease}
.main-menu-list li a:hover{color:var(--text)!important;background:var(--surface)!important}

/* â•â•â•â•â•â•â•â•â•â• RESPONSIVE SIZING â€” overrides inline px values with clamp() â•â•â•â•â•â•â•â•â•â• */
[style*="font-size:21px"]{font-size:clamp(16px,2vw,21px)!important}
[style*="font-size:14.5px"]{font-size:var(--fs-small)!important}
[style*="font-size:14px"]{font-size:var(--fs-body)!important}
[style*="font-size:13.5px"]{font-size:var(--fs-small)!important}
[style*="font-size:13px"]{font-size:var(--fs-small)!important}
[style*="font-size:12.5px"]{font-size:var(--fs-micro)!important}
[style*="font-size:12px"]{font-size:var(--fs-micro)!important}
[style*="font-size:11.5px"]{font-size:var(--fs-tiny)!important}
[style*="font-size:11px"]{font-size:var(--fs-tiny)!important}
[style*="font-size:10px"]{font-size:var(--fs-tiny)!important}
[style*="font-size:17px"]{font-size:var(--fs-h4)!important}
[style*="font-size:17.5px"]{font-size:var(--fs-h4)!important}
[style*="font-size:18px"]{font-size:var(--fs-h3)!important}
[style*="font-size:19px"]{font-size:var(--fs-h3)!important}
[style*="font-size:16px"]{font-size:var(--fs-h4)!important}
[style*="font-size:16.5px"]{font-size:var(--fs-h4)!important}
[style*="font-size:15px"]{font-size:var(--fs-body)!important}
[style*="font-size:44px"]{font-size:clamp(28px,5vw,44px)!important}
[style*="font-size:20px"]{font-size:clamp(16px,2.2vw,20px)!important}
/* Card padding/radius â€” only inside categories, products, how, why, blog */
#categories [style*="border-radius:22px"]{border-radius:var(--rad-card)!important}
#categories [style*="padding:24px"]{padding:var(--pad-card)!important}
#categories [style*="padding:26px"]{padding:var(--pad-card)!important}
#products [style*="border-radius:20px"]{border-radius:calc(var(--rad-card) - 2px)!important}
#how [style*="border-radius:22px"]{border-radius:var(--rad-card)!important}
#why [style*="border-radius:22px"]{border-radius:var(--rad-card)!important}
#why [style*="padding:28px"]{padding:var(--pad-card)!important}
#blog [style*="border-radius:22px"]{border-radius:var(--rad-card)!important}


/* â•â•â•â•â•â•â•â•â•â• RESPONSIVE â€” BREAKPOINTS (exact copy from original) â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Tablet Landscape / Small Desktop (â‰¤1024px) â”€â”€â”€ */
@media(max-width:1024px){
  /* Header â€” hamburger */
  header>div{flex-wrap:nowrap!important}
  header .hamburger{display:grid!important}
  header nav{display:none!important}
  /* ─── Mobile drawer ───
     Width was min(50vw,320px): half the viewport, so on a 375px phone the drawer
     was 187px wide while the IP type cards inside it were 263px and simply hung
     out of it. It now takes almost the full width on a phone and caps out at a
     sensible panel width on a tablet. */
  #mobile-drawer{display:flex!important;position:fixed;top:68px;left:0;bottom:0;width:min(92vw,380px);max-width:100vw;z-index:99;flex-direction:column;background:var(--bg);border-inline-end:1px solid var(--border);box-shadow:0 12px 40px -8px rgba(0,0,0,.35);visibility:hidden;transform:translateX(-100%);transition:transform .25s ease,visibility .25s ease;overscroll-behavior:contain}
  header.scrolled ~ #mobile-drawer{top:78px!important}
  body.nav-open #mobile-drawer{visibility:visible;transform:translateX(0)}

  /* A real backdrop, so the page behind reads as inert and a tap anywhere
     outside closes the drawer. */
  /* display:block must be stated here: the element carries the `hidden`
     attribute so it stays inert on desktop, and [hidden]{display:none} would
     otherwise win over the positioning below. The id selector outranks it. */
  #drawer-backdrop{display:block;position:fixed;inset:0;z-index:98;background:rgba(0,0,0,.45);opacity:0;visibility:hidden;transition:opacity .25s ease,visibility .25s ease;backdrop-filter:blur(2px)}
  body.nav-open #drawer-backdrop{opacity:1;visibility:visible}
  body.nav-open{overflow:hidden}

  .drawer-head{display:flex;align-items:center;gap:12px;padding:16px 18px;border-bottom:1px solid var(--border);background:var(--surface)}
  .drawer-avatar{width:46px;height:46px;border-radius:14px;background:linear-gradient(135deg,var(--accent),var(--accent2));color:#fff;display:grid;place-items:center;font-size:19px;font-weight:900;flex-shrink:0;box-shadow:0 8px 20px -8px var(--glow)}
  .drawer-greet .drawer-hello{display:block;font-size:12px;color:var(--muted)}
  .drawer-greet strong{font-size:15.5px;font-weight:800;color:var(--text)}
  .drawer-menu{flex:1;overflow-y:auto;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;gap:4px;padding:14px 16px}

  /* Only the drawer's own top-level items get the row treatment. This used to be
     an unscoped `.drawer-menu a` rule with !important on display, padding, font
     and colour, which also hit every link inside the mega panel — country rows,
     category cards and the footer strip all rendered as 15px full-width blocks
     with a decorative icon glued on by an :nth-child rule that had no idea what
     it was numbering. */
  .drawer-menu > .akch-nav > .akch-nav-item > .akch-nav-link{
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    padding:13px 14px;border-radius:12px;font-size:15px;font-weight:600;color:var(--text);width:100%
  }
  .drawer-menu > .akch-nav > .akch-nav-item > .akch-nav-link:hover,
  .drawer-menu > .akch-nav > .akch-nav-item.is-open > .akch-nav-link{background:var(--surface)}

  .drawer-foot{padding:14px 16px;border-top:1px solid var(--border);display:flex;flex-direction:column;gap:8px;background:var(--surface)}
  .drawer-auth{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px;border-radius:12px;font-size:14px;font-weight:700;transition:transform .15s ease}
  .drawer-auth:active{transform:scale(.97)}
  .drawer-auth.accent{background:linear-gradient(135deg,var(--accent),var(--accent2));color:#fff;box-shadow:0 10px 24px -10px var(--glow)}
  .drawer-auth.outline{border:1px solid var(--border);color:var(--text);background:var(--bg)}
  .drawer-auth svg{flex-shrink:0}
  header button:not(.hamburger){width:34px!important;height:34px!important}

  /* Hero â€” center everything */
  #hero>div{justify-content:center!important;text-align:center!important}
  #hero [data-reveal-delay="380"],#hero [data-reveal-delay="400"],#hero [data-reveal-delay="460"]{justify-content:center!important}
  #hero form{margin-inline:auto!important}
  #hero .typing-h1{text-align:center!important}
  #hero p{text-align:center!important;margin-inline:auto!important}
  #hero [style*="font-size:13.5px"]{flex-wrap:nowrap!important;font-size:11.5px!important;gap:6px!important;justify-content:center!important}
  #hero [style*="font-size:13px"]{font-size:11px!important;gap:6px!important}
  #hero [style*="font-size:13px"] a{padding:4px 10px!important;border-radius:99px!important}

  /* Hero â€” floating cards scale down */
  .gift-wrap{transform:scale(.85)!important}
  .vnum-wrap{transform:scale(.85)!important}
  .proxy-wrap{transform:scale(.85)!important}
  .spotify-wrap{transform:scale(.85)!important}
  .float5-wrap{transform:scale(.85)!important}

  /* Categories grid */
  .cat-grid{grid-template-columns:repeat(2,1fr)!important}
  .cat-grid>a[style*="span "]{grid-column:span 2!important}

  /* Why us */
  .why-grid{grid-template-columns:1fr!important}
  .why-flow-step{flex-shrink:0!important}

  /* Products scroller */
  .products-grid{display:flex!important;overflow-x:auto!important;flex-wrap:nowrap!important;scroll-snap-type:x mandatory!important;gap:16px!important;padding:8px 0 12px!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}
  .products-grid::-webkit-scrollbar{display:none!important}
  .products-grid>article{width:45vw!important;min-width:320px!important;scroll-snap-align:start!important;flex-shrink:0!important}

  /* Scroll buttons */
  .scroll-btn{display:grid!important}

  /* Sections â€” center headers */
  #categories>div:first-child,#products>div:first-child,#how>div:first-child,#blog>div:first-child,#faq>div:first-child{text-align:center!important}
  #categories>div:first-child a,#blog>div:first-child a{justify-content:center!important}

  /* Footer */
  footer>div>div:first-child{grid-template-columns:repeat(2,1fr)!important}
  footer>div>div:first-child>div:first-child{grid-column:1/-1!important;text-align:center!important}
  footer>div>div:first-child>div:first-child>a{justify-content:center!important}
  footer>div>div:first-child>div:first-child>p{margin-inline:auto!important}
  footer>div>div:first-child>div:first-child>div{justify-content:center!important}
  footer [style*="gap:36px"]{gap:20px!important}
  footer nav h3{font-size:13.5px!important;margin-bottom:12px!important}
  footer>div>div:last-child{justify-content:center!important;text-align:center!important;flex-direction:column!important}
}

/* â”€â”€â”€ Tablet Portrait (â‰¤820px) â”€â”€â”€ */
@media(max-width:820px){
  .gift-wrap{transform:scale(.75)!important;top:3%!important;right:1%!important}
  .vnum-wrap{transform:scale(.75)!important;top:20%!important;left:0!important}
  .proxy-wrap{transform:scale(.75)!important;top:50%!important;right:1%!important}
  .spotify-wrap{transform:scale(.75)!important;bottom:3%!important;left:2%!important}
  .float5-wrap{transform:scale(.7)!important;bottom:-3%!important;left:20%!important}
  #hero>div>div:last-child{height:clamp(320px,50vw,420px)!important}
  #hero [style*="background-size:34px"]{background-size:26px 26px!important}
  #categories [style*="padding:24px"],#categories [style*="padding:26px"]{padding:20px!important}
  #categories [style*="border-radius:22px"]{border-radius:18px!important}
  .coming-soon-overlay{opacity:1!important}
  .coming-soon-overlay span{font-size:13px!important;padding:6px 16px!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] [style*="padding:clamp"]{padding:clamp(28px,5vw,44px)!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] h2{font-size:clamp(19px,3vw,24px)!important;margin-bottom:12px!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] p{font-size:13.5px!important}
  .products-grid>article{width:50vw!important;min-width:280px!important}
}

/* â”€â”€â”€ Large Mobile / Small Tablet (â‰¤680px) â”€â”€â”€ */
@media(max-width:680px){
  #categories,#how,#why,#blog,#faq,footer{overflow:hidden}

  header .hamburger{display:grid!important}
  header nav{display:none!important}

  header button:not(.hamburger){width:34px!important;height:34px!important}

  #hero>div{
    flex-direction:column!important;
    gap:0!important;
    align-items:stretch!important;
    justify-content:flex-start!important;
    text-align:center!important
  }

  #hero>div>div:first-child{display:contents!important}

  #hero>div>div:first-child > :first-child{
    order:1!important;
    margin:0 auto clamp(10px,2vw,14px)!important;
    justify-content:center!important
  }

  #hero>div>div:last-child{
    order:2!important;
    height:clamp(250px,58vw,340px)!important;
    margin-bottom:clamp(14px,3vw,22px)!important;
    min-width:100%!important;
    flex:none!important
  }

  #hero>div>div:first-child > :nth-child(2){
    order:3!important;
    margin-bottom:12px!important;
    text-align:center!important
  }

  #hero>div>div:first-child > :nth-child(3){
    order:4!important;
    margin-bottom:22px!important;
    text-align:center!important;
    margin-inline:auto!important
  }

  #hero>div>div:first-child > :nth-child(4){
    order:5!important;
    margin-inline:auto!important;
    max-width:100%!important;
    margin-bottom:14px!important
  }

  #hero>div>div:first-child > :nth-child(5){
    order:6!important;
    justify-content:center!important;
    margin-bottom:18px!important
  }

  #hero>div>div:first-child > :nth-child(6){
    order:7!important;
    justify-content:center!important;
    margin-bottom:18px!important
  }

  #hero>div>div:first-child > :nth-child(7){
    order:8!important;
    justify-content:center!important
  }

  #hero>div>div:last-child>div:first-child > div,
  #hero>div>div:last-child>div:nth-child(2) > div,
  #hero>div>div:last-child>div:nth-child(4) > div,
  #hero>div>div:last-child>div:nth-child(5) > div,
  #hero>div>div:last-child>div:nth-child(6) > div{width:min(46%,180px)!important}

  #hero>div>div:last-child>div:nth-child(3) > div{width:min(46%,180px)!important}

  #hero>div>div:last-child>div:nth-child(7) > div{width:64px!important;height:64px!important;border-radius:18px!important}
  #hero>div>div:last-child>div:nth-child(7) img{width:50px!important;height:50px!important}
  #hero>div>div:last-child>div:nth-child(7) span{inset:-2px!important;border-radius:20px!important}

  .gift-wrap{transform:scale(.72)!important;top:0!important;right:0!important}
  .gift-card{padding:10px 12px!important;border-radius:12px!important}
  .gift-card > div:first-child{margin-bottom:6px!important}
  .gift-card > div:first-child span{font-size:9px!important}
  .gift-card .gcode{font-size:11px!important;margin-bottom:6px!important}
  .gift-card .gamount{font-size:15px!important}
  .gift-card .gbrand{font-size:9px!important;padding:2px 8px!important}
  .vnum-wrap{transform:scale(.72)!important}
  .proxy-wrap{transform:scale(.72)!important}
  .spotify-wrap{transform:scale(.72)!important;bottom:0!important;left:0!important}
  .spotify-card{padding:8px 12px!important;border-radius:12px!important}
  .spotify-card .spicon{width:28px!important;height:28px!important;border-radius:8px!important}
  .spotify-card .spicon svg{width:14px!important;height:14px!important}
  .spotify-card .spname{font-size:11px!important}
  .spotify-card [style*="margin-top:1px"]{font-size:10px!important}
  .spotify-card [style*="margin-top:1px"] svg{width:9px!important;height:9px!important}
  .float5-wrap{display:none!important}

  #hero [style*="background-size:34px"],#hero [style*="background-size:26px"]{background-size:20px 20px!important}

  #hero h1{font-size:clamp(24px,7.5vw,36px)!important}
  #hero p{font-size:clamp(14px,4vw,15.5px)!important;line-height:1.8!important}
  #hero [style*="font-size:13px"]{font-size:9px!important;gap:3px!important}
  #hero [style*="font-size:13px"] a{padding:2px 6px!important;border-radius:99px!important}
  #hero [style*="font-size:13.5px"]{font-size:11.5px!important;gap:6px!important}
  #hero [data-count]+span{font-size:11px!important}
  #hero [style*="font-size:clamp(11px"]{font-size:10px!important}
  #hero [style*="font-size:clamp(16px"]{font-size:14px!important}
  #hero [style*="margin-top:3px"]{font-size:10px!important}
  #hero [data-reveal-delay="460"]{gap:14px!important;justify-content:center!important}

  #hero [style*="display:inline-flex"][style*="background:var(--surface)"]{padding:5px 12px!important;font-size:11px!important}

  .cat-grid{grid-template-columns:1fr!important}
  .cat-grid>a[style*="span "]{grid-column:1!important}
  #categories [style*="border-radius:22px"]{border-radius:16px!important}
  #categories [style*="padding:24px"]{padding:18px!important}
  #categories [style*="padding:26px"]{padding:18px!important}
  #categories h3{font-size:15px!important}
  #categories p,#categories [style*="font-size:13.5px"]{font-size:12px!important}
  #categories [style*="border-radius:99px"]{padding:3px 10px!important;font-size:10px!important}
  #categories [style*="margin-bottom:20px"]{margin-bottom:12px!important}
  #categories [style*="margin-bottom:16px"]{margin-bottom:10px!important}

  .why-grid{grid-template-columns:1fr!important}
  #why .why-flow-step{font-size:10.5px!important;padding:5px 12px!important;gap:5px!important}
  #why .why-flow-step svg{width:12px!important;height:12px!important}
  #why [style*="padding:28px"]{padding:18px!important}
  #why [style*="border-radius:30px"]{border-radius:20px!important}

  #how [style*="grid-template-columns"]{grid-template-columns:1fr!important}

  .products-grid{display:flex!important;overflow-x:auto!important;flex-wrap:nowrap!important;scroll-snap-type:x mandatory!important;gap:14px!important;padding:8px 0 12px!important;-webkit-overflow-scrolling:touch!important;scrollbar-width:none!important}
  .products-grid::-webkit-scrollbar{display:none!important}
  .products-grid>article{width:75vw!important;min-width:260px!important;scroll-snap-align:start!important;flex-shrink:0!important}

  [aria-label="Ù†Ø¸Ø±Ø§Øª Ù…Ø´ØªØ±ÛŒØ§Ù†"] figure{width:270px!important;padding:16px!important}
  [aria-label="Ù†Ø¸Ø±Ø§Øª Ù…Ø´ØªØ±ÛŒØ§Ù†"] blockquote{font-size:12.5px!important}
  [aria-label="Ù†Ø¸Ø±Ø§Øª Ù…Ø´ØªØ±ÛŒØ§Ù†"] figcaption b{font-size:12.5px!important}
  [aria-label="Ù†Ø¸Ø±Ø§Øª Ù…Ø´ØªØ±ÛŒØ§Ù†"] figcaption span{font-size:11px!important}

  #blog article>div[style*="padding:22px"]{padding:16px!important}
  #blog h3{font-size:14px!important}
  #blog p{font-size:12px!important}
  #blog [style*="border-radius:22px"]{border-radius:16px!important}

  #faq details{padding:0!important}
  #faq summary{padding:16px 18px!important;font-size:13.5px!important}
  #faq p{padding:0 18px 16px!important;font-size:12.5px!important}

  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"]{padding:12px 0!important}
  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack{height:28px!important}
  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack>div{margin-inline-end:28px!important}
  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack img{height:18px!important}

  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] [style*="padding:clamp"]{padding:clamp(28px,5vw,40px)!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] h2{font-size:clamp(18px,4.5vw,22px)!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] p{font-size:clamp(13px,3.5vw,14.5px)!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] a{padding:12px 24px!important;font-size:14px!important}
}

/* â”€â”€â”€ Mobile (â‰¤480px) â”€â”€â”€ */
@media(max-width:480px){
  header>div{gap:6px!important;flex-wrap:nowrap!important;height:58px!important}
  #mobile-drawer{top:58px!important}
  header.scrolled ~ #mobile-drawer{top:68px!important}
  header button:not(.hamburger){width:30px!important;height:30px!important}
  header a[style*="width:38px"],header a[style*="width:40px"]{width:30px!important;height:30px!important}
  header a[style*="width:38px"] img{width:28px!important;height:28px!important}
  header a>span:last-child{font-size:17px!important}
  header.nav-open nav a{font-size:14px!important;padding:10px 14px!important}
  header .hamburger{width:30px!important;height:30px!important;border-radius:8px!important}

  #hero h1{font-size:clamp(20px,7vw,26px)!important}
  #hero p{font-size:13px!important;line-height:1.75!important}
  #hero [style*="font-size:13px"]{font-size:8px!important;gap:2px!important}
  #hero [style*="font-size:13px"] a{padding:1px 5px!important}
  #hero [style*="font-size:13.5px"]{flex-wrap:nowrap!important;font-size:11.5px!important;gap:6px!important}
  #hero [style*="font-size:clamp(16px"]{font-size:12px!important}
  #hero [style*="font-size:clamp(11px"]{font-size:9px!important}
  #hero [style*="margin-top:3px"]{font-size:9px!important}
  #hero [data-reveal-delay="460"]{gap:8px!important;justify-content:center!important}

  .gift-wrap{transform:scale(.58)!important;top:-2%!important;right:-2%!important;width:min(56%,200px)!important}
  .gift-card{padding:8px 10px!important;border-radius:10px!important}
  .gift-card > div:first-child span{font-size:8px!important}
  .gift-card .gcode{font-size:10px!important;letter-spacing:0!important}
  .gift-card .gamount{font-size:13px!important}
  .gift-card .gbrand{font-size:8px!important;padding:1px 6px!important}
  .vnum-wrap{transform:scale(.58)!important}
  .proxy-wrap{transform:scale(.58)!important}
  .spotify-wrap{transform:scale(.58)!important;bottom:-2%!important;left:-2%!important}
  .spotify-card{padding:6px 10px!important;border-radius:10px!important}
  .spotify-card .spicon{width:24px!important;height:24px!important;border-radius:6px!important}
  .spotify-card .spicon svg{width:12px!important;height:12px!important}
  .spotify-card .spname{font-size:10px!important}
  .spotify-card [style*="margin-top:1px"]{font-size:9px!important}
  .spotify-card [style*="margin-top:1px"] svg{width:8px!important;height:8px!important}

  #hero>div>div:last-child{height:clamp(160px,50vw,220px)!important}

  #hero>div>div:last-child>div:nth-child(7) > div{width:48px!important;height:48px!important;border-radius:14px!important}
  #hero>div>div:last-child>div:nth-child(7) img{width:38px!important;height:38px!important}
  #hero>div>div:last-child>div:nth-child(3) > div{width:min(40%,120px)!important}
  #hero>div>div:last-child>div:first-child > div,
  #hero>div>div:last-child>div:nth-child(2) > div,
  #hero>div>div:last-child>div:nth-child(4) > div,
  #hero>div>div:last-child>div:nth-child(5) > div,
  #hero>div>div:last-child>div:nth-child(6) > div{width:min(40%,120px)!important}

  #hero form input{font-size:13px!important;padding:8px 12px!important}
  #hero form button{width:36px!important;height:36px!important}

  #hero [data-reveal-delay="400"]{gap:10px!important;font-size:10px!important;flex-wrap:wrap!important;justify-content:center!important}
  #hero [data-reveal-delay="400"] span{gap:4px!important}
  #hero [data-reveal-delay="400"] svg{width:12px!important;height:12px!important}

  #hero [data-reveal-delay="460"]{gap:12px!important}
  #hero [data-reveal-delay="460"]>div{flex:1 1 80px!important}

  #hero [style*="background-size:34px"],#hero [style*="background-size:26px"],#hero [style*="background-size:20px"]{background-size:14px 14px!important}

  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack{height:24px!important}
  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack>div{margin-inline-end:20px!important}
  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack img{height:14px!important}

  .products-grid>article{width:82vw!important;min-width:230px!important}

  [aria-label="Ù†Ø¸Ø±Ø§Øª Ù…Ø´ØªØ±ÛŒØ§Ù†"] figure{width:240px!important;padding:14px!important}
  [aria-label="Ù†Ø¸Ø±Ø§Øª Ù…Ø´ØªØ±ÛŒØ§Ù†"] blockquote{font-size:12px!important}

  #faq summary{padding:14px 16px!important;font-size:13px!important}
  #faq p{padding:0 16px 14px!important;font-size:12px!important}

  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] [style*="padding:clamp"]{padding:clamp(26px,6vw,36px)!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] h2{font-size:clamp(18px,4.5vw,21px)!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] a{font-size:14px!important;padding:13px 26px!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] [style*="display:flex;flex-wrap:wrap;justify-content:center;gap:12px"]{flex-direction:column!important;align-items:stretch!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] a{width:100%!important;justify-content:center!important}

  #back-to-top{width:40px!important;height:40px!important;border-radius:12px!important;bottom:16px!important;inset-inline-end:16px!important}
  #back-to-top svg{width:16px!important;height:16px!important}
}

/* â”€â”€â”€ Small Mobile (â‰¤360px) â”€â”€â”€ */
@media(max-width:360px){
  header>div{padding:0 10px!important;height:56px!important;gap:4px!important}
  #mobile-drawer{top:56px!important}
  header.scrolled ~ #mobile-drawer{top:66px!important}
  header a[style*="width:38px"] img{width:28px!important;height:28px!important}
  header a>span:last-child{font-size:16px!important}
  header button:not(.hamburger){width:26px!important;height:26px!important;border-radius:8px!important}
  header button svg{width:14px!important;height:14px!important}

  #hero>div{padding:clamp(32px,6vw,40px) clamp(12px,3vw,16px) clamp(40px,7vw,56px)!important}
  #hero h1{font-size:clamp(17px,6.5vw,20px)!important;margin-bottom:14px!important}
  #hero p{font-size:12px!important;line-height:1.7!important;margin-bottom:20px!important}
  #hero form input{font-size:12px!important;padding:6px 10px!important}
  #hero form button{width:32px!important;height:32px!important;border-radius:8px!important}
  #hero form button svg{width:14px!important;height:14px!important}
  #hero [data-reveal-delay="400"]{font-size:9px!important;gap:6px!important}
  #hero [style*="display:inline-flex"][style*="background:var(--surface)"]{padding:4px 10px!important;font-size:10px!important}

  .gift-wrap{transform:scale(.48)!important;top:-4%!important;right:-4%!important}
  .gift-card{padding:6px 8px!important;border-radius:8px!important}
  .gift-card > div:first-child{margin-bottom:4px!important}
  .gift-card > div:first-child span{font-size:7px!important}
  .gift-card .gcode{font-size:8px!important;margin-bottom:4px!important}
  .gift-card .gamount{font-size:11px!important}
  .gift-card .gbrand{font-size:7px!important;padding:1px 4px!important}
  .vnum-wrap{transform:scale(.48)!important;top:12%!important}
  .proxy-wrap{transform:scale(.48)!important;top:52%!important}
  .spotify-card{display:none!important}
  #hero>div>div:last-child{height:clamp(120px,45vw,160px)!important}

  #hero>div>div:last-child>div:nth-child(7) > div{width:36px!important;height:36px!important;border-radius:10px!important}
  #hero>div>div:last-child>div:nth-child(7) img{width:28px!important;height:28px!important}

  #hero>div>div:last-child>div:nth-child(3) > div{width:min(38%,80px)!important;box-shadow:none!important}
  #hero>div>div:last-child>div:first-child > div,
  #hero>div>div:last-child>div:nth-child(2) > div,
  #hero>div>div:last-child>div:nth-child(4) > div,
  #hero>div>div:last-child>div:nth-child(5) > div,
  #hero>div>div:last-child>div:nth-child(6) > div{width:min(38%,80px)!important}

  #hero [style*="background-size:34px"],#hero [style*="background-size:26px"],#hero [style*="background-size:20px"],#hero [style*="background-size:14px"]{background-size:10px 10px!important}

  #hero [data-reveal-delay="380"] a:nth-child(n+4){display:none!important}
  #hero [data-reveal-delay="380"] span{font-size:10px!important}

  #hero [data-reveal-delay="460"]{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important}
  #hero [data-reveal-delay="460"]>div{flex:unset!important}

  #categories [style*="flex-wrap:wrap"]{gap:4px!important}
  #categories [style*="flex-wrap:wrap"] span{font-size:9px!important;padding:2px 8px!important}

  .products-grid>article{width:88vw!important;min-width:200px!important}
  .products-grid>article h3{font-size:14px!important}
  .products-grid>article p{font-size:11px!important}

  #blog [style*="grid-template-columns"]{grid-template-columns:1fr!important}

  footer>div>div:first-child{grid-template-columns:1fr!important}
  footer>div{padding:clamp(32px,5vw,40px) clamp(12px,3vw,16px) 20px!important}
  footer nav h3{font-size:13px!important;margin-bottom:10px!important}
  footer ul{font-size:12px!important}
  footer>div>div:last-child{font-size:11px!important}

  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] [style*="padding:clamp"]{padding:clamp(24px,5vw,32px)!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] h2{font-size:clamp(17px,4.6vw,19px)!important;line-height:1.6!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] p{font-size:12px!important}
  #hero~section[aria-label="Ø´Ø±ÙˆØ¹ Ø®Ø±ÛŒØ¯"] a{padding:12px 18px!important;font-size:13px!important;border-radius:10px!important}

  #scroll-progress{height:2px!important}
}

/* â•â•â•â•â•â•â•â•â•â• SINGLE PRODUCT PAGE â•â•â•â•â•â•â•â•â•â• */

/* hero-split responsive */
@media(max-width:860px){
  .hero-split{flex-direction:column!important}
  .hero-visual{flex:unset!important;width:100%!important}
  .hero-info{flex:unset!important;width:100%!important}
}

/* Purchase panel */
.purchase-panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  margin-top:8px;
}
.pp-section{
  padding:16px 20px;
  border-bottom:1px solid var(--border);
}
.pp-row-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.pp-label{
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}
.pp-selected-tag{
  font-size:12px;
  background:var(--accent-soft);
  color:var(--accent-text);
  padding:4px 12px;
  border-radius:99px;
  font-weight:700;
}

/* Variation pills */
.v-pill{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  padding:10px 16px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  cursor:pointer;
  transition:border-color .2s,background .2s,transform .2s;
  color:var(--text);
  font-size:13px;
  font-weight:700;
}
.v-pill:hover:not(:disabled){
  border-color:var(--border2);
  transform:translateY(-1px);
}
.v-pill.active{
  background:var(--accent-soft);
  border-color:var(--accent);
  color:var(--accent-text);
}
.v-price{font-size:11.5px;color:var(--muted)}
.v-pill.active .v-price{color:var(--accent-text)}

/* Qty stepper */
.pp-qty-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:4px 0;
}
.pp-qty-hint{
  display:block;
  font-size:11.5px;
  color:var(--muted2);
  margin-top:2px;
}
.pp-stepper{
  display:flex;
  align-items:center;
  gap:0;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
}
.pp-step-btn{
  width:36px;height:36px;
  background:transparent;
  border:none;
  color:var(--text);
  font-size:18px;
  cursor:pointer;
  transition:background .15s;
}
.pp-step-btn:hover{background:var(--accent-soft)}
.pp-step-val{
  min-width:36px;
  text-align:center;
  font-size:15px;
  font-weight:800;
  color:var(--text);
}

/* Gallery thumbs */
.gal-thumb{
  width:60px;height:60px;
  border-radius:10px;
  border:2px solid var(--border);
  overflow:hidden;
  cursor:pointer;
  transition:border-color .2s,transform .2s;
  background:var(--card);
}
.gal-thumb img{width:100%;height:100%;object-fit:cover}
.gal-thumb:hover{border-color:var(--border2);transform:scale(1.06)}
.gal-thumb.active{border-color:var(--accent)}

/* Price roll animation */
@keyframes priceRoll{
  from{transform:translateY(-10px);opacity:0}
  to{transform:translateY(0);opacity:1}
}

/* WooCommerce price overrides */
.price del{color:var(--muted2);font-size:.8em;margin-inline-end:6px;text-decoration:line-through}
.price ins{text-decoration:none}
.woocommerce-Price-amount{font-weight:800}

/* â”€â”€â”€ Category Hero & 3D Wheel â”€â”€â”€ */
.cat-hero-inner{display:flex;align-items:center;gap:clamp(32px,5vw,64px)}
.cat-hero-text{flex:1 1 55%;min-width:0}
.cat-hero-visual{flex:1 1 45%;min-width:0;text-align:center}
.wheel-wrap{position:relative;perspective:800px;height:240px;display:flex;align-items:center;justify-content:center;width:100%;max-width:400px;margin:0 auto}
.wheel-stage{position:relative;width:145px;height:190px;transform-style:preserve-3d;transition:transform .55s cubic-bezier(.34,1.56,.64,1)}
.wheel-item{position:absolute;inset:0;width:145px;height:190px;border-radius:16px;background:var(--card);border:1px solid var(--border);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;backface-visibility:hidden;transform-style:preserve-3d;transition:all .4s cubic-bezier(.34,1.56,.64,1);text-decoration:none;color:var(--text);box-shadow:0 10px 30px -10px rgba(0,0,0,.4);overflow:hidden;will-change:transform,opacity}
.wheel-item::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(139,92,246,.06),rgba(217,70,239,.06));opacity:0;transition:opacity .3s;pointer-events:none}
.wheel-item:hover::before{opacity:1}
.wheel-item::after{content:'';position:absolute;top:-40%;right:-40%;width:90px;height:90px;background:radial-gradient(circle,rgba(139,92,246,.12),transparent 70%);border-radius:50%;filter:blur(25px);pointer-events:none}
.wheel-item img{width:34px;height:34px;object-fit:contain;filter:brightness(0) invert(.6);transition:transform .3s,filter .3s;position:relative;z-index:2}
.wheel-item:hover img{transform:scale(1.08);filter:brightness(0) invert(.8) drop-shadow(0 3px 6px rgba(139,92,246,.4))}
:root[data-theme="light"] .wheel-item img{filter:none;opacity:.9}
:root[data-theme="light"] .wheel-item:hover img{filter:none;opacity:1;transform:scale(1.08)}
.wheel-item h3{font-size:13.5px;font-weight:900;margin:0;position:relative;z-index:2;letter-spacing:-.2px}
.wheel-item p{font-size:10.5px;line-height:1.45;color:var(--muted);text-align:center;margin:0;max-width:115px;position:relative;z-index:2}
.wheel-item .count-badge{font-size:10px;font-weight:800;color:var(--accent-text);background:var(--surface);padding:5px 13px;border-radius:99px;border:1px solid var(--border);position:relative;z-index:2;transition:all .3s}
.wheel-item:hover .count-badge{background:var(--accent-soft);border-color:var(--accent);transform:scale(1.04)}
.wheel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:12px;border:1px solid var(--border);background:var(--card);color:var(--muted);display:grid;place-items:center;cursor:pointer;transition:all .25s cubic-bezier(.34,1.56,.64,1);z-index:10;font-size:18px;line-height:1;padding:0;box-shadow:0 4px 12px -4px rgba(0,0,0,.2);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.wheel-arrow:hover{background:var(--surface);color:var(--accent-text);border-color:var(--accent);transform:translateY(-50%) scale(1.1);box-shadow:0 8px 20px -6px var(--glow)}
.wheel-arrow:active{transform:translateY(-50%) scale(.95)}
.wheel-arrow.prev{inset-inline-start:calc(50% - 180px)}
.wheel-arrow.next{inset-inline-end:calc(50% - 180px)}
.wheel-dots{display:flex;justify-content:center;gap:6px;margin:28px auto 0}
.wheel-dot{width:7px;height:7px;border-radius:50%;background:var(--border);border:none;cursor:pointer;transition:all .3s cubic-bezier(.34,1.56,.64,1);padding:0;box-shadow:0 2px 4px -2px rgba(0,0,0,.2)}
.wheel-dot:hover{background:var(--border2);transform:scale(1.15)}
.wheel-dot.active{background:linear-gradient(135deg,var(--accent),var(--accent2));width:22px;border-radius:99px;box-shadow:0 4px 12px -4px var(--glow)}
@media(max-width:768px){
  .cat-hero-inner{flex-direction:column;gap:0}
  .cat-hero-text{display:contents}
  .cat-hero-visual{display:contents}
  .wheel-wrap{overflow:visible;max-width:none;height:300px;margin:20px 0;perspective:1000px}
  .wheel-stage{width:170px;height:230px}
  .wheel-item{inset:auto;top:50%;left:50%;width:170px;height:230px;margin-left:-85px;margin-top:-115px;border-radius:20px;gap:12px}
  .wheel-item img{width:40px;height:40px}
  .wheel-item h3{font-size:15px}
  .wheel-item p{font-size:11px;max-width:140px}
  .wheel-arrow{width:38px;height:38px}
  .wheel-arrow.prev{inset-inline-start:-8px}
  .wheel-arrow.next{inset-inline-end:-8px}
}

/* â”€â”€â”€ Category Sections Responsive (proxy/gift/premium/game/number) â”€â”€â”€ */
/* Small Tablets only (768px - 900px) - centered stacked layout */
@media(min-width:768px) and (max-width:900px){
  section[data-cat-section]>div{flex-direction:column!important;gap:clamp(32px,4vw,48px)!important;align-items:center!important}
  section[data-cat-section]>div>div{order:0!important;flex:1 1 100%!important;min-width:100%!important;max-width:680px!important;display:flex!important;flex-direction:column!important;align-items:center!important}
  section[data-cat-section]>div>div:first-child{text-align:center!important}
  section[data-cat-section]>div>div:first-child>div:first-child{justify-content:center!important;flex-direction:column!important;align-items:center!important;gap:12px!important}
  section[data-cat-section]>div>div:first-child p{max-width:62ch!important;margin-inline:auto!important}
  section[data-cat-section]>div>div:first-child>div:nth-child(3){justify-content:center!important}
  section[data-cat-section]>div>div:first-child>div:nth-child(4){justify-content:center!important;text-align:center!important}
  section[data-cat-section] a[style*="padding:13px"]{width:auto!important;min-width:240px!important}
  #gift-panel{justify-content:center!important}
  .wheel-wrap{max-width:380px!important}
}

/* Large Tablets (901px - 1024px) - normal 2-column layout */
@media(min-width:901px) and (max-width:1024px){
  section[data-cat-section]>div{gap:clamp(28px,4vw,48px)!important}
}

/* Mobile - column stack, left aligned, full width */
@media(max-width:767px){
  section[data-cat-section]>div{flex-direction:column!important;gap:clamp(28px,4vw,40px)!important}
  section[data-cat-section]>div>div{order:0!important;flex:1 1 100%!important;min-width:100%!important;max-width:100%!important}
  section[data-cat-section]>div>div:first-child{text-align:start!important}
  section[data-cat-section]>div>div:first-child>div:first-child{justify-content:flex-start!important;flex-direction:column!important;align-items:flex-start!important;gap:12px!important}
  section[data-cat-section]>div>div:first-child>div:first-child span[style*="width:56px"]{width:48px!important;height:48px!important}
  section[data-cat-section]>div>div:first-child>div:first-child svg{width:20px!important;height:20px!important}
  section[data-cat-section] h2{font-size:clamp(20px,4.5vw,28px)!important}
  section[data-cat-section] p{font-size:14px!important;line-height:1.9!important}
  section[data-cat-section] a[style*="padding:13px"]{padding:11px 22px!important;font-size:13px!important;width:100%!important;justify-content:flex-start!important}
  section[data-cat-section] span[style*="font-size:14px"]{font-size:13px!important;display:block!important;text-align:start!important;margin-top:12px!important}
  section[data-cat-section]>div>div:first-child>div:nth-child(3)>span{font-size:11.5px!important;padding:5px 12px!important}
}

@media(max-width:480px){
  section[data-cat-section]>div>div:first-child>div:first-child span[style*="width:56px"]{width:48px!important;height:48px!important}
  section[data-cat-section]>div>div:first-child>div:first-child span[style*="width:56px"] svg{width:20px!important;height:20px!important}
  section[data-cat-section] h2{font-size:clamp(18px,3.5vw,24px)!important}
  section[data-cat-section]>div>div:first-child>div:nth-child(3)>span{font-size:11px!important;padding:5px 12px!important}
}

/* â”€â”€â”€ Proxy Dashboard Responsive â”€â”€â”€ */
@media(max-width:768px){
  div[style*="Proxy Monitor"]{max-width:100%!important}
  div[style*="grid-template-columns:1fr 1fr 1fr 1fr"]{grid-template-columns:1fr 1fr!important}
  div[style*="grid-template-columns:1fr 1fr 1fr"]{grid-template-columns:1fr!important}
}
@media(max-width:420px){
  div[style*="Proxy Monitor"] div[style*="padding:10px 8px"]{padding:8px 6px!important}
  div[style*="Proxy Monitor"] span[style*="font-size:10px"]{font-size:9px!important}
  div[style*="Proxy Monitor"] span[style*="font-size:11px"]{font-size:10px!important}
}

/* â”€â”€â”€ Step timeline â”€â”€â”€ */
.step-container{position:relative}
.step-line-bar{position:absolute;top:28px;bottom:28px;inset-inline-start:32px;width:2px;background:linear-gradient(to bottom,var(--accent),var(--accent2),transparent)}
.step-node{position:relative;padding-inline-start:80px;padding-bottom:40px}
.step-node:last-child{padding-bottom:0}
.step-node-marker{position:absolute;inset-inline-start:12px;top:0;width:42px;height:42px;border-radius:16px;display:grid;place-items:center;font-size:14px;font-weight:900;color:#fff;flex-shrink:0;z-index:2}
.step-node-marker.glow-node{box-shadow:0 8px 24px -6px var(--glow);animation:nodePulse 3s ease-in-out infinite}
.step-card-body{background:var(--card2);border:1px solid var(--border);border-radius:20px;padding:22px 26px;transition:all .4s cubic-bezier(.22,1,.36,1)}
.step-card-body:hover{transform:translateX(-4px);border-color:var(--border2);box-shadow:0 20px 40px -20px var(--glow)}
@keyframes nodePulse{0%,100%{box-shadow:0 0 0 0 var(--glow)}50%{box-shadow:0 0 0 12px rgba(124,58,237,.2)}}
@media(max-width:1024px){
  .step-line-bar{display:none!important}
  .step-node{padding-inline-start:0!important;padding-bottom:20px!important}
  .step-node-marker{position:relative!important;inset-inline-start:auto!important;margin-bottom:12px!important}
}

/* â”€â”€â”€ FAQ Accordion â”€â”€â”€ */
.faq-q{display:flex;align-items:center;gap:14px;padding:18px 22px;font-size:15px;font-weight:700;cursor:pointer;color:var(--text);transition:all .3s;user-select:none;border-radius:16px;position:relative}
.faq-q .faq-icon{width:26px;height:26px;border-radius:8px;background:var(--accent-soft);color:var(--accent-text);display:grid;place-items:center;flex-shrink:0;font-size:16px;font-weight:600;transition:all .4s cubic-bezier(.34,1.56,.64,1)}
details[open] .faq-q .faq-icon{background:linear-gradient(135deg,var(--accent),var(--accent2));color:#fff;transform:rotate(180deg)}
.faq-body{animation:slideDown .35s cubic-bezier(.22,1,.36,1)}

/* â”€â”€â”€ Related products card â”€â”€â”€ */
.rp-card{min-width:260px;width:26vw;max-width:300px;flex-shrink:0;scroll-snap-align:start;background:var(--card);border:1px solid var(--border);border-radius:20px;overflow:hidden;transition:all .4s cubic-bezier(.34,1.56,.64,1)}
.rp-card:hover{transform:translateY(-8px) scale(1.02);border-color:var(--accent);box-shadow:0 30px 60px -20px var(--glow)}

/* â”€â”€â”€ Gradient text & Glass cards â”€â”€â”€ */
.gradient-text{background:linear-gradient(135deg,var(--accent-text),var(--accent2));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.glass-card{background:var(--card);border:1px solid var(--border);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px)}
.glass-card-2{background:var(--card2);border:1px solid var(--border);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px)}

/* â•â•â•â•â•â•â• PURCHASE PANEL â€” Product.dc.html â•â•â•â•â•â•â• */
.purchase-panel{
  background:linear-gradient(145deg,var(--card),color-mix(in srgb,var(--accent) 3%,var(--card)));
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  margin-bottom:16px;
  box-shadow:0 24px 64px -32px var(--glow),inset 0 1px 0 rgba(255,255,255,.03);
}
.pp-section{
  padding:18px 20px;
  border-bottom:1px solid var(--border);
}
.pp-row-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
  gap:8px;
}
.pp-label{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.6px;
}
.pp-selected-tag{
  font-size:11px;
  font-weight:800;
  color:var(--accent-text);
  background:var(--accent-soft);
  border:1px solid rgba(124,58,237,.18);
  padding:3px 10px;
  border-radius:999px;
}
.pp-qty-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.pp-qty-row .pp-label{margin-bottom:3px}
.pp-qty-hint{
  display:block;
  font-size:11px;
  color:var(--muted2);
  margin-top:3px;
}
.pp-stepper{
  display:flex;
  align-items:center;
  gap:0;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  flex-shrink:0;
}
.pp-step-btn{
  width:38px;
  height:38px;
  border:none;
  background:transparent;
  color:var(--muted);
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:background .18s,color .18s;
}
.pp-step-btn:hover{background:var(--accent-soft);color:var(--accent-text)}
.pp-step-val{
  min-width:38px;
  text-align:center;
  font-size:17px;
  font-weight:900;
  color:var(--text);
  font-variant-numeric:tabular-nums;
  border-inline:1px solid var(--border);
  line-height:38px;
}

/* CTA block */
.pp-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 20px 16px;
  border-bottom:1px solid var(--border);
  flex-wrap:wrap;
}
.pp-price-block{flex:1 1 180px;min-width:0}
.pp-price-label{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  font-weight:700;
  color:var(--muted2);
  margin-bottom:6px;
}
.pp-price-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent2);
  box-shadow:0 0 8px var(--glow2);
  flex-shrink:0;
}
.pp-price-row{
  display:flex;
  align-items:baseline;
  gap:7px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
#price-roll{
  font-size:clamp(28px,3.8vw,42px);
  font-weight:950;
  letter-spacing:-1.5px;
  line-height:1;
  background:linear-gradient(135deg,var(--text),var(--accent-text));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:priceRoll .24s ease;
}
.pp-currency{
  font-size:13px;
  font-weight:800;
  color:var(--muted2);
}
.pp-original{
  font-size:11px;
  color:var(--muted2);
  text-decoration:line-through;
  background:var(--surface);
  padding:2px 8px;
  border-radius:999px;
}
.pp-badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.pp-badge{
  font-size:10.5px;
  font-weight:700;
  padding:3px 9px;
  border-radius:999px;
}
.pp-badge-muted{
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--muted2);
}
.pp-badge-ok{
  background:rgba(52,211,153,.1);
  border:1px solid rgba(52,211,153,.22);
  color:var(--ok);
}
.pp-buy-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:14px;
  border:none;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1),box-shadow .25s;
  box-shadow:0 12px 32px -14px var(--glow);
  white-space:nowrap;
  position:relative;
  overflow:hidden;
}
.pp-buy-btn::after{
  content:'';
  position:absolute;
  top:-50%;
  inset-inline-start:-60%;
  width:40%;
  height:200%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);
  transform:rotate(22deg);
  transition:all .6s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}
.pp-buy-btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 20px 44px -16px var(--glow);
}
.pp-buy-btn:hover::after{
  inset-inline-start:130%;
}
.pp-trust{display:flex;align-items:center;flex-wrap:wrap;gap:10px 14px;padding:12px 20px;background:var(--bg2)}
.pp-trust-item{display:flex;align-items:center;gap:5px;font-size:11.5px;color:var(--muted);font-weight:600}
.pp-trust-sep{width:3px;height:3px;border-radius:50%;background:var(--border2);flex-shrink:0}
.pp-trust-ask{margin-inline-start:auto;display:inline-flex;align-items:center;gap:5px;font-size:11.5px;font-weight:700;color:var(--accent-text);padding:4px 12px;border-radius:999px;border:1px solid var(--border);text-decoration:none}
.pp-trust-ask:hover{background:var(--accent-soft);border-color:var(--border2)}


/* â”€â”€â”€ Gift Card Stack & Proxy Visuals â”€â”€â”€ */
:root{
  --gc-bg:linear-gradient(150deg,rgba(28,18,48,.9),rgba(52,28,84,.82));
  --gc-border:rgba(139,92,246,.3);
  --gc-text:#fff;
  --gc-text2:rgba(255,255,255,.8);
  --gc-shadow:0 6px 18px -6px rgba(0,0,0,.5);
}
:root[data-theme="light"]{
  --gc-bg:linear-gradient(150deg,#faf9ff,#f3f0fd);
  --gc-border:rgba(109,40,217,.14);
  --gc-text:#180f33;
  --gc-text2:rgba(24,15,51,.7);
  --gc-shadow:0 8px 24px -8px rgba(0,0,0,.15);
}
.gc-front{z-index:4!important}
.gc-front:hover{z-index:99!important;transform:scale(1.15)!important;box-shadow:0 20px 44px -12px rgba(139,92,246,.5)!important}
@keyframes borderAurora{0%,100%{border-color:rgba(139,92,246,.35)}25%{border-color:rgba(217,70,239,.35)}50%{border-color:rgba(59,130,246,.35)}75%{border-color:rgba(139,92,246,.35)}}
[data-theme="light"] #gift-panel img{filter:drop-shadow(0 0 3px rgba(0,0,0,.4))}
[data-theme="light"] .gc-front img{filter:brightness(0)}

#gift>div{flex-wrap:nowrap!important}

@media(max-width:768px){
  #gift-panel{justify-content:center!important}
  #gc-stack>div{width:140px!important;height:210px!important}
  #gc-stack>div>div{width:100%!important;height:100%!important}
}

@media(max-width:480px){
  #gc-stack{transform:scale(.9)!important}
  #gc-stack>div{width:130px!important;height:195px!important}
}

/* â”€â”€â”€ Popular search tags â€” compact at every width â”€â”€â”€ */
#hero [data-reveal-delay="380"]{font-size:10.5px!important;gap:6px!important}
#hero [data-reveal-delay="380"] a{padding:3px 8px!important;border-radius:99px!important}
#hero form[role="search"]{z-index:2!important}
@media(max-width:680px){
  #hero [data-reveal-delay="380"]{font-size:9px!important;gap:4px!important}
  #hero [data-reveal-delay="380"] a{padding:2px 6px!important}
}
@media(max-width:480px){
  #hero [data-reveal-delay="380"]{font-size:8px!important;gap:3px!important}
  #hero [data-reveal-delay="380"] a{padding:1px 5px!important}
}

/* â”€â”€â”€ Brands marquee â€” faster on mobile, clean start â”€â”€â”€ */
@media(max-width:680px){
  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack{animation-duration:30s!important}
}
@media(max-width:480px){
  [aria-label="Ø¨Ø±Ù†Ø¯Ù‡Ø§"] #brandTrack{animation-duration:22s!important}
}



