/* =============================================================
   SHUVINO — Professional refinement layer (loaded LAST; overrides)
   Consistent typography, full-width header/banners/dropdowns,
   3-per-row grids, tightened spacing.
   ============================================================= */

/* ---------- Layout width ---------- */
:root {
    --sh-container: 1440px;
    --sh-edge: 30px;

    /* Consistent type scale used across the whole site */
    --fs-h1: 2.35rem;   /* hero / page titles      */
    --fs-h2: 1.75rem;   /* section titles          */
    --fs-h3: 1.12rem;   /* card / panel titles     */
    --fs-sub: 0.96rem;  /* subheadings / lead text */
    --fs-body: 0.94rem; /* body                    */
    --fs-small: 0.82rem;
}
.sh-container { padding-inline: var(--sh-edge); }

/* Full-bleed header + category nav (logo hard-left, actions hard-right) */
.sh-header > .sh-container,
.sh-nav > .sh-container { max-width: 100%; padding-inline: var(--sh-edge); }

/* Full-width hero / banners — no left-right gaps */
.sh-hero > .sh-container { max-width: 100%; padding-inline: 22px; }
.sh-banner-strip .sh-container { max-width: 100%; padding-inline: 22px; }

/* ---------- Typography — one size per role, everywhere ---------- */
body { font-size: var(--fs-body); }
.sh-section-head h2,
.sh-gbband__head h2,
.sh-stats__head h2 { font-size: var(--fs-h2) !important; letter-spacing: -.02em; line-height: 1.2; }
.sh-section-head p { font-size: var(--fs-sub); }
.sh-eyebrow, .sh-stats__eyebrow { font-size: .72rem !important; letter-spacing: .14em; }
.sh-dcard__head h3, .sh-panel__head h3 { font-size: var(--fs-h3); }
.sh-card__title { font-size: .95rem; line-height: 1.35; }

/* Consistent section rhythm */
.sh-section { padding: 56px 0; }
.sh-section--tight { padding: 34px 0; }

/* ---------- Header: search + quick links + equal-size actions ---------- */
/* Solid header background — an ancestor backdrop-filter makes the mega
   dropdown (an overflowing descendant) render see-through in Chrome. */
.sh-header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
.sh-header.is-stuck { background: #fff; }
.sh-header__inner { gap: 18px; }
.sh-search { flex: 1; max-width: 640px; }
.sh-actions { gap: 2px; margin-left: auto; }
.sh-action {
    width: 66px; padding: 7px 4px; border-radius: 12px;
    align-items: center; justify-content: center;
}
.sh-action i { font-size: 1.4rem; }
.sh-action span:not(.sh-action__count) { font-size: .68rem; font-weight: 600; }
.sh-action__count { top: 0; right: 12px; }

/* ---------- Category nav: full-width bar + 3-level mega dropdowns ---------- */
.sh-nav { position: relative; z-index: 200; isolation: isolate; }
.sh-nav__inner {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: stretch; gap: 2px; height: 52px;
    justify-content: space-between;
}
.sh-nav__item { position: static; display: flex; align-items: stretch; }
.sh-nav__link {
    display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; height: 100%;
    font-size: .9rem; font-weight: 600; color: var(--sh-ink-soft); border-radius: 10px;
    white-space: nowrap; text-decoration: none; transition: color .15s, background .15s;
}
.sh-nav__link:hover,
.sh-nav__item:hover > .sh-nav__link { color: var(--sh-blue); background: var(--sh-blue-50); }
.sh-nav__caret { font-size: .66rem; opacity: .7; transition: transform .2s var(--sh-ease); }
.sh-nav__item:hover .sh-nav__caret { transform: rotate(180deg); }
.sh-nav__cta-wrap { margin-left: auto; }
.sh-nav__cta { color: var(--sh-teal-600); font-weight: 700; }
.sh-nav__deals { color: var(--sh-orange); font-weight: 700; }

/* Full-width dropdown — inset panel with a small gap from the screen edges */
.sh-mega {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0; width: auto;
    background: transparent; border: 0; box-shadow: none; border-radius: 0;
    padding: 0 var(--sh-edge); z-index: 60;
    display: block; grid-template-columns: none;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .18s var(--sh-ease), transform .18s var(--sh-ease), visibility .18s;
}
.sh-nav__item:hover .sh-mega { opacity: 1; visibility: visible; transform: none; }
.sh-mega__inner {
    max-width: var(--sh-container); margin: 0 auto;
    background: #fff; border: 1px solid var(--sh-line); border-radius: 16px;
    box-shadow: 0 22px 60px rgba(18,59,147,.16);
    padding: 22px; display: grid; grid-template-columns: 1fr 300px; gap: 26px; align-items: stretch;
}
.sh-mega__grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px 22px;
}
.sh-mega__col { min-width: 0; padding-left: 22px; border-left: 1px solid var(--sh-line); }
.sh-mega__col:first-child { padding-left: 0; border-left: 0; }
.sh-mega__title {
    display: block; font-size: .82rem; font-weight: 800; letter-spacing: .01em;
    color: var(--sh-ink); margin-bottom: 10px; text-decoration: none;
}
.sh-mega__title:hover { color: var(--sh-orange); }
.sh-mega__list { list-style: none; margin: 0; padding: 0; }
.sh-mega__list a {
    display: block; padding: 6px 10px; margin: 0 -10px; border-radius: 8px;
    font-size: .85rem; color: var(--sh-ink-soft); text-decoration: none;
    transition: color .15s, background .15s;
}
.sh-mega__list a:hover { color: var(--sh-blue); background: var(--sh-blue-50); }

