/* =============================================================
   AlterVape Theme — vapetheme.css  v8.0
   ■ Unified pure black header — topbar + header+nav inside ONE container
   ■ Round icon-circle action buttons (Wishlist / Sign In) + pill Cart
   ■ Search: green border on focus, NO glow
   ■ Nav row inside same container as logo/search/actions
   ■ Hero slider taller
   ■ Deals + Why Us = full-width sections
   ■ Cart slide-in drawer
   ■ Full responsive
   ============================================================= */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS VARIABLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
    --av-green:        #00C060;
    --av-green-dark:   #009948;
    --av-green-light:  #E8F8EF;
    --av-black:        #0A0A0F;
    --av-glass:        rgba(255,255,255,.07);
    --av-glass-border: rgba(255,255,255,.10);
    --av-glass-hover:  rgba(255,255,255,.12);
    --av-dark:         #1A1A2E;
    --av-white:        #FFFFFF;
    --av-gray:         #6B7280;
    --av-gray-light:   #E5E7EB;
    --av-gray-lighter: #F3F4F6;
    --av-text:         #1F2937;
    --av-text-muted:   #6B7280;
    --av-red:          #EF4444;
    --av-font:         'Inter','Helvetica Neue',Arial,sans-serif;
    --av-radius:       12px;
    --av-shadow:       0 4px 24px rgba(0,0,0,.08);
    --av-shadow-lg:    0 8px 40px rgba(0,0,0,.18);
    --av-trans:        all .22s cubic-bezier(.4,0,.2,1);

    /* Header heights */
    --topbar-h:   34px;
    --header-h:   62px;   /* row2: logo+search+actions */
    --nav-h:      44px;   /* row3: nav links */
    --hdr-total:  calc(var(--topbar-h) + var(--header-h) + var(--nav-h));
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; outline: none !important; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--av-font); color: var(--av-text); background: #fff; font-size: 15px; line-height: 1.6; }
/* ── Override Magento styles-m default #1979c3 blue link color ── */
a, body a, body a:link, body a:visited { text-decoration: none !important; color: inherit !important; transition: var(--av-trans); outline: none !important; }
a:focus, a:hover, a:active, body a:focus, body a:hover, body a:active { outline: none !important; box-shadow: none !important; text-decoration: none !important; }
button { cursor: pointer; border: none; background: none; font-family: var(--av-font); outline: none !important; }
button:focus, button:focus-visible { outline: none !important; box-shadow: none !important; }
input { font-family: var(--av-font); outline: none !important; }
input:focus { outline: none !important; box-shadow: none !important; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTAINER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-container { max-width: 1380px; margin: 0 auto; padding: 0 28px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HIDE NATIVE MAGENTO ELEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-header, .header.content, .nav-sections, .nav-toggle,
.page-footer .footer.content, .page-footer .copyright,
.page-footer .bugs { display: none !important; }
.page-footer:empty { display: none !important; }
.page-wrapper { padding-top: 0 !important; margin-top: 0 !important; }
#maincontent, .page-main {
    max-width: 100% !important;
    padding-left: 0 !important; padding-right: 0 !important;
    margin-top: var(--hdr-total) !important;
    width: 100% !important;
}
.column.main { padding-left: 0 !important; padding-right: 0 !important; padding-bottom: 0 !important; min-height: 0 !important; width: 100% !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SITE HEADER SHELL — fixed, all pure black
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--av-black);
    box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOP BAR (Row 1)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-topbar {
    background: var(--av-black);
    border-bottom: 1px solid rgba(255,255,255,.05);
    height: var(--topbar-h);
    font-size: 11.5px; font-weight: 500;
    color: rgba(255,255,255,.52); letter-spacing: .2px;
}
.av-topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.av-topbar__left { display: flex; align-items: center; gap: 7px; }
.av-topbar__left i { color: var(--av-green); font-size: 11px; }
.av-topbar__right { display: flex; align-items: center; gap: 12px; }
.av-topbar__right > span { display: flex; align-items: center; gap: 5px; }
.av-topbar__right i { color: var(--av-green); font-size: 10px; }
.av-topbar__divider { width: 1px; height: 12px; background: rgba(255,255,255,.12); display: inline-block !important; }
.av-topbar__lang { cursor: pointer; transition: var(--av-trans); padding: 2px 8px; border-radius: 4px; display: flex !important; align-items: center; gap: 4px; }
.av-topbar__lang:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAIN HEADER (Rows 2+3 — single .av-header wrapper, one container)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-header {
    background: var(--av-black);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Row 2: logo + search + actions */
.av-header__row {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 14px;
}

/* Mobile search row — hidden on desktop */
.av-header__mob-search { display: none; }

/* ── Hamburger ──────────────────────────────────────────────── */
.av-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 9px 8px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: var(--av-trans);
    background: var(--av-glass);
    border: 1px solid var(--av-glass-border);
}
.av-hamburger span { display: block; width: 20px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: var(--av-trans); }
.av-hamburger:hover { background: var(--av-glass-hover); }

/* ── Logo ───────────────────────────────────────────────────── */
.av-logo { display: flex; align-items: center; flex-shrink: 0; line-height: 1; border-radius: 4px; transition: opacity .2s; }
.av-logo:hover { opacity: .82; }
.av-logo__alter { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.6px; }
.av-logo__vape  { font-size: 22px; font-weight: 900; color: var(--av-green); letter-spacing: -.6px; }

/* ── Search ─────────────────────────────────────────────────── */
.av-search { flex: 1; max-width: 640px; }
.av-search__form {
    display: flex; align-items: center;
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.10);
    border-radius: 50px; height: 42px;
    padding: 0 6px 0 16px;
    transition: border-color .2s, background .2s;
}
.av-search__form:focus-within {
    background: rgba(255,255,255,.09);
    border-color: var(--av-green);
}
.av-search__icon { color: rgba(255,255,255,.35); font-size: 13px; margin-right: 10px; flex-shrink: 0; transition: color .2s; }
.av-search__form:focus-within .av-search__icon { color: var(--av-green); }
.av-search__input {
    flex: 1; border: none !important; background: transparent !important;
    font-size: 14px; color: rgba(255,255,255,.9);
    outline: none !important; caret-color: var(--av-green);
}
.av-search__input::placeholder { color: rgba(255,255,255,.3); font-size: 13.5px; }
.av-search__input:-webkit-autofill,
.av-search__input:-webkit-autofill:hover,
.av-search__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #0f0f14 inset !important;
    -webkit-text-fill-color: rgba(255,255,255,.9) !important;
    caret-color: var(--av-green) !important;
    transition: background-color 9999s ease !important;
}
.av-search__btn {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--av-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0; transition: var(--av-trans);
}
.av-search__btn:hover { background: var(--av-green-dark); transform: scale(1.07); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACTION BUTTONS — Round icon circle + label below
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-header__actions {
    display: flex; align-items: center;
    gap: 6px; margin-left: auto; flex-shrink: 0;
}

/* Base: icon-circle + label stacked vertically */
.av-act {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 4px;
    color: rgba(255,255,255,.60);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .3px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--av-trans);
    white-space: nowrap;
    min-width: 52px;
    text-align: center;
}

/* The circle icon wrapper */
.av-act__icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,.70);
    transition: var(--av-trans);
    position: relative;
}
.av-act__label {
    font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,.50);
    letter-spacing: .4px;
    text-transform: uppercase;
    transition: color .2s;
    line-height: 1;
}

/* Hover state */
.av-act:hover .av-act__icon {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.20);
    color: #fff;
    transform: translateY(-1px);
}
.av-act:hover .av-act__label { color: rgba(255,255,255,.85); }

