/* =============================================================
   SHUVINO — Homepage premium look (scoped: loaded only on home)
   ============================================================= */

/* ---------- Eyebrow: gradient accent bar ---------- */
.sh-eyebrow::before { width: 26px; height: 3px; background: linear-gradient(90deg, var(--sh-orange), var(--sh-teal)); border-radius: 3px; }
.sh-section-head h2 { letter-spacing: -.03em; }

/* ---------- Hero: staggered entrance ---------- */
.sh-hero__content > * { animation: sh-hero-in .7s var(--sh-ease) both; }
.sh-hero__content > *:nth-child(1) { animation-delay: .04s; }
.sh-hero__content > *:nth-child(2) { animation-delay: .12s; }
.sh-hero__content > *:nth-child(3) { animation-delay: .20s; }
.sh-hero__content > *:nth-child(4) { animation-delay: .28s; }
.sh-hero__content > *:nth-child(5) { animation-delay: .36s; }
.sh-hero__side > * { animation: sh-hero-in .7s var(--sh-ease) both; animation-delay: .3s; }
@keyframes sh-hero-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .sh-hero__content > *, .sh-hero__side > * { animation: none; } }

/* ---------- Categories: colorful icons + top accent + lift ---------- */
.sh-grid--cats .sh-cat { position: relative; overflow: hidden; }
.sh-grid--cats .sh-cat::after {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: left;
    background: linear-gradient(90deg, var(--sh-blue), var(--sh-teal)); transition: transform .4s var(--sh-ease);
}
.sh-grid--cats .sh-cat:hover::after { transform: scaleX(1); }
.sh-cat__icon { transition: transform .4s var(--sh-ease), background .4s, color .4s, box-shadow .4s; }
.sh-grid--cats .sh-cat:nth-child(4n+2) .sh-cat__icon { color: var(--sh-orange); background: var(--sh-orange-50); }
.sh-grid--cats .sh-cat:nth-child(4n+3) .sh-cat__icon { color: var(--sh-teal); background: var(--sh-teal-50); }
.sh-grid--cats .sh-cat:nth-child(4n+4) .sh-cat__icon { color: #7C3AED; background: #F1EBFF; }
.sh-grid--cats .sh-cat:hover .sh-cat__icon { color: #fff; background: var(--sh-grad-brand); transform: scale(1.14) rotate(-6deg); box-shadow: var(--sh-shadow-sm); }
.sh-grid--cats .sh-cat:nth-child(4n+2):hover .sh-cat__icon { background: var(--sh-grad-orange); }
.sh-grid--cats .sh-cat:nth-child(4n+3):hover .sh-cat__icon { background: linear-gradient(135deg, #0FA7A0, #14C4BB); }
.sh-grid--cats .sh-cat:nth-child(4n+4):hover .sh-cat__icon { background: linear-gradient(135deg, #7C3AED, #A78BFA); }

/* ---------- How it works: connector line + gradient numbers + hover ---------- */
.sh-how { position: relative; }
@media (min-width: 800px) {
    .sh-how::before {
        content: ""; position: absolute; top: 58px; left: 17%; right: 17%; height: 2px; z-index: 0;
        background: repeating-linear-gradient(90deg, var(--sh-teal) 0 7px, transparent 7px 15px); opacity: .45;
    }
}
.sh-how__step { z-index: 1; transition: transform .4s var(--sh-ease), box-shadow .4s var(--sh-ease), border-color .4s; }
.sh-how__step:hover { transform: translateY(-8px); box-shadow: var(--sh-shadow); border-color: transparent; }
.sh-how__icon { box-shadow: var(--sh-shadow); transition: transform .4s var(--sh-ease); }
.sh-how__step:hover .sh-how__icon { transform: scale(1.1) rotate(-5deg); }
.sh-how__num {
    background: linear-gradient(135deg, var(--sh-blue-50), var(--sh-line));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Deal bar: pulsing icon ---------- */
.sh-dealbar__ico { animation: sh-deal-pulse 2.2s ease-in-out infinite; }
@keyframes sh-deal-pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--sh-shadow-orange); }
    50% { transform: scale(1.07); box-shadow: 0 14px 36px rgba(255,106,0,.45); }
}

/* ---------- Testimonials: quote glyph + accent + avatar ring + lift ---------- */
.sh-testi { position: relative; overflow: hidden; transition: transform .4s var(--sh-ease), box-shadow .4s; }
.sh-testi:hover { transform: translateY(-6px); box-shadow: var(--sh-shadow); }
.sh-testi::before {
    content: "\201C"; position: absolute; top: -10px; right: 18px; z-index: 0;
    font: 900 6rem/1 Georgia, 'Times New Roman', serif; color: var(--sh-blue-50);
}
.sh-testi > * { position: relative; z-index: 1; }
.sh-testi__who img { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--sh-teal); }

/* ---------- Newsletter / App CTA: decorative glow ---------- */
.sh-news, .sh-app { position: relative; overflow: hidden; }
.sh-news::after {
    content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; right: -70px; bottom: -90px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); pointer-events: none;
}
.sh-app::after {
    content: ""; position: absolute; width: 210px; height: 210px; border-radius: 50%; left: -60px; top: -80px;
    background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%); pointer-events: none;
}
.sh-news__form { box-shadow: var(--sh-shadow); }

/* ---------- Vendors: nicer logo ring ---------- */
.sh-vendor__logo { transition: transform .4s var(--sh-ease); }
.sh-vendor:hover .sh-vendor__logo { transform: scale(1.06); }

/* ---------- Group-buy band: soft top sheen ---------- */
.sh-gbband { position: relative; }

/* =============================================================
   BANNER CAROUSEL + 3 SHORT BANNERS (home hero)
   ============================================================= */
.sh-bnr { position: relative; border-radius: var(--sh-r-xl); overflow: hidden; box-shadow: var(--sh-shadow); }
.sh-bnr__track { display: flex; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.sh-bnr__slide { flex: 0 0 100%; min-height: 400px; display: flex; align-items: center; padding: 50px 64px; position: relative; text-decoration: none; overflow: hidden; }
.sh-bnr__slide::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; opacity: .26; mix-blend-mode: luminosity; }
.sh-bnr__slide--blue { background: var(--sh-grad-hero); }
.sh-bnr__slide--orange { background: linear-gradient(120deg, #E85D00, #FF9142); }
.sh-bnr__slide--teal { background: linear-gradient(120deg, #0C8781, #14C4BB); }
.sh-bnr__content { position: relative; z-index: 2; color: #fff; max-width: 560px; }
.sh-bnr__tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); padding: 6px 15px; border-radius: 999px; font-size: .78rem; font-weight: 700; margin-bottom: 18px; }
.sh-bnr__content h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; line-height: 1.08; margin: 0 0 14px; letter-spacing: -.02em; }
.sh-bnr__content p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin: 0 0 24px; max-width: 460px; }
.sh-bnr__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--sh-ink); display: grid; place-items: center; cursor: pointer; font-size: 1.2rem; z-index: 3; box-shadow: var(--sh-shadow); transition: transform .2s, background .2s; }
.sh-bnr__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.sh-bnr__arrow--prev { left: 20px; } .sh-bnr__arrow--next { right: 20px; }
.sh-bnr__dots { position: absolute; bottom: 20px; left: 64px; display: flex; gap: 8px; z-index: 3; }
.sh-bnr__dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s; padding: 0; }
.sh-bnr__dots button.is-active { width: 30px; background: #fff; }

.sh-bnr3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.sh-bnr3__item {
    position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 24px 26px;
    border-radius: var(--sh-r-lg); color: #fff; text-decoration: none; min-height: 162px;
    box-shadow: var(--sh-shadow-sm); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
    background: #16244a;
}
.sh-bnr3__item::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.sh-bnr3__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(9,26,66,.88) 0%, rgba(9,26,66,.5) 55%, rgba(9,26,66,.12) 100%); }
.sh-bnr3__item:hover { transform: translateY(-5px); box-shadow: var(--sh-shadow-lg); }
.sh-bnr3__item:hover::before { transform: scale(1.08); }
.sh-bnr3__txt { position: relative; z-index: 2; }
.sh-bnr3__txt small { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: #FFCB8E; }
.sh-bnr3__txt strong { display: block; font-size: 1.34rem; line-height: 1.2; margin: 8px 0 10px; color: #fff; }
.sh-bnr3__txt .go { font-size: .84rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.sh-bnr3__item:hover .go i { transform: translateX(4px); transition: transform .2s; }
@media (max-width: 820px) {
    .sh-bnr3 { grid-template-columns: 1fr; }
    .sh-bnr__slide { padding: 34px; min-height: 320px; }
    .sh-bnr__dots { left: 34px; }
    .sh-bnr__content h1 { font-size: 2rem; }
}

/* =============================================================
   FEATURE — promo banner + products (breaks up product rows)
   ============================================================= */
.sh-feature { display: grid; grid-template-columns: 350px 1fr; gap: 24px; align-items: stretch; }
.sh-feature__banner { position: relative; overflow: hidden; border-radius: var(--sh-r-xl); padding: 32px; display: flex; flex-direction: column; color: #fff; text-decoration: none; background: linear-gradient(150deg, #123B93, #0FA7A0); min-height: 440px; box-shadow: var(--sh-shadow-lg); }
.sh-feature__banner::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; opacity: .22; mix-blend-mode: luminosity; transition: transform .6s var(--sh-ease); }
.sh-feature__banner:hover::before { transform: scale(1.08); }
.sh-feature__banner > * { position: relative; z-index: 2; }
.sh-feature__tag { align-self: flex-start; display: inline-flex; gap: 6px; align-items: center; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); padding: 6px 14px; border-radius: 999px; font-size: .74rem; font-weight: 800; }
.sh-feature__banner h3 { color: #fff; font-size: 2.3rem; line-height: 1.04; margin: auto 0 10px; letter-spacing: -.02em; }
.sh-feature__banner p { color: rgba(255,255,255,.9); font-size: .96rem; margin: 0 0 18px; }
.sh-feature__banner p b { color: #FFCB8E; }
.sh-feature__cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--sh-blue); font-weight: 800; font-size: .9rem; padding: 12px 22px; border-radius: 999px; align-self: flex-start; transition: gap .2s; }
.sh-feature__banner:hover .sh-feature__cta { gap: 12px; }
.sh-feature__timer { display: flex; gap: 10px; margin-top: 18px; }
.sh-feature__t { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); border-radius: 10px; padding: 8px 10px; text-align: center; min-width: 52px; }
.sh-feature__t b { display: block; font-size: 1.25rem; font-weight: 800; }
.sh-feature__t small { font-size: .58rem; opacity: .85; text-transform: uppercase; letter-spacing: .05em; }
.sh-feature__side { display: flex; flex-direction: column; }
.sh-feature__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; }
.sh-feature__head h2 { font-size: var(--fs-h2); }
.sh-feature__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; flex: 1; }
@media (max-width: 900px) { .sh-feature { grid-template-columns: 1fr; } .sh-feature__banner { min-height: 260px; } .sh-feature__banner h3 { font-size: 1.9rem; } }
@media (max-width: 560px) { .sh-feature__grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* =============================================================
   FULL-WIDTH PROMO STRIP (above Live Group Buys)
   ============================================================= */
.sh-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 138px; padding: 26px 44px; border-radius: var(--sh-r-lg); overflow: hidden; position: relative; background: linear-gradient(120deg, #123B93, #0FA7A0); color: #fff; text-decoration: none; box-shadow: var(--sh-shadow); }
.sh-strip::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; opacity: .2; mix-blend-mode: luminosity; }
.sh-strip > * { position: relative; z-index: 2; }
.sh-strip__l { display: flex; align-items: center; gap: 18px; min-width: 0; }
.sh-strip__tag { flex: none; display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.32); padding: 6px 14px; border-radius: 999px; font-size: .72rem; font-weight: 800; white-space: nowrap; letter-spacing: .03em; }
.sh-strip strong { font-size: 1.24rem; font-weight: 800; line-height: 1.25; }
.sh-strip strong b { color: #FFCB8E; }
.sh-strip__cta { flex: none; display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--sh-blue); font-weight: 800; font-size: .9rem; padding: 12px 22px; border-radius: 999px; white-space: nowrap; transition: gap .2s; }
.sh-strip:hover .sh-strip__cta { gap: 12px; }
@media (max-width: 760px) { .sh-strip { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; } .sh-strip__l { flex-direction: column; align-items: flex-start; gap: 10px; } .sh-strip strong { font-size: 1.08rem; } }