/* Featured promo card (fills the right side so the panel never looks empty) */
.sh-mega__promo {
    display: flex; flex-direction: column; gap: 8px; text-decoration: none;
    background: var(--sh-grad-hero); color: #fff; border-radius: 14px; padding: 20px;
    position: relative; overflow: hidden;
}
.sh-mega__promo::after {
    content: ""; position: absolute; right: -40px; bottom: -50px; width: 150px; height: 150px;
    border-radius: 50%; background: rgba(255,255,255,.10);
}
.sh-mega__promo-tag {
    align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.18); color: #fff; font-size: .66rem; font-weight: 800;
    letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.sh-mega__promo strong { font-size: 1.12rem; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
.sh-mega__promo-sub { font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,.9); }
.sh-mega__promo-cta {
    margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
    background: #fff; color: var(--sh-blue); font-size: .82rem; font-weight: 800;
    padding: 9px 16px; border-radius: 999px; position: relative; z-index: 1;
    transition: transform .15s var(--sh-ease);
}
.sh-mega__promo:hover .sh-mega__promo-cta { transform: translateX(4px); }

/* Categories with fewer than 4 groups: let columns sit closer */
.sh-mega__grid:has(.sh-mega__col:nth-child(3):last-child) { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Tablet/mobile: nav collapses to the drawer (burger) */
@media (max-width: 992px) {
    .sh-nav { display: none; }
}

/* ---------- Product rows: 4 per row on home, 3 on pages with a sidebar ---------- */
.sh-grid--5, .sh-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sh-grid--3 { grid-template-columns: repeat(3, 1fr); }   /* shop / all-products (sidebar) */
@media (max-width: 1100px) {
    .sh-grid--5, .sh-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .sh-grid--5, .sh-grid--4, .sh-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .sh-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ---------- Hide vendor label on cards (we don't surface vendors) ---------- */
.sh-card__vendor { display: none; }

/* ---------- Category cards with real images ---------- */
.sh-grid--cats { grid-template-columns: repeat(8, 1fr); gap: 16px; }
.sh-cat { background: transparent; border: 0; box-shadow: none; padding: 0; text-align: center; }
.sh-cat:hover { transform: translateY(-4px); box-shadow: none; }
.sh-cat__img {
    position: relative; display: block; width: 100%; aspect-ratio: 1/1; border-radius: 18px;
    overflow: hidden; margin-bottom: 12px; box-shadow: var(--sh-shadow-sm); border: 1px solid var(--sh-line);
}
.sh-cat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--sh-ease); }
.sh-cat:hover .sh-cat__img img { transform: scale(1.09); }
.sh-cat__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,34,88,.28)); }
.sh-cat__ic {
    position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); z-index: 2;
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.95);
    display: grid; place-items: center; color: var(--sh-blue); font-size: 1.1rem; box-shadow: var(--sh-shadow-xs);
    transition: background .3s, color .3s;
}
.sh-cat:hover .sh-cat__ic { background: var(--sh-blue); color: #fff; }
.sh-cat__name { font-size: .9rem; font-weight: 700; display: block; }
.sh-cat__count { font-size: .74rem; color: var(--sh-muted); }
@media (max-width: 1100px){ .sh-grid--cats { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 760px){ .sh-grid--cats { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 460px){ .sh-grid--cats { grid-template-columns: repeat(3, 1fr); gap: 12px; } }

/* ---------- Mobile header alignment ---------- */
@media (max-width: 760px) {
    .sh-header__inner { gap: 10px; }
    .sh-action { width: 46px; }
    .sh-action span:not(.sh-action__count) { display: none; }
    .sh-search { max-width: none; }
}

/* =============================================================
   UNIFIED PANELS — site header + footer around the dashboard
   ============================================================= */
.sh-sidebar__paneltitle { display: flex; align-items: center; gap: 10px; }
.sh-sidebar__paneltitle i { color: var(--acc); font-size: 1.35rem; }
.sh-sidebar__paneltitle span { font-weight: 800; font-size: 1rem; color: var(--sh-ink); }

.sh-dash__pagehead { display: flex; align-items: center; gap: 14px; padding: 24px 28px 0; }
.sh-dash__pagehead .sh-dtop__title h1 { font-size: 1.5rem; margin: 0; }
.sh-dash__pagehead .sh-dtop__title p { font-size: .84rem; color: var(--sh-muted); margin: 3px 0 0; }
.sh-dash__burger { display: none; }

@media (min-width: 993px) {
    .sh-dash { min-height: auto; }
    /* Sidebar sits just under the sticky site header (header 74 + nav 52) */
    .sh-sidebar {
        position: sticky; top: 132px; height: auto; max-height: calc(100vh - 148px);
        overflow-y: auto; align-self: flex-start;
    }
}
@media (max-width: 992px) {
    .sh-dash__burger { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--sh-line); background: #fff; cursor: pointer; font-size: 1.3rem; color: var(--sh-ink); flex: none; }
    .sh-dash.is-open .sh-sidebar { z-index: 950; }
    .sh-dash.is-open .sh-sidebar-back { z-index: 940; }
    .sh-dash__pagehead { padding: 18px 18px 0; }
}

/* ---------- Mobile: tighter edges + product carousels ---------- */
@media (max-width: 560px) {
    :root { --sh-edge: 16px; }
    .sh-section { padding: 38px 0; }
    .sh-section-head h2, .sh-gbband__head h2, .sh-stats__head h2 { font-size: 1.4rem !important; }

    /* Home product rows become swipeable carousels */
    .sh-grid--5, .sh-grid--4 {
        display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory;
        padding-bottom: 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
        grid-template-columns: none;
    }
    .sh-grid--5::-webkit-scrollbar, .sh-grid--4::-webkit-scrollbar { display: none; }
    .sh-grid--5 > *, .sh-grid--4 > * { flex: 0 0 62%; scroll-snap-align: start; }
    /* subtle hint it scrolls */
    .sh-grid--5 > *:first-child, .sh-grid--4 > *:first-child { margin-left: 0; }
}

/* =============================================================
   LIVE GROUP BUYS — light section (home)
   ============================================================= */
.sh-gblive { position: relative; background: linear-gradient(180deg, #EFFBFA 0%, var(--sh-bg) 70%); overflow: hidden; }
.sh-gblive::before { content: ""; position: absolute; top: -140px; right: -90px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(15,167,160,.14), transparent 70%); pointer-events: none; }
.sh-gblive::after { content: ""; position: absolute; bottom: -160px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,0,.08), transparent 70%); pointer-events: none; }
.sh-gblive__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; position: relative; z-index: 2; }
.sh-gblive__title { display: flex; flex-direction: column; align-items: flex-start; }
.sh-gblive__badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #CFEFED; color: var(--sh-teal-600); font-size: .76rem; font-weight: 800; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; box-shadow: var(--sh-shadow-xs); letter-spacing: .03em; text-transform: uppercase; }
.sh-gblive__title h2 { margin: 0; }
.sh-gblive__pulse { width: 9px; height: 9px; border-radius: 50%; background: #ff4d4f; position: relative; }
.sh-gblive__pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #ff4d4f; animation: sh-livepulse 1.5s ease-out infinite; }
@keyframes sh-livepulse { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
.sh-gblive__title h2 { display: inline-flex; align-items: center; gap: 10px; font-size: var(--fs-h2); }
.sh-gblive__title h2 i { color: var(--sh-orange); animation: sh-fire 1.5s ease-in-out infinite; transform-origin: bottom center; }
.sh-gblive__title p { color: var(--sh-ink-soft); font-size: var(--fs-sub); margin: 8px 0 0; max-width: 540px; }
@keyframes sh-fire { 0%,100% { transform: scale(1) rotate(-4deg); } 50% { transform: scale(1.14) rotate(4deg); } }

/* =============================================================
   GROUP-BUY PURCHASE SUMMARY (premium)
   ============================================================= */
.sh-gbsummary { margin-top: 18px; border-top: 1px dashed var(--sh-line); padding-top: 18px; }
.sh-gbsummary__rows { display: flex; flex-direction: column; gap: 11px; margin-bottom: 14px; }
.sh-gbsummary__row { display: flex; align-items: center; justify-content: space-between; font-size: .9rem; color: var(--sh-ink-soft); }
.sh-gbsummary__row span:first-child { display: inline-flex; align-items: center; gap: 9px; }
.sh-gbsummary__row span:first-child i { color: var(--sh-muted); font-size: 1rem; }
.sh-gbsummary__row span:last-child { font-weight: 700; color: var(--sh-ink); }
.sh-gbsummary__save { color: var(--sh-success) !important; font-weight: 800; }
.sh-gbsummary__total {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: linear-gradient(135deg, var(--sh-teal-50), #fff);
    border: 1.5px solid #CFEFED; border-radius: 16px; padding: 15px 18px; margin-bottom: 12px;
}
.sh-gbsummary__total > div span { font-weight: 800; font-size: .98rem; display: block; color: var(--sh-ink); }
.sh-gbsummary__total > div small { color: var(--sh-muted); font-size: .72rem; }
.sh-gbsummary__total strong { font-size: 1.7rem; font-weight: 900; color: var(--sh-teal-600); letter-spacing: -.02em; }
.sh-gbsummary__note {
    display: flex; gap: 11px; align-items: flex-start; background: var(--sh-blue-50);
    border-radius: 14px; padding: 13px 15px; font-size: .8rem; color: var(--sh-ink-soft); line-height: 1.5;
}
.sh-gbsummary__note i { color: var(--sh-blue); font-size: 1.25rem; margin-top: 1px; flex: none; }
.sh-gbsummary__note strong { color: var(--sh-blue); }

/* =============================================================
   FILTERS — restyled (shop sidebar)
   ============================================================= */
.sh-filters {
    background: #fff; border: 1px solid var(--sh-line); border-radius: var(--sh-r-lg);
    padding: 4px 22px 22px; box-shadow: var(--sh-shadow-xs);
}
.sh-filters__head { display: flex; align-items: center; gap: 10px; padding: 18px 0 16px; border-bottom: 1px solid var(--sh-line); margin-bottom: 4px; }
.sh-filters__head h5 { font-size: 1.02rem; margin: 0; display: inline-flex; align-items: center; gap: 8px; }
.sh-filters__head h5 i { color: var(--sh-blue); }
.sh-filters__clear { margin-left: auto; font-size: .8rem; font-weight: 700; color: var(--sh-orange); }
.sh-filters__clear:hover { text-decoration: underline; }
.sh-filter-block { padding: 18px 0; border-bottom: 1px solid var(--sh-line); }
.sh-filter-block:last-child { border-bottom: 0; padding-bottom: 4px; }
.sh-filter-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--sh-ink); font-weight: 800; margin-bottom: 14px; }
.sh-filter-list { display: flex; flex-direction: column; gap: 3px; }
.sh-check { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 10px; cursor: pointer; transition: background var(--sh-fast); font-size: .88rem; }
.sh-check:hover { background: var(--sh-bg-soft); }
.sh-check__count { margin-left: auto; font-size: .74rem; color: var(--sh-muted); background: var(--sh-bg-soft); padding: 1px 8px; border-radius: 999px; }
.sh-check input:checked ~ .sh-check__label { color: var(--sh-blue); font-weight: 700; }
/* Group-buy-only toggle → highlighted card */
.sh-filter-block:first-of-type { background: var(--sh-teal-50); border: 1px solid #CFEFED; border-radius: 14px; padding: 14px 16px; margin-top: 14px; }
/* Price range filled track */
.sh-range__input { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px; background: var(--sh-line); outline: none; }
.sh-range__input::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--sh-blue); border: 3px solid #fff; box-shadow: var(--sh-shadow-sm); cursor: pointer; }
.sh-range__vals { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.sh-pricebox { flex: 1; text-align: center; background: var(--sh-bg-soft); border: 1px solid var(--sh-line); border-radius: 10px; padding: 8px; font-weight: 700; font-size: .86rem; color: var(--sh-ink); }


/* =============================================================
   PRODUCT PAGE — inline Group Buy join experience
   ============================================================= */
.sh-btn.is-joined { background: var(--sh-success) !important; }
.sh-gbjoin { margin-top: 14px; border-top: 1px dashed var(--sh-line); padding-top: 16px; animation: sh-gbjoin-in .4s var(--sh-ease); }
@keyframes sh-gbjoin-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.sh-gbjoin__ok { display: flex; gap: 9px; align-items: flex-start; background: var(--sh-teal-50); border: 1px solid #CFEFED; border-radius: 12px; padding: 12px 14px; font-size: .84rem; color: var(--sh-teal-600); font-weight: 600; margin-bottom: 16px; }
.sh-gbjoin__ok i { font-size: 1.1rem; margin-top: 1px; }
.sh-gbjoin__block { margin-bottom: 16px; }
.sh-gbjoin__block h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--sh-ink); font-weight: 800; margin-bottom: 10px; }
.sh-avatars__you { background: var(--sh-blue) !important; color: #fff !important; font-size: .68rem !important; font-weight: 800; }
.sh-gbtiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sh-gbtier { border: 1px solid var(--sh-line); border-radius: 12px; padding: 10px 8px; text-align: center; background: #fff; }
.sh-gbtier.is-on { border-color: var(--sh-teal); background: var(--sh-teal-50); }
.sh-gbtier__n { display: block; font-size: .68rem; color: var(--sh-muted); font-weight: 700; margin-bottom: 2px; }
.sh-gbtier b { font-size: .92rem; color: var(--sh-ink); }
.sh-gbtier.is-on b { color: var(--sh-teal-600); }

/* =============================================================
   PRODUCT PAGE — sticky gallery + full-width highlights/assurance row
   ============================================================= */
.sh-pdp { align-items: start; }
/* Gallery follows the scroll so a taller (joined) buy panel never leaves the left empty */
@media (min-width: 993px) {
    .sh-pdp .sh-gallery { position: sticky; top: calc(var(--sh-header-h) + 20px); align-self: start; }
}
/* Full-width highlights + assurance row below the product */
.sh-pdp__extras-full { display: grid; grid-template-columns: 1fr 1.35fr; gap: 20px; margin-top: 30px; align-items: start; }
.sh-pdp__highlights { background: var(--sh-bg-soft); border: 1px solid var(--sh-line); border-radius: var(--sh-r); padding: 20px 22px; }
.sh-pdp__highlights h5 { font-size: .95rem; font-weight: 800; display: flex; align-items: center; gap: 8px; margin: 0 0 14px; }
.sh-pdp__highlights h5 i { color: var(--sh-orange); }
.sh-pdp__highlights ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sh-pdp__highlights li { display: flex; gap: 9px; font-size: .86rem; color: var(--sh-ink-soft); line-height: 1.4; }
.sh-pdp__highlights li i { color: var(--sh-teal); margin-top: 2px; flex: none; }
.sh-pdp__assure { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 20px; background: #fff; border: 1px solid var(--sh-line); border-radius: var(--sh-r); padding: 20px 22px; box-shadow: var(--sh-shadow-xs); }
.sh-pdp__assure-item { display: flex; gap: 12px; align-items: flex-start; }
.sh-pdp__assure-item > i { width: 42px; height: 42px; border-radius: 12px; background: var(--sh-blue-50); color: var(--sh-blue); display: grid; place-items: center; font-size: 1.2rem; flex: none; }
.sh-pdp__assure-item:nth-child(2) > i { background: var(--sh-teal-50); color: var(--sh-teal); }
.sh-pdp__assure-item:nth-child(3) > i { background: var(--sh-orange-50); color: var(--sh-orange); }
.sh-pdp__assure-item:nth-child(4) > i { background: #F1EBFF; color: #7C3AED; }
.sh-pdp__assure-item strong { display: block; font-size: .88rem; }
.sh-pdp__assure-item span { font-size: .78rem; color: var(--sh-muted); line-height: 1.4; }
@media (max-width: 900px) {
    .sh-pdp__extras-full { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .sh-pdp__highlights ul, .sh-pdp__assure { grid-template-columns: 1fr; }
}

/* =============================================================
   FOOTER — newsletter band
   ============================================================= */
.sh-footer__news { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 26px 34px; margin-bottom: 34px; border-radius: var(--sh-r-lg); background: linear-gradient(120deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.12); }
.sh-footer__news-txt h3 { color: #fff; font-size: 1.3rem; margin: 0 0 4px; display: flex; align-items: center; gap: 10px; }
.sh-footer__news-txt h3 i { color: var(--sh-orange); }
.sh-footer__news-txt p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.sh-footer__news-form { display: flex; gap: 10px; flex: 1; min-width: 300px; max-width: 520px; }
.sh-footer__news-input { flex: 1; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: var(--sh-r-pill); padding: 4px 18px; }
.sh-footer__news-input i { color: var(--sh-muted); }
.sh-footer__news-input input { flex: 1; border: 0; outline: none; background: transparent; font: inherit; font-size: .9rem; padding: 12px 0; color: var(--sh-ink); }
.sh-footer__news-form .sh-btn { white-space: nowrap; }
@media (max-width: 700px) { .sh-footer__news { padding: 22px; } .sh-footer__news-form { min-width: 100%; } }

/* =============================================================
   LIVE GROUP BUYS — extra animations
   ============================================================= */
.sh-gblive::before { animation: sh-gbfloat1 9s ease-in-out infinite; }
.sh-gblive::after { animation: sh-gbfloat2 11s ease-in-out infinite; }
@keyframes sh-gbfloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,26px) scale(1.12); } }
@keyframes sh-gbfloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-28px,-22px) scale(1.14); } }
/* animated shimmer line under the heading */
.sh-gblive__title h2 { position: relative; }
.sh-gblive__badge { animation: sh-gbbadge 2.6s ease-in-out infinite; }
@keyframes sh-gbbadge { 0%,100% { box-shadow: var(--sh-shadow-xs); } 50% { box-shadow: 0 6px 20px rgba(255,77,79,.28); } }
/* group cards rise + stagger on the band */
.sh-gblive .sh-grid--4 > .sh-reveal { transition-delay: calc(var(--sh-i, 0) * 90ms); }
.sh-gblive .sh-card { transition: transform .4s var(--sh-ease), box-shadow .4s; }
.sh-gblive .sh-card:hover { box-shadow: 0 22px 46px rgba(15,167,160,.24); }
/* the whole "View all" button pulses subtly to invite clicks */
.sh-gblive__head .sh-btn--teal { animation: sh-gbbtn 3s ease-in-out infinite; }
@keyframes sh-gbbtn { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* =============================================================
   FLOATING SIDE-RAIL ANIMATIONS (fill wide-screen gutters)
   ============================================================= */
.sh-siderail { position: fixed; top: 0; bottom: 0; width: calc((100vw - var(--sh-container)) / 2 - 8px); pointer-events: none; z-index: 0; display: none; overflow: hidden; }
.sh-siderail--l { left: 0; } .sh-siderail--r { right: 0; }
@media (min-width: 1560px) { .sh-siderail { display: block; } }
.sh-siderail i {
    position: absolute; font-size: 2.1rem; color: var(--sh-blue); opacity: 0; left: 30%;
    animation: sh-railfloat 16s linear infinite;
}
.sh-siderail i:nth-child(1) { left: 28%; animation-delay: 0s; }
.sh-siderail i:nth-child(2) { left: 62%; animation-delay: 3.2s; color: var(--sh-teal); }
.sh-siderail i:nth-child(3) { left: 40%; animation-delay: 6.4s; color: var(--sh-orange); }
.sh-siderail i:nth-child(4) { left: 70%; animation-delay: 9.6s; }
.sh-siderail i:nth-child(5) { left: 45%; animation-delay: 12.8s; color: var(--sh-teal); }
@keyframes sh-railfloat {
    0% { top: 100%; opacity: 0; transform: translateY(0) rotate(0deg); }
    12% { opacity: .16; }
    88% { opacity: .16; }
    100% { top: -8%; opacity: 0; transform: translateY(0) rotate(18deg); }
}
@media (prefers-reduced-motion: reduce) { .sh-siderail { display: none !important; } }

/* =============================================================
   PANEL SIDEBAR — clickable title + compact footer
   ============================================================= */
.sh-sidebar__paneltitle { text-decoration: none; transition: background .15s; border-radius: 0; }
.sh-sidebar__paneltitle:hover { background: var(--sh-bg-soft); }
.sh-sidebar__paneltitle:hover span { color: var(--acc); }
.sh-navlink--out:hover { color: var(--sh-danger) !important; background: #FCE7EC !important; }
.sh-navlink--out:hover i { color: var(--sh-danger); }

/* =============================================================
   MOBILE CAROUSELS — arrows + testimonials
   ============================================================= */
@media (max-width: 640px) {
    /* Testimonials ("what customers say") become a swipe carousel */
    [data-mcar] { display: flex !important; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; grid-template-columns: none !important; padding-bottom: 8px; }
    [data-mcar]::-webkit-scrollbar { display: none; }
    [data-mcar] > * { flex: 0 0 84%; scroll-snap-align: start; }
}
/* Injected arrow controls on mobile carousels */
.sh-mcar { position: relative; }
.sh-mcar__arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--sh-line); background: rgba(255,255,255,.96); box-shadow: var(--sh-shadow); color: var(--sh-ink); display: grid; place-items: center; z-index: 6; cursor: pointer; font-size: 1.05rem; transition: opacity .2s; }
.sh-mcar__arrow--prev { left: 2px; }
.sh-mcar__arrow--next { right: 2px; }
.sh-mcar__arrow.is-hide { opacity: 0; pointer-events: none; }
@media (min-width: 641px) { .sh-mcar__arrow { display: none; } }