/* Wishlist — heart goes green-pink on hover */
.av-act--wish:hover .av-act__icon { background: rgba(255,80,120,.12); border-color: rgba(255,80,120,.25); color: #ff6b8a; }
.av-act--wish:hover .av-act__label { color: #ff6b8a; }

/* Account — user icon turns green on hover */
.av-act--account:hover .av-act__icon { background: rgba(0,192,96,.12); border-color: rgba(0,192,96,.3); color: var(--av-green); }
.av-act--account:hover .av-act__label { color: var(--av-green); }

/* Cart — always solid green pill, DIFFERENT from others */
.av-act--cart {
    flex-direction: row;
    gap: 8px;
    padding: 0 18px;
    height: 40px;
    min-width: auto;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--av-green);
    border: 2px solid var(--av-green);
    color: #fff;
    letter-spacing: 0;
    align-items: center;
}
.av-act--cart .av-act__icon {
    width: auto; height: auto; border-radius: 0;
    background: none; border: none; font-size: 16px;
    color: #fff; position: static;
}
.av-act--cart .av-act__label {
    font-size: 14px; font-weight: 600; color: #fff;
    text-transform: none; letter-spacing: 0;
}
.av-act--cart:hover {
    background: var(--av-green-dark);
    border-color: var(--av-green-dark);
}
.av-act--cart:hover .av-act__icon { transform: none; background: none; border: none; color: #fff; }
.av-act--cart:hover .av-act__label { color: #fff; }

/* Cart count bubble inside icon */
.av-cart-count {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 17px; height: 17px;
    background: var(--av-red);
    color: #fff; border-radius: 50%;
    font-size: 9px; font-weight: 800;
    display: none; align-items: center; justify-content: center;
    padding: 0 3px; line-height: 1;
    border: 1.5px solid var(--av-black);
}
.av-act--cart .av-cart-count {
    position: static;
    background: rgba(255,255,255,.25);
    border: none;
    border-radius: 50px;
    min-width: 18px; height: 18px;
    font-size: 10px; padding: 0 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV ROW (Row 3 — inside same .av-container as rows above)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-nav {
    height: var(--nav-h);
    border-top: 1px solid rgba(255,255,255,.05);
    display: flex;
    align-items: center;
}
.av-nav__list {
    display: flex; align-items: center;
    height: 100%; gap: 2px; margin: 0;
}
.av-nav__item { position: relative; height: 100%; display: flex; align-items: center; }
.av-nav__link {
    display: flex; align-items: center; gap: 5px;
    padding: 0 14px; height: 32px; margin: auto 0;
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,.62);
    border-radius: 50px;
    transition: var(--av-trans);
    letter-spacing: .15px; white-space: nowrap;
}
.av-nav__link:hover { color: #fff; background: rgba(255,255,255,.07); }
.av-nav__link i { font-size: 9px; color: rgba(255,255,255,.35); transition: transform .2s; }
.av-nav__item--drop:hover .av-nav__link i,
.av-nav__item--drop.has-drop .av-nav__link i { transform: rotate(180deg); color: var(--av-green); }
.av-nav__item--drop:hover > .av-nav__link,
.av-nav__item--drop.has-drop > .av-nav__link { color: #fff; }
.av-nav__item--sale .av-nav__link { color: var(--av-red); }
.av-nav__item--sale .av-nav__link:hover { color: #ff7070; background: rgba(239,68,68,.1); }
.av-nav__badge { background: var(--av-red); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; animation: avPulse 2s infinite; }
@keyframes avPulse { 0%,100%{box-shadow:0 0 0 0 rgba(239,68,68,.4)}50%{box-shadow:0 0 0 4px rgba(239,68,68,0)} }

/* Mega dropdown */
.av-drop {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(10,10,16,.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.09);
    border-top: 2px solid var(--av-green);
    border-radius: 0 0 16px 16px;
    min-width: 500px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 999;
    box-shadow: 0 24px 60px rgba(0,0,0,.65);
}
.av-nav__item--drop:hover .av-drop,
.av-nav__item--drop.has-drop .av-drop {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.av-drop__inner { display: flex; padding: 24px 8px; }
.av-drop__col { flex: 1; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.06); }
.av-drop__col:last-child { border-right: none; }
.av-drop__heading, .av-drop__col h4, .av-drop__col p.av-drop__heading {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.4px; color: var(--av-green); margin-bottom: 12px; display: block;
}
.av-drop__col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); padding: 5px 0; transition: var(--av-trans); border-radius: 4px; }
.av-drop__col a:hover { color: #fff; padding-left: 6px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CART SLIDE-IN DRAWER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Cart drawer — also above backdrop */
.av-cart-drawer {
    position: fixed; top: 0; right: -420px;
    width: 400px; max-width: 100vw; height: 100%;
    background: #111116;
    z-index: 9999;     /* same level as mobile menu — only one open at a time */
    display: flex; flex-direction: column;
    box-shadow: -4px 0 60px rgba(0,0,0,.7);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.av-cart-drawer.open { right: 0; }
.av-cart-drawer__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px 18px; border-bottom: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
}
.av-cart-drawer__title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: #fff; }
.av-cart-drawer__title i { color: var(--av-green); font-size: 17px; }
.av-cart-drawer__count { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.38); margin-left: 6px; }
.av-cart-drawer__close { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--av-trans); }
.av-cart-drawer__close:hover { background: rgba(239,68,68,.2); color: var(--av-red); }
.av-cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 0; }
.av-cart-drawer__body::-webkit-scrollbar { width: 4px; }
.av-cart-drawer__body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }
.av-cart-drawer__empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 32px; text-align: center; height: 100%; }
.av-cart-drawer__empty-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 30px; color: rgba(255,255,255,.2); margin-bottom: 20px; }
.av-cart-drawer__empty-title { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.av-cart-drawer__empty-sub { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 28px; line-height: 1.6; }
.av-cart-drawer__items { padding: 0 16px; display: flex; flex-direction: column; gap: 10px; }
.av-cart-drawer__item { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; }
.av-cart-drawer__item-img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: rgba(255,255,255,.05); }
.av-cart-drawer__item-info { flex: 1; min-width: 0; }
.av-cart-drawer__item-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.av-cart-drawer__item-price { font-size: 14px; font-weight: 700; color: var(--av-green); }
.av-cart-drawer__item-qty { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px; }
.av-cart-drawer__foot { padding: 16px 20px 20px; border-top: 1px solid rgba(255,255,255,.07); flex-shrink: 0; }
.av-cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,.55); }
.av-cart-drawer__subtotal span:last-child { font-size: 18px; font-weight: 800; color: #fff; }
.av-cart-drawer__checkout { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--av-green); color: #fff; border-radius: 50px; font-size: 14px; font-weight: 700; transition: var(--av-trans); margin-bottom: 10px; }
.av-cart-drawer__checkout:hover { background: var(--av-green-dark); color: #fff; transform: translateY(-1px); }
.av-cart-drawer__express { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 50px; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500; transition: var(--av-trans); }
.av-cart-drawer__express:hover { background: rgba(255,255,255,.1); color: #fff; }
.av-cart-drawer__shop-btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 24px; border-radius: 50px; background: var(--av-green); color: #fff; font-size: 14px; font-weight: 700; transition: var(--av-trans); }
.av-cart-drawer__shop-btn:hover { background: var(--av-green-dark); color: #fff; }

/* Shared backdrop — z-index BELOW all drawers so it never blurs them */
.av-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9000;              /* below menu (9999) and cart (10001) */
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    /* NO backdrop-filter here — it would blur the drawer panels above */
}
.av-backdrop.open { opacity: 1; visibility: visible; }
/* Legacy overlay — same fix */
.av-mob-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9000;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    /* NO backdrop-filter */
}
.av-mob-overlay.open { opacity: 1; visibility: visible; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE DRAWER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Mobile menu — z-index ABOVE backdrop (9000) */
.av-mob { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: #0d0d12; z-index: 9999; display: flex; flex-direction: column; box-shadow: 4px 0 48px rgba(0,0,0,.7); overflow-y: auto; transition: left .32s cubic-bezier(.4,0,.2,1); will-change: transform; -webkit-overflow-scrolling: touch; }
.av-mob.open { left: 0; }
.av-mob__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
.av-mob__close { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--av-trans); }
.av-mob__close:hover { background: rgba(239,68,68,.2); color: var(--av-red); }
.av-mob__list { flex: 1; padding: 8px 0; }
.av-mob__list li a { display: flex; align-items: center; gap: 12px; padding: 13px 22px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.04); transition: var(--av-trans); }
.av-mob__list li a i { width: 18px; color: var(--av-green); opacity: .8; }
.av-mob__list li a:hover { background: rgba(255,255,255,.04); color: #fff; padding-left: 28px; }
.av-mob__list li a:hover i { opacity: 1; }
.av-mob__list li.sale a { color: var(--av-red); }
.av-mob__list li.sale a i { color: var(--av-red); }
.av-mob__foot { display: flex; border-top: 1px solid rgba(255,255,255,.06); }
.av-mob__foot a { flex: 1; text-align: center; padding: 16px 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); display: flex; flex-direction: column; align-items: center; gap: 5px; transition: var(--av-trans); border-right: 1px solid rgba(255,255,255,.05); }
.av-mob__foot a:last-child { border-right: none; }
.av-mob__foot a i { font-size: 20px; color: var(--av-green); }
.av-mob__foot a:hover { color: rgba(255,255,255,.85); background: rgba(255,255,255,.04); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE PUSH
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#maincontent, .page-main { margin-top: var(--hdr-total) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SLIDER — taller, full bleed
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-hero {
    position: relative; width: 100%; overflow: hidden;
    background: var(--av-dark);
    aspect-ratio: 16 / 5.2;
    min-height: 560px;
    max-height: 920px;
}
/* Bottom wave fade */
.av-hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,10,20,.72) 55%, #0a0a14 100%);
    z-index: 5;
    pointer-events: none;
}
.av-hero__slides { display: flex; height: 100%; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.av-hero__slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; overflow: hidden; }
.av-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.av-hero__overlay { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(10,10,15,.92) 0%, rgba(10,10,15,.45) 55%, transparent 100%); }
.av-hero__content { position: relative; z-index: 2; max-width: 580px; padding: 0 72px; color: #fff; }
.av-hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,192,96,.12); border: 1px solid rgba(0,192,96,.30);
    color: var(--av-green); font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.av-hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--av-green); animation: avBlink 1.8s infinite; }