/* =============================================================
   BIG PROMO BANNER (300px, full-width)
   ============================================================= */
.sh-bigbanner { display: block; position: relative; height: 300px; border-radius: var(--sh-r-xl); overflow: hidden; text-decoration: none; box-shadow: var(--sh-shadow); background: #16244a; }
.sh-bigbanner::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.sh-bigbanner:hover::before { transform: scale(1.06); }
.sh-bigbanner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,26,66,.92) 0%, rgba(9,26,66,.55) 50%, rgba(9,26,66,.08) 100%); }
.sh-bigbanner__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 40px 60px; max-width: 640px; color: #fff; }
.sh-bigbanner__tag { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); padding: 6px 15px; border-radius: 999px; font-size: .76rem; font-weight: 800; margin-bottom: 14px; }
.sh-bigbanner__content h3 { color: #fff; font-size: 2.2rem; line-height: 1.1; margin: 0 0 12px; letter-spacing: -.02em; }
.sh-bigbanner__content h3 span { color: #FFCB8E; }
.sh-bigbanner__content p { color: rgba(255,255,255,.9); font-size: 1rem; margin: 0 0 22px; max-width: 460px; }
.sh-bigbanner__content .sh-btn { align-self: flex-start; }
@media (max-width: 760px) { .sh-bigbanner { height: 330px; } .sh-bigbanner__content { padding: 30px 24px; max-width: none; } .sh-bigbanner__content h3 { font-size: 1.65rem; } }

/* Full-width newsletter (app section removed) */
.sh-news--wide { text-align: center; padding: 44px 40px; }
.sh-news--wide .sh-news__form { margin: 0 auto; }
@media (max-width: 600px) { .sh-news--wide { padding: 32px 22px; } }