@keyframes avBlink { 0%,100%{opacity:1}50%{opacity:.3} }
.av-hero__title { font-size: clamp(34px,5.5vw,70px); font-weight: 900; line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 16px; }
.av-hero__title span { color: var(--av-green); }
.av-hero__sub { font-size: 16px; opacity: .75; margin-bottom: 32px; line-height: 1.65; }
.av-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.av-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-size: 14px; font-weight: 700; transition: var(--av-trans); white-space: nowrap; cursor: pointer; }
.av-btn--green { background: var(--av-green); color: #000; font-weight: 800; box-shadow: 0 4px 18px rgba(0,192,96,.38); }
.av-btn--green:hover { background: #00e070; color: #000; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,192,96,.55); }
.av-btn--outline { background: rgba(255,255,255,.07); color: #fff; border: 1.5px solid rgba(255,255,255,.38); }
.av-btn--outline:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.65); transform: translateY(-2px); }
.av-hero__prev, .av-hero__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.09); color: #fff; font-size: 14px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.14); transition: var(--av-trans); backdrop-filter: blur(8px); }
.av-hero__prev { left: 24px; }
.av-hero__next { right: 88px; }
.av-hero__prev:hover, .av-hero__next:hover { background: var(--av-green); border-color: var(--av-green); transform: translateY(-50%) scale(1.1); }
.av-hero__dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.av-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: var(--av-trans); }
.av-hero__dot.active { background: var(--av-green); width: 24px; border-radius: 4px; }
.av-hero__thumbs { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px; z-index: 10; }
.av-hero__thumb { width: 60px; height: 60px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid rgba(255,255,255,.13); opacity: .5; transition: var(--av-trans); }
.av-hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
.av-hero__thumb.active { border-color: var(--av-green); opacity: 1; }
.av-hero__thumb:hover { opacity: .88; }

/* ── Force link colors inside NA section (beats Magento specificity) ── */
.av-na a, .av-na a:link, .av-na a:visited, .av-na__name, .av-na__name:link, .av-na__name:visited, .av-na__atc-btn { color: inherit !important; text-decoration: none !important; }
.av-na__opts-btn, .av-na__view-btn { text-decoration: none !important; }
.av-na a:focus, .av-na a:active, .av-na a:hover { outline: none !important; box-shadow: none !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NEW ARRIVALS SECTION  (PDP-matching design)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-na {
    padding: 64px 0 56px;
    background: #f4f5f7;
    width: 100%;
}

/* Section header */
.av-na__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}
.av-na__eyebrow {
    display: block;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--av-green);
    margin-bottom: 7px;
}
.av-na__title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: #0a0a14;
    letter-spacing: -.6px;
    margin: 0;
    line-height: 1.06;
}
.av-na__title span { color: var(--av-green); }
.av-na__more {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700;
    color: var(--av-green-dark);
    border: 1.5px solid #d1fae5;
    background: #fff;
    padding: 10px 22px; border-radius: 50px;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.av-na__more:hover {
    background: var(--av-green); color: #fff;
    border-color: var(--av-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,192,96,.32);
}
.av-na__more i { transition: transform .2s; }
.av-na__more:hover i { transform: translateX(4px); }

/* Product grid */
.av-na__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    perspective: 1200px;
    align-items: stretch;
}
}

.av-na__card {
    background: #fff;
    border-radius: 18px;
    /* Use clip-path for rounded corners — overflow:hidden breaks transform-style:preserve-3d */
    overflow: visible;
    clip-path: inset(0px round 18px);
    border: 1.5px solid #f1f3f5;
    box-shadow: 0 2px 16px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
    transform: translateY(0) rotateX(0deg) translateZ(0);
    will-change: transform, box-shadow;
    transition:
        transform .5s cubic-bezier(.23,1,.32,1),
        box-shadow .5s cubic-bezier(.23,1,.32,1),
        border-color .3s ease,
        clip-path .5s cubic-bezier(.23,1,.32,1);
    display: flex;
    flex-direction: column;
    position: relative;
}
/* Snake neon border animation on hover */
.av-na__card::before,
.av-na__card::after {
    content: '';
    position: absolute;
    border-radius: 18px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity .3s;
}
/* The snake track — a single rotating conic-gradient border */
.av-na__card::before {
    inset: -2px;
    background: conic-gradient(
        from var(--av-snake-angle, 0deg),
        transparent 0deg,
        transparent 200deg,
        #00ff88 220deg,
        #00c060 260deg,
        #00ff88 280deg,
        transparent 300deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    border-radius: 20px;
}
.av-na__card:hover::before {
    opacity: 1;
    animation: avSnake 1.8s linear infinite;
}
/* Subtle green glow layer on hover */
.av-na__card:hover {
    transform: translateY(-9px) rotateX(5deg) scale(1.012) translateZ(0);
    box-shadow:
        0 26px 60px rgba(0,0,0,.14),
        0 10px 24px rgba(0,0,0,.07),
        0 0 0 1.5px rgba(0,192,96,.25),
        0 0 36px rgba(0,255,136,.08);
    border-color: transparent;
    clip-path: inset(0px round 18px);
}
@keyframes avSnake {
    0%   { --av-snake-angle: 0deg;   }
    100% { --av-snake-angle: 360deg; }
}
@property --av-snake-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

/* ── 3D disabled (admin toggle off) ── */
.av-na--no3d .av-na__card {
    transform: translateY(0) !important;
    will-change: auto !important;
    transition:
        box-shadow .32s ease,
        border-color .3s ease,
        transform .32s ease !important;
}
.av-na--no3d .av-na__card:hover {
    transform: translateY(-7px) !important;
    box-shadow:
        0 18px 42px rgba(0,0,0,.11),
        0 0 0 1.5px rgba(0,192,96,.2) !important;
}
.av-na--no3d .av-na__grid {
    perspective: none !important;
}


/* Card image */
.av-na__img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    border-radius: 18px 18px 0 0;
}
.av-na__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    display: block;
}
.av-na__card:hover .av-na__img { transform: scale(1.07); }
.av-na__img-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: #d1d5db;
}

/* Badges */
.av-na__badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex; flex-direction: column; gap: 5px;
    z-index: 2;
}
.av-na__badge {
    display: inline-block;
    font-size: 9.5px; font-weight: 800;
    letter-spacing: .5px; text-transform: uppercase;
    padding: 3px 9px; border-radius: 50px;
    line-height: 1.5;
}
.av-na__badge--new  { background: var(--av-green); color: #000; font-weight: 900; box-shadow: 0 2px 8px rgba(0,192,96,.3); }
.av-na__badge--sale { background: var(--av-red); color: #fff; }
.av-na__badge--opts { background: #0a0a14; color: #fff; }

/* Card info panel */
.av-na__info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.av-na__name {
    font-size: 14px; font-weight: 700;
    color: #0a0a14;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    text-decoration: none;
    transition: color .18s;
}
.av-na__name:hover { color: var(--av-green); }
.av-na__price-row {
    display: flex; align-items: center; gap: 9px;
}
.av-na__price {
    font-size: 18px; font-weight: 900;
    color: #0a0a14;
    letter-spacing: -.4px;
}
.av-na__old-price {
    font-size: 13px; color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

/* ── Action buttons ── */
.av-na__actions { margin-top: auto; display: flex; gap: 8px; }

/* Add to Cart — green pill with shimmer */
.av-na__atc-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00d26a 0%, #00b855 100%);
    color: #000 !important;
    font-size: 12px; font-weight: 800;
    border: none; cursor: pointer;
    text-decoration: none !important;
    transition: all .2s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 3px 12px rgba(0,192,96,.30);
    letter-spacing: .2px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.av-na__atc-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%; height: 200%;
    background: rgba(255,255,255,.22);
    transform: skewX(-20deg);
    transition: left .35s ease;
}
.av-na__atc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,192,96,.44);
    color: #000 !important;
    background: linear-gradient(135deg, #00e070 0%, #00c860 100%);
}
.av-na__atc-btn:hover::after { left: 120%; }
.av-na__atc-btn i { font-size: 12px; }

/* Select Options — dark outlined pill, bg-fade on hover */
.av-na__opts-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 14px;
    border-radius: 50px;
    background: transparent;
    color: #0a0a14;
    font-size: 12px; font-weight: 800;
    border: 1.5px solid #0a0a14;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .25s ease, color .25s ease,
                transform .25s ease, box-shadow .25s ease;
    letter-spacing: .2px;
    white-space: nowrap;
    position: relative;
    overflow: visible;
}
.av-na__opts-btn:hover,
.av-na__opts-btn:focus {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(0,0,0,.25);
    text-decoration: none !important;
}
.av-na__opts-btn i { font-size: 12px; color: inherit; }

/* Legacy single-btn fallback */
.av-na__view-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--av-green);
    color: #000;
    font-size: 13px; font-weight: 800;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 3px 14px rgba(0,192,96,.28);
}
.av-na__view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,192,96,.42);
    color: #000;
    background: #00e070;
}

/* Legacy .av-deals / .av-pcard kept for any old CMS blocks */
.av-deals { padding: 56px 28px 44px; background: #fff; width: 100%; }
.av-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; max-width: 1380px; margin-left: auto; margin-right: auto; }
.av-section-title { font-size: clamp(20px,2.8vw,30px); font-weight: 800; color: var(--av-text); letter-spacing: -.5px; }
.av-section-title span { color: var(--av-green); }
.av-section-more { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--av-green-dark); transition: var(--av-trans); }
.av-section-more:hover { gap: 10px; color: var(--av-green); }
.av-deals__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 1380px; margin: 0 auto; }
.av-pcard { border-radius: var(--av-radius); overflow: hidden; background: var(--av-gray-lighter); position: relative; cursor: pointer; transition: var(--av-trans); aspect-ratio: 3/4; display: block; }
.av-pcard:hover { transform: translateY(-5px); box-shadow: var(--av-shadow-lg); }
.av-pcard__img-wrap { position: absolute; inset: 0; overflow: hidden; }
.av-pcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.av-pcard:hover .av-pcard__img { transform: scale(1.06); }
.av-pcard__badge { position: absolute; top: 12px; right: 12px; background: var(--av-dark); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 50px; z-index: 2; }
.av-pcard__badge--red   { background: var(--av-red); }
.av-pcard__badge--green { background: var(--av-green); }
.av-pcard__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 45px 14px 14px; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 100%); color: #fff; z-index: 2; }
.av-pcard__name { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px; }
.av-pcard__prices { display: flex; align-items: center; gap: 8px; }
.av-pcard__price { font-size: 16px; font-weight: 800; }
.av-pcard__price-old { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: line-through; }
.av-pcard__add { position: absolute; bottom: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: var(--av-green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; z-index: 3; opacity: 0; transform: scale(.75); transition: var(--av-trans); }
.av-pcard:hover .av-pcard__add { opacity: 1; transform: scale(1); }
.av-promo-strip { background: var(--av-green); color: #fff; padding: 16px 0; text-align: center; font-size: 15px; font-weight: 600; width: 100%; }
.av-promo-strip strong { font-weight: 900; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY US — trust badges (PDP-matching dark theme strip)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-why {
    padding: 0;
    background: #0a0a14;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.av-why__inner {
    max-width: 1380px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.av-why__item {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .22s;
}
.av-why__item:last-child { border-right: none; }
.av-why__item:hover { background: rgba(255,255,255,.04); }
.av-why__icon {
    width: 44px; height: 44px;
    background: rgba(0,192,96,.12);
    border: 1px solid rgba(0,192,96,.22);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; color: var(--av-green);
    flex-shrink: 0;
}
.av-why__body {}
.av-why__title {
    font-size: 13.5px; font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: -.1px;
}
.av-why__text {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORIES — full width (PDP-matching)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-cats {
    padding: 64px 0 60px;
    background: #fff;
    width: 100%;
}
.av-cats .av-container { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.av-cats__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 32px;
}
.av-cats__eyebrow {
    display: block;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--av-green); margin-bottom: 7px;
}
.av-cats__title {
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 900; color: #0a0a14;
    letter-spacing: -.5px; margin: 0;
    line-height: 1.06;
}
.av-cats__title span { color: var(--av-green); }
.av-cats__more {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700;
    color: var(--av-green-dark);
    border: 1.5px solid #d1fae5;
    background: #f0fdf4;
    padding: 10px 22px; border-radius: 50px;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}
.av-cats__more:hover {
    background: var(--av-green); color: #fff;
    border-color: var(--av-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,192,96,.3);
}
.av-cats__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.av-cat {
    border-radius: 18px; overflow: hidden; position: relative;
    aspect-ratio: 4/5; cursor: pointer; display: block;
    transition: transform .24s cubic-bezier(.4,0,.2,1), box-shadow .24s;
    background: var(--av-gray-lighter);
    border: 1.5px solid #f1f3f5;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.av-cat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,.14);
    border-color: transparent;
}
.av-cat__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.av-cat:hover .av-cat__img { transform: scale(1.08); }
.av-cat__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,20,.88) 0%, rgba(10,10,20,.2) 50%, transparent 100%);
}
.av-cat__label { position: absolute; bottom: 18px; left: 16px; right: 16px; color: #fff; z-index: 2; }
.av-cat__label strong {
    display: block; font-size: 15px; font-weight: 800;
    letter-spacing: -.2px; margin-bottom: 3px;
}
.av-cat__label small { font-size: 11px; opacity: .65; }
/* Arrow on hover */
.av-cat::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    border-radius: 18px;
    border: 2px solid transparent;
    transition: border-color .24s;
}
.av-cat:hover::after { border-color: var(--av-green); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.av-footer { background: var(--av-black); color: rgba(255,255,255,.72); }
.av-footer__main { padding: 56px 0 40px; }
.av-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: 44px; }
.av-footer__logo { margin-bottom: 14px; }
.av-footer__logo a { display: inline-flex; }
.av-footer__logo .av-logo__alter { color: #fff; font-size: 26px; }
.av-footer__logo .av-logo__vape  { color: var(--av-green); font-size: 26px; }
.av-footer__tagline { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.42); margin-bottom: 22px; }
.av-footer__social { display: flex; gap: 10px; }
.av-footer__social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.5); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: var(--av-trans); }
.av-footer__social-link:hover { background: var(--av-green); border-color: var(--av-green); color: #fff; transform: translateY(-2px); }
.av-footer__col-title { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,.9); margin-bottom: 18px; }
.av-footer__links { display: flex; flex-direction: column; gap: 10px; }
.av-footer__links a { font-size: 13.5px; color: rgba(255,255,255,.44); transition: var(--av-trans); }
.av-footer__links a:hover { color: var(--av-green); padding-left: 4px; }
.av-footer__nl-text { font-size: 13px; color: rgba(255,255,255,.44); margin-bottom: 14px; line-height: 1.65; }
.av-footer__nl-wrap { display: flex; border-radius: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05); }
.av-footer__nl-input { flex: 1; background: transparent !important; border: none !important; padding: 11px 16px; font-size: 13px; color: rgba(255,255,255,.85); outline: none !important; }
.av-footer__nl-input::placeholder { color: rgba(255,255,255,.28); }
.av-footer__nl-btn { background: var(--av-green); color: #fff; border: none; padding: 11px 20px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: var(--av-trans); }
.av-footer__nl-btn:hover { background: var(--av-green-dark); }
.av-footer__slogan { margin-top: 28px; opacity: .06; pointer-events: none; line-height: 1.15; }
.av-footer__slogan span { display: block; font-size: 17px; font-weight: 900; text-transform: uppercase; letter-spacing: -.3px; color: #fff; }
.av-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 16px 0; }
.av-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.av-footer__delivery { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.38); }
.av-footer__badge { background: rgba(255,255,255,.07); color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; border: 1px solid rgba(255,255,255,.1); }
.av-footer__copy { font-size: 12px; color: rgba(255,255,255,.32); text-align: center; }
.av-footer__pay { display: flex; align-items: center; gap: 8px; }
.av-footer__pay i { font-size: 26px; color: rgba(255,255,255,.45); transition: color .2s; }
.av-footer__pay i:hover { color: rgba(255,255,255,.85); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* 1280px */
@media (max-width: 1280px) {
    .av-deals__grid { grid-template-columns: repeat(3,1fr); }
    .av-na__grid    { grid-template-columns: repeat(3,1fr); }
    .av-cats__grid  { grid-template-columns: repeat(4,1fr); }
    .av-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .av-why__inner  { grid-template-columns: repeat(4, 1fr); }
}

/* 1100px — compact action buttons */
@media (max-width: 1100px) {
    .av-act__label { display: none; }
    .av-act--cart .av-act__label { display: block; }
    .av-act { min-width: auto; }
    .av-search { max-width: none; }
}

/* 1024px — hide desktop nav */
@media (max-width: 1024px) {
    .av-nav { display: none !important; }
    :root { --hdr-total: calc(var(--topbar-h) + var(--header-h)); }
    .av-hero { aspect-ratio: 16/7; min-height: 440px; }
}

/* 900px */
@media (max-width: 900px) {
    .av-deals__grid { grid-template-columns: repeat(2,1fr); }
    .av-na__grid    { grid-template-columns: repeat(2,1fr); }
    .av-cats__grid  { grid-template-columns: repeat(3,1fr); }
    .av-hero__thumbs { display: none; }
    .av-hero__next { right: 24px; }
    .av-why__inner  { grid-template-columns: repeat(2, 1fr); }
    .av-why__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
    .av-why__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
    .av-why__item:last-child, .av-why__item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* 768px — mobile */
@media (max-width: 768px) {
    /* Show hamburger */
    .av-hamburger { display: flex; }

    /* Action button labels hidden completely */
    .av-act__label { display: none !important; }
    .av-act--cart .av-act__label { display: none !important; }
    .av-act--cart {
        padding: 0 14px; height: 38px; gap: 6px;
        font-size: 13px;
    }
    .av-act { min-width: auto; padding: 0 2px; }
    .av-act__icon { width: 36px; height: 36px; font-size: 14px; }

    /* Hide account on mobile */
    .av-act--account { display: none; }

    /* Mobile search row */
    :root {
        --mob-search-h: 54px;
        --hdr-total: calc(var(--topbar-h) + var(--header-h) + var(--mob-search-h));
    }
    .av-header__mob-search {
        display: flex; padding: 8px 14px 10px;
        background: var(--av-black);
        border-top: 1px solid rgba(255,255,255,.05);
    }
    .av-header__mob-search .av-search__form {
        flex: 1; height: 40px;
        background: rgba(255,255,255,.08);
        border: 1.5px solid rgba(255,255,255,.10);
        border-radius: 50px;
        display: flex; align-items: center;
        padding: 0 6px 0 16px;
        transition: border-color .2s;
    }
    .av-header__mob-search .av-search__form:focus-within { border-color: var(--av-green); background: rgba(255,255,255,.10); }
    .av-header__mob-search .av-search__icon { color: rgba(255,255,255,.38); font-size: 13px; margin-right: 10px; }
    .av-header__mob-search .av-search__form:focus-within .av-search__icon { color: var(--av-green); }
    .av-header__mob-search .av-search__input { flex: 1; border: none !important; background: transparent !important; font-size: 14px; color: rgba(255,255,255,.88); caret-color: var(--av-green); }
    .av-header__mob-search .av-search__input::placeholder { color: rgba(255,255,255,.3); }
    .av-header__mob-search .av-search__btn { width: 30px; height: 30px; border-radius: 50%; background: var(--av-green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; }

    /* Hide desktop search */
    .av-search--desktop { display: none !important; }

    /* Hero */
    .av-hero { aspect-ratio: 16/9; min-height: 300px; }
    .av-hero__content { padding: 0 28px; max-width: 100%; }

    /* Sections */
    .av-deals, .av-cats { padding-left: 16px; padding-right: 16px; }
    .av-na { padding: 40px 0 36px; }
    .av-na .av-container { padding-left: 16px; padding-right: 16px; }
    .av-why__inner { padding: 0 8px; }
    .av-why__item { padding: 18px 16px; gap: 12px; }
    .av-footer__grid { grid-template-columns: 1fr 1fr; }
    .av-footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }

    /* Topbar: hide right on small screens */
    .av-topbar__right { display: none; }

    /* Cart drawer full width */
    .av-cart-drawer { width: 100%; right: -100%; }
    .av-cart-drawer.open { right: 0; }
}

/* 580px */
@media (max-width: 580px) {
    .av-deals__grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .av-na__grid    { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .av-cats__grid  { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .av-why__inner  { grid-template-columns: 1fr; }
    .av-why__item   { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07) !important; }
    .av-why__item:last-child { border-bottom: none !important; }
    .av-hero__title { font-size: 26px; letter-spacing: -1px; }
    .av-hero        { aspect-ratio: 4/3; min-height: 260px; }
    .av-footer__grid { grid-template-columns: 1fr; }
    .av-na__head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .av-cats__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* 400px */
@media (max-width: 400px) {
    :root { --header-h: 56px; }
    .av-logo__alter, .av-logo__vape { font-size: 19px; }
    .av-hero__prev, .av-hero__next { width: 38px; height: 38px; font-size: 13px; }
}

/* ══════════════════════════════════════════════════════
   NEW ARRIVALS – Add-to-cart button states
   ══════════════════════════════════════════════════════ */

/* Loading spinner inside add button */
.av-atc-btn--loading { cursor: wait !important; background: var(--av-green) !important; opacity: 1 !important; transform: scale(1) !important; }
.av-atc-btn--loading .fa-spinner { animation: av-spin .7s linear infinite; }

/* Done (success) state */
.av-atc-btn--done { background: #22c55e !important; }

/* Always visible on hover */
.av-pcard:hover .av-atc-btn { opacity: 1; transform: scale(1); }

/* Placeholder image */
.av-pcard__img--placeholder { background: var(--av-gray-light); display: flex; align-items: center; justify-content: center; }
.av-pcard__img--placeholder::after { content: '\f03e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 32px; color: var(--av-gray); }

/* Spinner keyframes (reuse if not already defined) */
@keyframes av-spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════════════════════ */
.av-atc-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 9999;
    background: var(--av-dark, #111);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s;
    opacity: 0;
}
.av-atc-toast--show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.av-atc-toast--success .fa-check-circle { color: #22c55e; }
.av-atc-toast--error   .fa-exclamation-circle { color: #ef4444; }








/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP) — v4  Modern, Clean & Customer-Friendly
   ══════════════════════════════════════════════════════════════ */

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes pdp-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pdp-img-in {
    from { opacity: 0; transform: scale(.96); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes pdp-chip-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
    55%     { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
}
@keyframes pdp-badge-bounce {
    0%,100% { transform: translateY(0) scale(1); }
    40%     { transform: translateY(-5px) scale(1.06); }
}
@keyframes pdp-shimmer {
    from { left: -100%; }
    to   { left: 120%; }
}
@keyframes pdp-spin {
    to { transform: rotate(360deg); }
}
@keyframes pdp-toast-in {
    from { transform: translateX(-50%) translateY(120%); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.pdp-crumb {
    background: #fff;
    padding: 11px 0;
    border-bottom: 1px solid #f0f0f2;
}
.pdp-crumb__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 4px; font-size: 12.5px;
}
.pdp-crumb__list li { display: flex; align-items: center; gap: 4px; }
.pdp-crumb__list a  { color: #9ca3af; transition: color .15s; }
.pdp-crumb__list a:hover { color: #22c55e; }
.pdp-crumb__list span[aria-hidden] { color: #d1d5db; font-size: 10px; }
.pdp-crumb__list .current { color: #1a1a2e; font-weight: 700; }

/* ── Main section wrapper ───────────────────────────────────── */
.pdp-main {
    background: #f4f5f7;
    padding: 28px 0 60px;
    min-height: 60vh;
}
.pdp-main__grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 36px;
    align-items: start;
}
/* Right column wrapper — stacks info panel + payment security */
.pdp-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LEFT — GALLERY
   ═══════════════════════════════════════════════════════════════ */
.pdp-gallery {
    position: sticky;
    top: calc(var(--hdr-total, 140px) + 14px);
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: pdp-fade-up .4s ease both;
}

/* Inner row: thumbs strip + main stage */
.pdp-gallery__inner {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

/* Thumbnail strip */
.pdp-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 72px;
    flex-shrink: 0;
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}
.pdp-gallery__thumbs::-webkit-scrollbar       { width: 3px; }
.pdp-gallery__thumbs::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }

.pdp-gallery__thumb {
    width: 72px; height: 72px;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 4px;
    transition: border-color .2s, transform .18s, box-shadow .2s;
}
.pdp-gallery__thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}
.pdp-gallery__thumb:hover {
    border-color: #22c55e;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(34,197,94,.22);
}
.pdp-gallery__thumb.is-active {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
}

/* Main stage */
.pdp-gallery__stage {
    position: relative;
    flex: 1;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 26px rgba(0,0,0,.08);
    aspect-ratio: 1/1;
    max-width: 490px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: crosshair;
}
.pdp-gallery__stage::after {
    content: '';
    position: absolute;
    top: 0; width: 40%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.3), transparent);
    pointer-events: none;
    left: -100%;
}
.pdp-gallery__stage:hover::after { animation: pdp-shimmer .65s ease forwards; }

.pdp-gallery__main-img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: opacity .25s ease, transform .25s ease;
    animation: pdp-img-in .38s ease both;
    padding: 10px;
}
.pdp-gallery__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px; color: #e5e7eb;
}

/* Badges */
.pdp-gallery__badges {
    position: absolute;
    top: 11px; left: 11px;
    display: flex; flex-direction: column; gap: 6px; z-index: 3;
}
.pdp-badge {
    display: inline-block;
    font-size: 9px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px;
}
.pdp-badge--sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 3px 10px rgba(239,68,68,.4);
}
.pdp-badge--oos {
    background: #6b7280; color: #fff;
}
.pdp-badge--new {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 3px 10px rgba(34,197,94,.4);
    animation: pdp-badge-bounce 3s ease-in-out infinite;
}

/* Magnifier lens — 240px diameter */
.pdp-gallery__lens {
    display: none;
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.95);
    box-shadow: 0 0 0 2px rgba(34,197,94,.6), 0 12px 40px rgba(0,0,0,.32);
    background: #fff no-repeat;
    background-origin: border-box;
    pointer-events: none;
    z-index: 10;
    transition: opacity .12s;
    opacity: 0;
    outline: 2px solid rgba(34,197,94,.18);
    outline-offset: 4px;
}
.pdp-gallery__lens::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.26) 0%, transparent 65%);
    pointer-events: none;
}
.pdp-gallery__lens.is-active {
    display: block;
    opacity: 1;
}

/* Zoom hint icon (cosmetic only — no click action) */
.pdp-gallery__zoom-hint {
    position: absolute; bottom: 10px; right: 10px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.85);
    border: 1px solid #e9ecef;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #6b7280;
    opacity: 0; transition: opacity .2s;
    pointer-events: none; /* no click */ z-index: 3;
}
.pdp-gallery__stage:hover .pdp-gallery__zoom-hint { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   PAYMENT & SECURITY BOX
   ═══════════════════════════════════════════════════════════════ */
.pdp-payment-security {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 20px 22px 18px;
    animation: pdp-fade-up .5s .12s ease both;
}
.pdp-payment-security__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.pdp-payment-security__title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.2px;
}
.pdp-payment-security__lock {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    display: flex; align-items: center; justify-content: center;
    color: #16a34a; font-size: 13px;
}
.pdp-payment-security__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.pdp-pay-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 38px;
    background: #fff;
    border: 1.5px solid #e9ecef;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    overflow: hidden;
    padding: 4px;
    transition: border-color .18s, box-shadow .18s;
}
.pdp-pay-card:hover {
    border-color: #22c55e;
    box-shadow: 0 2px 8px rgba(34,197,94,.18);
}
.pdp-pay-card svg {
    width: 100%; height: 100%;
    display: block;
}
.pdp-payment-security__text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RIGHT — INFO PANEL
   ═══════════════════════════════════════════════════════════════ */
.pdp-info {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: pdp-fade-up .48s .07s ease both;
    /* more vertical feel: increase row gaps and internal spacing */
    row-gap: 0;
}

/* Dark header */
.pdp-info__header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f3460 100%);
    padding: 22px 26px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.pdp-info__name {
    font-size: 22px; font-weight: 800; color: #fff;
    line-height: 1.22; margin: 0; letter-spacing: -.3px;
    flex: 1; text-shadow: 0 1px 4px rgba(0,0,0,.28);
}
.pdp-info__header-actions { display: flex; gap: 8px; flex-shrink: 0; margin-top: 2px; }
.pdp-icon-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.68);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; cursor: pointer; transition: all .2s;
}
.pdp-icon-btn:hover {
    background: rgba(34,197,94,.22);
    border-color: #22c55e;
    color: #22c55e;
    transform: scale(1.1);
}

/* ── Separator / divider ─────────────────────────────────────── */
.pdp-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef 20%, #e9ecef 80%, transparent);
    margin: 18px 24px;
    flex-shrink: 0;
}
/* Special rainbow divider under header */
.pdp-info__header + .pdp-divider {
    height: 3px;
    background: linear-gradient(90deg, #ef4444 0%, #f97316 33%, #facc15 66%, #22c55e 100%);
    margin: 0;
    border-radius: 0;
}

/* Info body */
.pdp-info__body-inner { padding: 18px 24px 4px; }

/* SKU + Stock */
.pdp-info__meta {
    display: flex; align-items: center;
    gap: 10px; flex-wrap: wrap;
    padding: 8px 24px;
}
.pdp-meta__sku {
    font-size: 11.5px; color: #9ca3af;
    font-family: 'SFMono-Regular', Consolas, monospace;
    letter-spacing: .3px;
}
.pdp-stock {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 700;
    padding: 3px 11px; border-radius: 50px; letter-spacing: .3px;
}
.pdp-stock--in  { background: linear-gradient(135deg,#dcfce7,#bbf7d0); color: #15803d; }
.pdp-stock--out { background: #fee2e2; color: #dc2626; }

/* ── Price block ─────────────────────────────────────────────── */
.pdp-info__price-wrap { padding: 10px 24px 6px; }
.pdp-price-row {
    display: flex; align-items: baseline;
    gap: 10px; flex-wrap: wrap;
}
.pdp-price__from {
    font-size: 11px; font-weight: 700;
    color: #9ca3af; text-transform: uppercase; letter-spacing: .5px;
    align-self: center;
}
.pdp-price__current {
    font-size: 38px; font-weight: 900;
    color: #0f172a; letter-spacing: -1.5px; line-height: 1;
}
.pdp-price__current--na { font-size: 18px; font-weight: 600; color: #9ca3af; font-style: italic; }
.pdp-price__old  { font-size: 16px; color: #9ca3af; text-decoration: line-through; font-weight: 500; align-self: center; }
.pdp-price__save {
    font-size: 12px; font-weight: 800; color: #15803d;
    background: #dcfce7; border-radius: 6px; padding: 3px 9px;
    align-self: center;
}
.pdp-price__total {
    margin-top: 6px;
    font-size: 13px; font-weight: 600; color: #22c55e;
    background: #f0fdf4; border-radius: 8px; padding: 5px 12px;
    display: inline-block;
}

/* ── Short description ───────────────────────────────────────── */
.pdp-info__short-desc {
    margin: 0 24px;
    font-size: 13.5px; color: #4b5563; line-height: 1.72;
    padding: 14px 15px;
    background: linear-gradient(135deg,#f8fafc,#f0fdf4);
    border-radius: 10px;
    border-left: 3px solid #22c55e;
}

/* ── Variant selector chips ──────────────────────────────────── */
.pdp-variants {
    display: flex; flex-direction: column; gap: 22px;
    padding: 6px 24px;
}
.pdp-variant-group { display: flex; flex-direction: column; gap: 10px; }
.pdp-variant-group__label {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 800;
    color: #6b7280; text-transform: uppercase; letter-spacing: 1px;
}
.pdp-variant-group__label::after {
    content: ''; flex: 1; height: 1px; background: #f0f0f0;
}
.pdp-variant-group__name { white-space: nowrap; }
.pdp-variant-group__selected {
    font-size: 11px; font-weight: 600; color: #9ca3af;
    text-transform: none; letter-spacing: 0;
    font-style: italic;
}
.pdp-variant-group__selected.has-value {
    color: #16a34a; font-style: normal;
}

/* Chip list */
.pdp-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* Pulse when nothing selected */
.pdp-chip-list--pulse .pdp-chip:not(.pdp-chip--oos):not(.pdp-chip--active) {
    animation: pdp-chip-pulse 1.8s ease-in-out infinite;
}
.pdp-chip-list--pulse .pdp-chip:nth-child(2) { animation-delay: .2s; }
.pdp-chip-list--pulse .pdp-chip:nth-child(3) { animation-delay: .4s; }
.pdp-chip-list--pulse .pdp-chip:nth-child(4) { animation-delay: .6s; }

/* Individual chip */
.pdp-chip {
    display: inline-flex; align-items: center;
    padding: 8px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    border: 2px solid #e5e7eb; background: #f9fafb; color: #374151;
    transition: border-color .18s, background .18s, color .18s, transform .15s, box-shadow .18s;
    user-select: none;
}
.pdp-chip:hover:not(.pdp-chip--oos):not(.pdp-chip--active) {
    border-color: #22c55e; color: #15803d;
    background: #f0fdf4; transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34,197,94,.22);
}
/* ✅ GREEN active */
.pdp-chip--active {
    border-color: #16a34a;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(34,197,94,.42);
    transform: translateY(-1px);
}
/* Out of stock */
.pdp-chip--oos {
    opacity: .32; cursor: not-allowed;
    text-decoration: line-through;
    background: #f3f4f6; font-size: 12px;
    border-color: #e5e7eb;
}

/* ── Qty + Add-to-Cart form ──────────────────────────────────── */
.pdp-form { margin: 0; }
.pdp-form__row {
    display: flex; gap: 12px;
    align-items: stretch;
    padding: 0 24px;
}
.pdp-form__secondary {
    display: flex; gap: 10px; align-items: center;
    padding: 12px 24px 4px;
}

/* Qty stepper */
.pdp-qty {
    display: flex; align-items: center;
    border: 2px solid #e5e7eb; border-radius: 13px;
    overflow: hidden; background: #f9fafb; flex-shrink: 0;
    transition: border-color .2s;
}
.pdp-qty:focus-within { border-color: #22c55e; }
.pdp-qty__btn {
    width: 42px; background: transparent; border: none;
    font-size: 17px; font-weight: 400; color: #374151;
    cursor: pointer; padding: 0; align-self: stretch;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
}
.pdp-qty__btn:hover { background: #f0fdf4; color: #22c55e; }
.pdp-qty__input {
    width: 48px; border: none;
    border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb;
    text-align: center; font-size: 15px; font-weight: 700;
    color: #0f172a; background: transparent; padding: 12px 4px;
}
.pdp-qty__input::-webkit-inner-spin-button,
.pdp-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Add to cart button */
.pdp-atc-btn {
    flex: 1; min-height: 52px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff; border: none; border-radius: 13px;
    font-size: 15px; font-weight: 800; cursor: pointer;
    padding: 0 22px;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    transition: background .22s, transform .18s, box-shadow .2s;
    letter-spacing: .3px; position: relative; overflow: hidden;
}
.pdp-atc-btn::before {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(100deg,transparent,rgba(255,255,255,.22),transparent);
    pointer-events: none;
}
.pdp-atc-btn:not(:disabled):hover::before { animation: pdp-shimmer .5s ease forwards; }
.pdp-atc-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(34,197,94,.42);
}
.pdp-atc-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(34,197,94,.3);
}
.pdp-atc-btn:disabled {
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    cursor: not-allowed; transform: none; box-shadow: none;
}
.pdp-atc-btn__inner { display: flex; align-items: center; gap: 9px; }
.pdp-atc-btn .fa-spinner { animation: pdp-spin .7s linear infinite; }

/* Secondary action buttons (wishlist, compare) */
.pdp-wl-btn, .pdp-compare-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; color: #6b7280;
    background: #f4f5f7; border-radius: 50px;
    padding: 8px 16px; border: none; cursor: pointer;
    transition: background .18s, color .18s, transform .15s;
}
.pdp-wl-btn:hover {
    background: #fdf2f8; color: #e11d7a;
    transform: translateY(-1px);
}
.pdp-compare-btn:hover {
    background: #eff6ff; color: #2563eb;
    transform: translateY(-1px);
}
.pdp-wl-btn i, .pdp-compare-btn i { font-size: 14px; }

/* Trust badges */
.pdp-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 6px 24px 16px;
}
.pdp-trust__item {
    display: flex; align-items: center; gap: 9px;
    background: #f8fafc; border-radius: 10px;
    padding: 10px 12px; border: 1px solid #f0f0f2;
}
.pdp-trust__icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    display: flex; align-items: center; justify-content: center;
    color: #22c55e; font-size: 14px; flex-shrink: 0;
}
.pdp-trust__text { font-size: 11.5px; font-weight: 600; color: #374151; line-height: 1.4; }
.pdp-trust__text small { font-size: 10.5px; font-weight: 400; color: #9ca3af; }

/* Bottom padding for info panel */
.pdp-info .pdp-trust { margin-bottom: 4px; }

/* ═══════════════════════════════════════════════════════════════
   FULL DESCRIPTION SECTION
   ═══════════════════════════════════════════════════════════════ */
.pdp-desc {
    background: #fff;
    padding: 0;
    border-top: 1px solid #eaecef;
}
.pdp-desc__container { max-width: 860px; }

/* Clickable heading acts as accordion toggle */
.pdp-section-title {
    font-size: 20px; font-weight: 800; color: #0f172a;
    margin: 0; letter-spacing: -.25px;
    display: flex; align-items: center; gap: 12px;
}
.pdp-desc__toggle-heading {
    padding: 22px 0;
    cursor: pointer;
    user-select: none;
    transition: color .2s;
}
.pdp-desc__toggle-heading:hover { color: #16a34a; }
.pdp-desc__toggle-heading::after {
    content: ''; flex: 1; height: 2px;
    background: linear-gradient(90deg, #e9ecef, transparent);
}
.pdp-desc__toggle-icon {
    transition: transform .35s ease;
    font-size: 14px;
    color: #9ca3af;
    flex-shrink: 0;
    margin-left: 4px;
}

/* Collapsible body */
.pdp-desc__body {
    overflow: hidden;
    transition: max-height .45s ease, opacity .35s ease, padding .35s ease;
}
.pdp-desc__body--collapsed {
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
}
.pdp-desc__body--open {
    max-height: 4000px;   /* large enough for any content */
    opacity: 1;
    padding-bottom: 40px;
}

.pdp-desc__short {
    font-size: 14px; color: #4b5563; line-height: 1.8;
    padding: 14px 18px;
    background: linear-gradient(135deg,#f8fafc,#f0fdf4);
    border-left: 3px solid #22c55e; border-radius: 10px;
    margin-bottom: 18px;
}
.pdp-desc__full {
    font-size: 14px; color: #4b5563; line-height: 1.82;
}
.pdp-desc__full table { max-width: 100%; border-collapse: collapse; }
.pdp-desc__full img   { max-width: 100%; height: auto; border-radius: 8px; }
.pdp-desc__full p     { margin: 0 0 12px; }
.pdp-desc__full h2,
.pdp-desc__full h3,
.pdp-desc__full h4    { font-weight: 700; margin: 18px 0 8px; color: #0f172a; }

/* ═══════════════════════════════════════════════════════════════
   SIMILAR PRODUCTS
   ═══════════════════════════════════════════════════════════════ */
.pdp-similar .pdp-section-title { margin: 0 0 20px; }
.pdp-similar {
    background: #f4f5f7;
    padding: 42px 0 64px;
}
.pdp-similar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.pdp-similar__card {
    background: #fff; border-radius: 14px; overflow: hidden;
    text-decoration: none; color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,.055);
    transition: transform .22s, box-shadow .22s;
    display: flex; flex-direction: column;
}
.pdp-similar__card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.pdp-similar__img-wrap {
    position: relative; aspect-ratio: 1/1;
    background: #f8f9fa;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 12px;
}
.pdp-similar__img-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; transition: transform .3s; }
.pdp-similar__card:hover .pdp-similar__img-wrap img { transform: scale(1.06); }
.pdp-similar__img-ph { font-size: 44px; color: #e5e7eb; }
.pdp-similar__options-badge,
.pdp-similar__sale-badge {
    position: absolute; top: 9px; right: 9px;
    font-size: 9px; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase; padding: 3px 9px; border-radius: 50px;
    color: #fff;
}
.pdp-similar__options-badge { background: rgba(37,99,235,.85); }
.pdp-similar__sale-badge    { background: rgba(239,68,68,.88); }
.pdp-similar__body { padding: 13px 14px 15px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pdp-similar__name {
    font-size: 13px; font-weight: 700; color: #0f172a; line-height: 1.4; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pdp-similar__price-row {
    display: flex; align-items: baseline; gap: 7px;
}
.pdp-similar__price { font-size: 14px; font-weight: 800; color: #0f172a; }
.pdp-similar__old   { font-size: 12px; color: #9ca3af; text-decoration: line-through; }
.pdp-similar__cta {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 700; color: #22c55e;
    margin-top: auto; padding-top: 4px;
    transition: gap .18s;
}
.pdp-similar__card:hover .pdp-similar__cta { gap: 9px; }

/* ═══════════════════════════════════════════════════════════════
   SHARE MODAL
   ═══════════════════════════════════════════════════════════════ */
.pdp-share-backdrop {
    display: none;
    position: fixed; inset: 0; z-index: 99998;
    background: rgba(0,0,0,.5); backdrop-filter: blur(3px);
}
.pdp-share-backdrop.is-open { display: block; }
.pdp-share-modal {
    display: none;
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99999;
    background: #fff; border-radius: 18px;
    padding: 28px 32px 26px;
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
    min-width: 300px;
}
.pdp-share-modal.is-open { display: block; }
.pdp-share-modal h3 { font-size: 17px; font-weight: 800; margin-bottom: 18px; color: #0f172a; }
.pdp-share-modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid #e5e7eb; background: #f3f4f6; color: #6b7280;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; cursor: pointer;
    transition: background .18s, color .18s;
}
.pdp-share-modal__close:hover { background: #fee2e2; color: #ef4444; }
.pdp-share-modal__links { display: flex; flex-direction: column; gap: 10px; }
.pdp-share-link {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px; border-radius: 10px;
    font-size: 14px; font-weight: 600; color: #fff;
    cursor: pointer; border: none; text-align: left;
    transition: filter .18s, transform .15s;
}
.pdp-share-link:hover { filter: brightness(1.1); transform: translateX(3px); }
.pdp-share-link--fb   { background: #1877f2; }
.pdp-share-link--tw   { background: #0f1419; }
.pdp-share-link--wa   { background: #25d366; }
.pdp-share-link--copy { background: #6b7280; }

/* ═══════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════════════════════════ */
.pdp-toast {
    position: fixed;
    bottom: 28px; left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 999999;
    background: #0f172a;
    color: #fff; font-size: 14px; font-weight: 600;
    padding: 13px 22px; border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,.38);
    display: flex; align-items: center; gap: 9px;
    white-space: nowrap; pointer-events: none;
    opacity: 0;
    transition: transform .38s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}
.pdp-toast--show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.pdp-toast--success i { color: #22c55e; }
.pdp-toast--wishlist i { color: #f43f5e; }
.pdp-toast--error   i { color: #ef4444; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .pdp-main__grid { grid-template-columns: 440px 1fr; gap: 24px; }
    .pdp-gallery__stage { max-width: 370px; }
    .pdp-similar__grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 860px) {
    .pdp-main__grid { grid-template-columns: 1fr; gap: 18px; }
    .pdp-gallery { position: static; }
    .pdp-gallery__inner { flex-direction: column-reverse; }
    .pdp-gallery__lens { display: none !important; }
    .pdp-gallery__thumbs {
        flex-direction: row; width: 100%;
        max-height: none; overflow-x: auto; overflow-y: hidden;
    }
    .pdp-gallery__thumb { width: 62px; height: 62px; }
    .pdp-gallery__stage { max-width: 100%; }
    .pdp-similar__grid { grid-template-columns: repeat(2,1fr); }
    .pdp-main { padding: 18px 0 40px; }
    .pdp-trust { grid-template-columns: 1fr; }
    .pdp-info-col { gap: 12px; }
}
@media (max-width: 540px) {
    .pdp-form__row { flex-direction: column; padding: 0 18px; }
    .pdp-qty { justify-content: center; }
    .pdp-info__name { font-size: 19px; }
    .pdp-price__current { font-size: 32px; }
    .pdp-chip { padding: 7px 14px; font-size: 12px; }
    .pdp-similar__grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .pdp-info__meta, .pdp-info__price-wrap,
    .pdp-variants, .pdp-form__secondary,
    .pdp-trust, .pdp-accordion { padding-left: 18px; padding-right: 18px; }
    .pdp-info__header { padding: 18px 18px 14px; }
    .pdp-divider { margin-left: 18px; margin-right: 18px; }
    .pdp-form__row { padding: 0 18px; }
    .pdp-accordion { margin-left: 18px; margin-right: 18px; }
}
