/* =============================================================
   PAHAL INTERNATIONAL — Core Stylesheet
   Premium Luxury eCommerce Design System
   ============================================================= */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
----------------------------------------------------------------- */
:root {
    /* Brand */
    --brand:            #C8102E;
    --brand-2:          #A30D25;
    --brand-3:          #870A1D;
    --accent:           #111111;

    /* Surfaces */
    --bg:               #F8F9FA;
    --surface:          #FFFFFF;
    --surface-2:        #FFFFFF;
    --border:           #E9ECEF;

    /* Text */
    --text:             #1E1E1E;
    --text-2:           #6C757D;
    --text-invert:      #FFFFFF;

    /* Utility */
    --star:             #FFB400;
    --success:          #1CA67A;
    --danger:           #DC2626;

    /* Gradients */
    --grad-brand:       linear-gradient(135deg, #C8102E, #A30D25);
    --grad-brand-hover: linear-gradient(135deg, #A30D25, #870A1D);
    --grad-dark:        linear-gradient(135deg, #1E1E1E, #2b2b2b);

    /* Shadows */
    --shadow-sm:        0 2px 8px rgba(17, 17, 17, .06);
    --shadow:           0 10px 30px rgba(17, 17, 17, .08);
    --shadow-lg:        0 24px 60px rgba(17, 17, 17, .12);
    --shadow-brand:     0 12px 28px rgba(200, 16, 46, .28);

    /* Radius */
    --r-sm:  10px;
    --r:     16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-pill: 999px;

    /* Typography */
    --font-head: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1320px;
    --header-h:  118px;
    --ease:      cubic-bezier(.16, 1, .3, 1);
    --transition: .35s var(--ease);
}

/* Dark mode overrides */
[data-theme="dark"] {
    --bg:          #0e0f12;
    --surface:     #16181d;
    --surface-2:   #1c1f26;
    --border:      #2a2e37;
    --text:        #f2f3f5;
    --text-2:      #a3a9b5;
    --shadow-sm:   0 2px 8px rgba(0, 0, 0, .4);
    --shadow:      0 10px 30px rgba(0, 0, 0, .5);
    --shadow-lg:   0 24px 60px rgba(0, 0, 0, .6);
}

/* ----------------------------------------------------------------
   2. RESET & BASE
----------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    transition: background .4s var(--ease), color .4s var(--ease);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -.02em;
}

a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--brand); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 10px; border: 2px solid var(--bg); }

.container-xl-custom { max-width: var(--container); margin-inline: auto; padding-inline: 20px; width: 100%; }

/* ----------------------------------------------------------------
   3. UTILITIES
----------------------------------------------------------------- */
.text-brand { color: var(--brand) !important; }
.bg-brand   { background: var(--brand) !important; }
.text-muted-2 { color: var(--text-2) !important; }

.section { padding: 84px 0; position: relative; }
.section-sm { padding: 56px 0; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head);
    font-weight: 700; font-size: .78rem; letter-spacing: .16em;
    text-transform: uppercase; color: var(--brand);
    margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }

.section-title {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    font-weight: 800; margin-bottom: 12px;
}
.section-subtitle { color: var(--text-2); max-width: 560px; font-size: 1.02rem; }
.section-head { margin-bottom: 46px; }
.section-head--center { text-align: center; }
.section-head--center .section-subtitle { margin-inline: auto; }

.divider-gradient { height: 4px; width: 64px; background: var(--grad-brand); border-radius: 4px; }

/* ----------------------------------------------------------------
   4. BUTTONS (gradient + ripple)
----------------------------------------------------------------- */
.btn-pahal {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-head); font-weight: 700; font-size: .95rem;
    padding: 14px 30px; border-radius: var(--r-pill);
    background: var(--grad-brand); color: #fff;
    box-shadow: var(--shadow-brand);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .4s var(--ease);
    isolation: isolate; white-space: nowrap;
}
.btn-pahal:hover { background: var(--grad-brand-hover); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(200,16,46,.36); color: #fff; }
.btn-pahal:active { transform: translateY(-1px) scale(.98); }

.btn-outline-pahal {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-head); font-weight: 700; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--r-pill);
    background: transparent; color: var(--text);
    border: 1.6px solid var(--border);
    transition: all .3s var(--ease);
}
.btn-outline-pahal:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-3px); background: rgba(200,16,46,.05); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700; color: var(--brand); font-size: .95rem;
}
.btn-ghost i { transition: transform .3s var(--ease); }
.btn-ghost:hover { color: var(--brand-2); }
.btn-ghost:hover i { transform: translateX(5px); }

.btn-sm-pahal { padding: 10px 20px; font-size: .85rem; }

/* Ripple element injected by JS */
.ripple-ink {
    position: absolute; border-radius: 50%; transform: scale(0);
    background: rgba(255,255,255,.45); pointer-events: none;
    animation: ripple .6s linear; z-index: -1;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ----------------------------------------------------------------
   5. PRELOADER
----------------------------------------------------------------- */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
    background: var(--surface);
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__logo { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; letter-spacing: .04em; color: var(--text); }
.preloader__logo span { color: var(--brand); }
.preloader__bar { width: 220px; height: 4px; border-radius: 4px; background: var(--border); overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 40%; background: var(--grad-brand); border-radius: 4px; animation: loadbar 1.1s var(--ease) infinite; }
@keyframes loadbar { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ----------------------------------------------------------------
   6. TOP BARS + HEADER
----------------------------------------------------------------- */
.announcement-bar {
    background: var(--grad-brand); color: #fff;
    font-size: .84rem; font-weight: 500;
    text-align: center; overflow: hidden;
    position: relative;
}
.announcement-bar .ann-track { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 40px; min-height: 38px; }
.announcement-bar strong { font-weight: 800; }
.announcement-bar .ann-item { animation: annFade .5s var(--ease); }
@keyframes annFade { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform: none;} }

.topbar {
    background: var(--accent); color: #cfd2d8;
    font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: #cfd2d8; }
.topbar a:hover { color: #fff; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; gap: 20px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__left span, .topbar__right a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__right .divider { width: 1px; height: 14px; background: rgba(255,255,255,.18); }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 900;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .35s var(--ease), padding .35s var(--ease), background .35s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.header__inner {
    display: flex; align-items: center; gap: 26px;
    height: var(--header-h);
    transition: height .35s var(--ease);
}
.site-header.is-stuck .header__inner { height: 88px; }

/* Logo */
.brand-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo img { height: 106px; width: auto; transition: height .35s var(--ease); }
.site-header.is-stuck .brand-logo img { height: 78px; }
.brand-logo__fallback { display: flex; flex-direction: column; line-height: 1; }
.brand-logo__fallback b { font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; letter-spacing: .02em; color: var(--text); }
.brand-logo__fallback b span { color: var(--brand); }
.brand-logo__fallback small { font-size: .58rem; letter-spacing: .34em; color: var(--text-2); font-weight: 600; text-transform: uppercase; }

/* Search */
.header-search { flex: 1; max-width: 620px; position: relative; }
.header-search form { display: flex; align-items: center; background: var(--bg); border: 1.6px solid var(--border); border-radius: var(--r-pill); overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.header-search form:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(200,16,46,.08); }
.header-search .cat-select { border: none; background: var(--grad-brand); color: #fff; font-size: .85rem; font-weight: 700; padding: 0 14px 0 18px; height: 48px; cursor: pointer; outline: none; border-right: 1px solid var(--border); border-radius: var(--r-pill) 0 0 var(--r-pill); transition: background .25s var(--ease); }
.header-search .cat-select:hover { background: var(--grad-brand-hover); }
.header-search .cat-select option { background: var(--surface); color: var(--text); font-weight: 500; }
.header-search input { flex: 1; border: none; background: transparent; padding: 0 16px; height: 48px; color: var(--text); font-size: .92rem; outline: none; }
.header-search input::placeholder { color: var(--text-2); }
.header-search button { background: var(--grad-brand); color: #fff; width: 52px; height: 48px; display: grid; place-items: center; transition: background .3s var(--ease); }
.header-search button:hover { background: var(--grad-brand-hover); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-icon {
    position: relative; width: 46px; height: 46px; border-radius: var(--r-sm);
    display: grid; place-items: center; color: var(--text); font-size: 1.15rem;
    transition: all .25s var(--ease);
}
.header-icon:hover { background: var(--bg); color: var(--brand); transform: translateY(-2px); }
.header-icon .badge-count {
    position: absolute; top: 4px; right: 4px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--grad-brand); color: #fff; font-size: .66rem; font-weight: 700;
    border-radius: var(--r-pill); display: grid; place-items: center;
    border: 2px solid var(--surface);
}
.header-icon__label { display: none; }

/* Mega nav bar */
.nav-bar { background: var(--surface); border-bottom: 1px solid var(--border); position: relative; z-index: 850; }
.nav-bar__inner { display: flex; align-items: center; gap: 10px; }
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.main-nav > li { position: relative; flex-shrink: 0; }
.main-nav > li > a {
    display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
    font-family: var(--font-head); font-weight: 600; font-size: .9rem;
    padding: 16px 12px; color: var(--text); position: relative;
}
.main-nav > li > a::after {
    content: ''; position: absolute; left: 12px; right: 12px; bottom: 10px; height: 2px;
    background: var(--grad-brand); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav > li > a:hover { color: var(--brand); }
.main-nav > li > a:hover::after { transform: scaleX(1); }
.main-nav > li > a.is-highlight { color: var(--brand); }
/* "Categories" pill — brand red */
.main-nav > li > a.is-cats { background: var(--grad-brand); color: #fff; border-radius: var(--r-pill); padding-inline: 18px; box-shadow: var(--shadow-brand); }
.main-nav > li > a.is-cats:hover { background: var(--grad-brand-hover); color: #fff; }
.main-nav > li > a.is-cats::after { display: none; }
.main-nav .nav-badge { background: var(--grad-brand); color: #fff; font-size: .6rem; font-weight: 800; padding: 2px 7px; border-radius: var(--r-pill); text-transform: uppercase; letter-spacing: .04em; }

/* Mega dropdown */
.mega {
    position: absolute; top: calc(100% + 1px); left: 0;
    width: 720px; max-width: 92vw;
    background: var(--surface); border: 1px solid var(--border); border-radius: 0 var(--r) var(--r) var(--r);
    box-shadow: var(--shadow-lg); padding: 28px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
}
.main-nav > li:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega__col h6 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: 14px; }
/* group heading khud bhi ek link hai — poore group ke products dikhata hai */
.mega__col h6 a { color: inherit; text-decoration: none; }
.mega__col h6 a:hover { text-decoration: underline; }
.mega__col a { display: block; padding: 7px 0; color: var(--text-2); font-size: .88rem; font-weight: 500; transition: all .25s var(--ease); }
.mega__col a:hover { color: var(--brand); transform: translateX(5px); }

/* Right side nav extras */
.nav-extras { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; padding-left: 10px; }
.nav-extras a { font-size: .82rem; font-weight: 600; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav-extras a:hover { color: var(--brand); }

/* Lang + Dark toggle */
.theme-toggle {
    width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center;
    color: var(--text); font-size: 1.1rem; transition: all .25s var(--ease); position: relative;
}
.theme-toggle:hover { background: var(--bg); color: var(--brand); }
.theme-toggle .fa-sun { display: none; }
[data-theme="dark"] .theme-toggle .fa-sun  { display: block; }
[data-theme="dark"] .theme-toggle .fa-moon { display: none; }

/* Mobile toggler */
.mobile-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); place-items: center; color: var(--text); font-size: 1.3rem; }

/* ----------------------------------------------------------------
   7. MOBILE OFF-CANVAS MENU
----------------------------------------------------------------- */
.mobile-drawer { position: fixed; inset: 0 auto 0 0; width: 88%; max-width: 360px; z-index: 1200; background: var(--surface); box-shadow: var(--shadow-lg); transform: translateX(-105%); transition: transform .4s var(--ease); display: flex; flex-direction: column; }
.mobile-drawer.is-open { transform: none; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: all .4s var(--ease); z-index: 1150; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.mobile-drawer__body { padding: 10px 0; overflow-y: auto; flex: 1; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; font-weight: 600; font-family: var(--font-head); border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--brand); background: var(--bg); }
/* Expandable "Categories" row */
.mobile-nav__toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 22px; font-weight: 600; font-family: var(--font-head); font-size: 1rem; color: var(--text); background: none; border: 0; border-bottom: 1px solid var(--border); text-align: left; }
.mobile-nav__toggle i { transition: transform .3s var(--ease); }
.mobile-nav__toggle.is-open { color: var(--brand); }
.mobile-nav__toggle.is-open i { transform: rotate(180deg); }
.mobile-subnav { display: none; background: var(--bg); }
.mobile-subnav.is-open { display: block; max-height: 60vh; overflow-y: auto; }
.mobile-subnav a { justify-content: flex-start; gap: 12px; padding: 12px 22px 12px 30px; font-size: .9rem; font-weight: 500; font-family: var(--font-body); }
.mobile-subnav a i { width: 18px; text-align: center; color: var(--brand); font-size: .85rem; }
.mobile-subnav a span { flex: 1; }
.mobile-subnav a em { font-style: normal; font-size: .72rem; color: var(--text-2); background: var(--surface); padding: 2px 9px; border-radius: var(--r-pill); }
.drawer-close { font-size: 1.4rem; color: var(--text-2); }

/* ----------------------------------------------------------------
   8. HERO
----------------------------------------------------------------- */
.hero { position: relative; padding: 30px 0 10px; overflow: hidden; }
.hero__slide { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 30px; min-height: 500px; }
.hero__content { padding: 20px 0; }
.hero__eyebrow { display: inline-block; background: rgba(200,16,46,.1); color: var(--brand); font-family: var(--font-head); font-weight: 700; font-size: .76rem; letter-spacing: .14em; padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 22px; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 800; line-height: 1.08; margin-bottom: 20px; }
.hero__title span { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__subtitle { color: var(--text-2); font-size: 1.08rem; max-width: 480px; margin-bottom: 30px; }
.hero__cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__price { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--text); }

/* Hero visual */
.hero__visual { position: relative; height: 100%; min-height: 460px; display: grid; place-items: center; }
.hero__blob { position: absolute; width: 118%; aspect-ratio: 1; background: radial-gradient(circle at 50% 40%, rgba(200,16,46,.16), transparent 62%); border-radius: 50%; filter: blur(6px); z-index: 0; }
.hero__img-wrap { position: relative; z-index: 2; width: 100%; max-width: 480px; aspect-ratio: 4/4.4; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Floating cards */
.hero-float {
    position: absolute; z-index: 3; background: rgba(255,255,255,.72); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.5); border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; animation: floaty 4s ease-in-out infinite;
}
[data-theme="dark"] .hero-float { background: rgba(28,31,38,.8); border-color: rgba(255,255,255,.08); }
.hero-float i { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-size: 1.1rem; }
.hero-float b { display: block; font-family: var(--font-head); font-size: .95rem; }
.hero-float small { color: var(--text-2); font-size: .76rem; }
.hero-float--tl { top: 8%; left: -4%; animation-delay: .2s; }
.hero-float--br { bottom: 12%; right: -5%; animation-delay: 1.4s; }
.hero-float--rating { top: 44%; right: -8%; animation-delay: .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero__discount-badge {
    position: absolute; top: 16px; right: 16px; z-index: 4;
    width: 88px; height: 88px; border-radius: 50%; background: var(--grad-brand); color: #fff;
    display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-brand);
    font-family: var(--font-head); animation: spinPulse 6s linear infinite;
}
.hero__discount-badge b { font-size: 1.5rem; line-height: 1; }
.hero__discount-badge small { font-size: .6rem; letter-spacing: .1em; }
@keyframes spinPulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.08);} }

/* Countdown */
.countdown { display: flex; gap: 10px; margin-top: 26px; }
.countdown__box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 10px 14px; text-align: center; min-width: 62px; box-shadow: var(--shadow-sm); }
.countdown__box b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--brand); line-height: 1; }
.countdown__box small { font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); }

/* Animated shapes */
.hero__shape { position: absolute; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; opacity: .5; z-index: 0; filter: blur(2px); }
.hero__shape--1 { width: 120px; height: 120px; background: rgba(200,16,46,.12); top: 10%; left: 40%; animation: floaty 7s ease-in-out infinite; }
.hero__shape--2 { width: 80px; height: 80px; background: rgba(17,17,17,.06); bottom: 14%; left: 12%; animation: floaty 9s ease-in-out infinite reverse; }

/* ----------------------------------------------------------------
   8b. FULL-SCREEN HERO BANNER
----------------------------------------------------------------- */
.hero-full { position: relative; width: 100%; }
.hero-full .hero-swiper { width: 100%; }
.hero-full__slide {
    position: relative; overflow: hidden;
    min-height: calc(100vh - var(--header-h));
    display: flex; align-items: center;
    background-size: cover; background-position: center;
}
/* Ken-burns slow zoom on the background */
.hero-full__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); z-index: 0; animation: kenburns 12s ease-out forwards; }
.swiper-slide-active .hero-full__bg { animation: kenburns 12s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }

.hero-full__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(12,12,14,.92) 0%, rgba(12,12,14,.72) 38%, rgba(12,12,14,.30) 62%, rgba(12,12,14,0) 88%),
        linear-gradient(0deg, rgba(12,12,14,.55), rgba(12,12,14,0) 40%);
}
.hero-full__content { position: relative; z-index: 4; max-width: 660px; padding: 70px 0; color: #fff; }
.hero-full__eyebrow {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
    background: rgba(200,16,46,.9); color: #fff; backdrop-filter: blur(6px);
    font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .16em;
    padding: 9px 18px; border-radius: var(--r-pill); text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(200,16,46,.4);
}
.hero-full__eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.hero-full__title { color: #fff; font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 800; line-height: 1.04; margin-bottom: 22px; text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.hero-full__title span { background: linear-gradient(120deg, #ff3b57, #C8102E); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-full__subtitle { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 520px; margin-bottom: 34px; }
.hero-full__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-full__price { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.hero-full__price::before { content: ''; width: 26px; height: 2px; background: var(--brand); }
.btn-glass { border: 1.6px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-glass:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.16); transform: translateY(-3px); }

/* Glass countdown for the dark banner */
.countdown--glass .countdown__box { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); backdrop-filter: blur(10px); box-shadow: none; }
.countdown--glass .countdown__box b { color: #fff; }
.countdown--glass .countdown__box small { color: rgba(255,255,255,.7); }

/* Floating glass cards inside the full banner (kept safely on-screen) */
.hero-full__floats { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-full__floats .hero-float { position: absolute; pointer-events: auto; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(16px); }
.hero-full__floats .hero-float b { color: #fff; }
.hero-full__floats .hero-float small { color: rgba(255,255,255,.75); }
.hero-full__floats .hero-float--tl { top: 12%; right: 6%; left: auto; }
.hero-full__floats .hero-float--rating { top: 46%; right: 3%; }
.hero-full__floats .hero-float--br { bottom: 16%; right: 9%; }

.hero-full__discount {
    position: absolute; top: 12%; right: 3%; z-index: 4;
    width: 104px; height: 104px; border-radius: 50%; background: var(--grad-brand); color: #fff;
    display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-brand);
    font-family: var(--font-head); animation: spinPulse 6s linear infinite; border: 4px solid rgba(255,255,255,.25);
}
.hero-full__discount b { font-size: 1.8rem; line-height: 1; }
.hero-full__discount small { font-size: .62rem; letter-spacing: .1em; }

/* Hero controls */
.hero-full .swiper-pagination { position: absolute; bottom: 34px; left: 0; right: 0; z-index: 6; text-align: center; }
.hero-full .swiper-pagination-bullet { width: 30px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.45); opacity: 1; transition: all .3s var(--ease); }
.hero-full .swiper-pagination-bullet-active { width: 46px; background: var(--brand); }
.hero-full__nav { position: absolute; bottom: 30px; right: 4%; z-index: 6; display: flex; gap: 10px; }
.hero-full__nav .sw-arrow { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(8px); }
.hero-full__nav .sw-arrow:hover { background: var(--grad-brand); border-color: transparent; }

/* Scroll cue */
.hero-scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 6; color: rgba(255,255,255,.7); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-cue i { animation: cueBounce 1.6s ease-in-out infinite; font-size: 1rem; }
@keyframes cueBounce { 0%,100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(8px); opacity: 1; } }

@media (max-width: 991px) {
    .hero-full__slide { min-height: 84vh; text-align: center; }
    .hero-full__overlay { background: linear-gradient(0deg, rgba(12,12,14,.92) 0%, rgba(12,12,14,.55) 55%, rgba(12,12,14,.35) 100%); }
    .hero-full__content { margin-inline: auto; padding: 90px 0 70px; }
    .hero-full__subtitle { margin-inline: auto; }
    .hero-full__cta-row, .countdown { justify-content: center; }
    .hero-full__floats, .hero-full__discount, .hero-scroll-cue { display: none; }
    .hero-full .swiper-pagination { text-align: center; }
}
@media (max-width: 575px) {
    .hero-full__slide { min-height: 78vh; }
    .hero-full__eyebrow { font-size: .68rem; padding: 7px 14px; }
}

/* ----------------------------------------------------------------
   8c. HERO BANNER SLIDER (full-width brand banners)
----------------------------------------------------------------- */
.hero-banner { position: relative; width: 100%; background: var(--surface); }
.hero-banner .hero-swiper { width: 100%; }
.hero-banner__slide { display: block; position: relative; width: 100%; line-height: 0; }
.hero-banner__slide img { width: 100%; height: auto; display: block; }

/* Fallback shown until the banner image is dropped in */
.hero-banner__placeholder { display: none; }
.hero-banner__slide.is-missing img { display: none; }
.hero-banner__slide.is-missing .hero-banner__placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center;
    aspect-ratio: 2000 / 800; width: 100%; padding: 20px; line-height: 1.5;
    background: linear-gradient(120deg, #1a1a1c, #2a2a2e); color: #fff;
}
.hero-banner__placeholder i { font-size: 2.4rem; color: var(--brand); }
.hero-banner__placeholder b { font-family: var(--font-head); font-size: 1.2rem; }
.hero-banner__placeholder small { color: rgba(255,255,255,.6); font-size: .82rem; }
.hero-banner__placeholder code { background: rgba(255,255,255,.1); padding: 2px 8px; border-radius: 6px; color: #ffd9df; }

/* Controls over the banner */
.hero-banner .swiper-pagination { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 6; text-align: center; }
.hero-banner .swiper-pagination-bullet { width: 28px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.55); opacity: 1; box-shadow: 0 1px 4px rgba(0,0,0,.3); transition: all .3s var(--ease); }
.hero-banner .swiper-pagination-bullet-active { width: 42px; background: var(--brand); }
.hero-banner .sw-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; background: rgba(255,255,255,.85); border-color: transparent; color: var(--accent); backdrop-filter: blur(6px); box-shadow: var(--shadow); }
.hero-banner .sw-arrow:hover { background: var(--grad-brand); color: #fff; }
.hero-banner .hero-prev { left: 20px; }
.hero-banner .hero-next { right: 20px; }

@media (max-width: 767px) {
    .hero-banner .sw-arrow { width: 38px; height: 38px; }
    .hero-banner .hero-prev { left: 10px; }
    .hero-banner .hero-next { right: 10px; }
    .hero-banner .swiper-pagination { bottom: 10px; }
    .hero-banner .swiper-pagination-bullet { width: 18px; }
    .hero-banner .swiper-pagination-bullet-active { width: 28px; }
}

/* ----------------------------------------------------------------
   9. CATEGORY STRIP
----------------------------------------------------------------- */
.cat-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 22px 16px; text-align: center; transition: all .35s var(--ease); display: block; height: 100%;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card__icon { width: 78px; height: 78px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: rgba(200,16,46,.08); color: var(--brand); font-size: 1.9rem; transition: all .35s var(--ease); }
.cat-card:hover .cat-card__icon { background: var(--grad-brand); color: #fff; transform: scale(1.06); }
.cat-card h6 { font-size: .98rem; margin-bottom: 3px; }
.cat-card span { font-size: .78rem; color: var(--text-2); }

/* ----------------------------------------------------------------
   10. PRODUCT CARD
----------------------------------------------------------------- */
.product-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
    overflow: hidden; transition: all .4s var(--ease); position: relative; height: 100%; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.08); }

.product-badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .04em;
    padding: 5px 11px; border-radius: var(--r-pill); color: #fff; background: var(--grad-brand); text-transform: uppercase;
}
.product-badge--dark { background: var(--accent); }
.product-discount {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .72rem;
    padding: 5px 9px; border-radius: var(--r-sm);
}

.product-actions {
    position: absolute; top: 50%; right: 14px; transform: translateY(-50%) translateX(20px);
    display: flex; flex-direction: column; gap: 8px; z-index: 4; opacity: 0; transition: all .4s var(--ease);
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(-50%) translateX(0); }
.product-actions button {
    width: 42px; height: 42px; border-radius: 50%; background: var(--surface); color: var(--text);
    display: grid; place-items: center; box-shadow: var(--shadow); font-size: .95rem; transition: all .25s var(--ease);
}
.product-actions button:hover { background: var(--grad-brand); color: #fff; transform: scale(1.1); }

.product-cart-btn {
    position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 4;
    background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .85rem;
    padding: 11px; border-radius: var(--r-pill); display: flex; align-items: center; justify-content: center; gap: 8px;
    transform: translateY(20px); opacity: 0; transition: all .4s var(--ease);
}
.product-card:hover .product-cart-btn { transform: translateY(0); opacity: 1; }
.product-cart-btn:hover { background: var(--grad-brand-hover); }

.product-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__brand { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); font-weight: 600; margin-bottom: 5px; }
.product-card__title { font-size: .98rem; font-weight: 600; font-family: var(--font-body); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.product-card__title:hover { color: var(--brand); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; font-size: .8rem; }
.product-rating .stars { color: var(--star); letter-spacing: 1px; }
.product-rating span { color: var(--text-2); }
.product-price { margin-top: auto; display: flex; align-items: baseline; gap: 9px; }
.product-price .now { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--text); }
.product-price .was { font-size: .88rem; color: var(--text-2); text-decoration: line-through; }

/* Section carousel arrows */
.swiper-nav { display: flex; gap: 8px; }
.swiper-nav button, .sw-arrow {
    width: 46px; height: 46px; border-radius: 50%; border: 1.6px solid var(--border); background: var(--surface);
    color: var(--text); display: grid; place-items: center; transition: all .3s var(--ease);
}
.swiper-nav button:hover, .sw-arrow:hover { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-2px); }
.swiper-nav button:disabled { opacity: .4; cursor: not-allowed; }

/* Tabs */
.pill-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-tab {
    font-family: var(--font-head); font-weight: 600; font-size: .88rem; padding: 9px 20px; border-radius: var(--r-pill);
    background: var(--surface); border: 1.4px solid var(--border); color: var(--text-2); transition: all .3s var(--ease);
}
.pill-tab:hover { color: var(--brand); border-color: var(--brand); }
.pill-tab.is-active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-brand); }

/* ----------------------------------------------------------------
   11. FLASH SALE
----------------------------------------------------------------- */
.flash-sale { background: var(--grad-dark); border-radius: var(--r-xl); padding: 40px; position: relative; overflow: hidden; color: #fff; }
.flash-sale::before { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,16,46,.4), transparent 70%); top: -80px; right: -60px; }
.flash-sale__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; position: relative; z-index: 2; margin-bottom: 28px; }
.flash-sale h3 { color: #fff; font-size: 1.8rem; display: flex; align-items: center; gap: 12px; }
.flash-sale h3 i { color: var(--brand); }
.flash-countdown { display: flex; align-items: center; gap: 10px; }
.flash-countdown .fc-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-sm); padding: 8px 12px; text-align: center; min-width: 56px; }
.flash-countdown .fc-box b { display: block; font-family: var(--font-head); font-size: 1.35rem; color: #fff; line-height: 1; }
.flash-countdown .fc-box small { font-size: .6rem; text-transform: uppercase; color: rgba(255,255,255,.7); letter-spacing: .06em; }
.flash-countdown .fc-sep { font-size: 1.3rem; font-weight: 800; color: var(--brand); }

/* ----------------------------------------------------------------
   12. PROMO BANNER
----------------------------------------------------------------- */
.promo-banner { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 320px; display: flex; align-items: center; }
.promo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-banner__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,17,.85), rgba(17,17,17,.35) 60%, transparent); }
.promo-banner__content { position: relative; z-index: 2; padding: 46px; max-width: 560px; color: #fff; }
.promo-banner__content .eyebrow { color: #fff; }
.promo-banner__content h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.promo-banner__content p { color: rgba(255,255,255,.85); margin-bottom: 24px; font-size: 1.05rem; }
/* no image uploaded → clean brand gradient */
.promo-banner--plain { background: linear-gradient(120deg, #C8102E 0%, #A30D25 55%, #111 100%); }
/* copy-able coupon code chip */
.promo-code { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.14); border: 1.5px dashed rgba(255,255,255,.55); color: #fff; padding: 10px 18px; border-radius: var(--r-pill); margin-bottom: 22px; cursor: pointer; transition: all .25s var(--ease); }
.promo-code:hover { background: rgba(255,255,255,.24); }
.promo-code b { font-family: var(--font-head); letter-spacing: .08em; font-size: 1.05rem; }
.promo-code small { color: rgba(255,255,255,.7); font-size: .72rem; }

/* ----------------------------------------------------------------
   13. WHY CHOOSE US
----------------------------------------------------------------- */
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 22px; text-align: center; transition: all .35s var(--ease); height: 100%; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card__icon { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 20px; display: grid; place-items: center; background: rgba(200,16,46,.1); color: var(--brand); font-size: 1.5rem; transition: all .35s var(--ease); }
.feature-card:hover .feature-card__icon { background: var(--grad-brand); color: #fff; transform: rotate(-8deg) scale(1.05); }
.feature-card h6 { font-size: 1.05rem; margin-bottom: 7px; }
.feature-card p { font-size: .86rem; color: var(--text-2); margin: 0; }

/* Stats */
.stats-strip { background: var(--grad-brand); border-radius: var(--r-xl); padding: 40px; color: #fff; }
.stat-item { text-align: center; color: #fff; }
.stat-item b { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); display: block; line-height: 1; }
.stat-item b span { font-size: inherit; opacity: 1; }
.stat-item > span { font-size: .9rem; opacity: .9; }

/* ----------------------------------------------------------------
   14. TESTIMONIALS
----------------------------------------------------------------- */
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; height: 100%; position: relative; box-shadow: var(--shadow-sm); }
.testimonial-card .quote-mark { position: absolute; top: 22px; right: 26px; font-size: 3rem; color: rgba(200,16,46,.12); font-family: Georgia, serif; line-height: 1; }
.testimonial-card .stars { color: var(--star); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: .98rem; color: var(--text); margin-bottom: 22px; }
.testimonial-user { display: flex; align-items: center; gap: 14px; }
.testimonial-user img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial-user b { display: block; font-family: var(--font-head); font-size: .95rem; }
.testimonial-user small { color: var(--text-2); font-size: .78rem; }

/* ----------------------------------------------------------------
   15. BRANDS SLIDER
----------------------------------------------------------------- */

/* ----------------------------------------------------------------
   16. INSTAGRAM
----------------------------------------------------------------- */
.insta-item { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-item:hover img { transform: scale(1.1); }
.insta-item::after { content: '\f16d'; font-family: 'Font Awesome 6 Brands'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.6rem; background: rgba(200,16,46,.6); opacity: 0; transition: opacity .35s var(--ease); }
.insta-item:hover::after { opacity: 1; }

/* ----------------------------------------------------------------
   17. CTA BAND (dark gradient panel — About page "Partner With Us")
----------------------------------------------------------------- */
.newsletter { background: var(--grad-dark); border-radius: var(--r-xl); padding: 54px 40px; text-align: center; position: relative; overflow: hidden; color: #fff; }
.newsletter::before { content: ''; position: absolute; width: 360px; height: 360px; background: radial-gradient(circle, rgba(200,16,46,.35), transparent 70%); top: -120px; left: -80px; }
.newsletter::after { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,16,46,.28), transparent 70%); bottom: -120px; right: -60px; }
.newsletter__inner { position: relative; z-index: 2; max-width: 620px; margin-inline: auto; }
.newsletter h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,.78); margin-bottom: 26px; }

/* ----------------------------------------------------------------
   18. BLOG
----------------------------------------------------------------- */
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; height: 100%; transition: all .35s var(--ease); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card__media { aspect-ratio: 16/11; overflow: hidden; position: relative; background: #f7f8fa; }
.blog-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__cat { position: absolute; top: 14px; left: 14px; background: var(--grad-brand); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: var(--r-pill); }
.blog-card__body { padding: 22px; }
.blog-card__meta { display: flex; gap: 16px; font-size: .78rem; color: var(--text-2); margin-bottom: 10px; }
.blog-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-card h5 { font-size: 1.12rem; line-height: 1.4; margin-bottom: 14px; }
.blog-card h5:hover { color: var(--brand); }
/* Carousel context: percentage-height circularity se bacho */
.blog-swiper .swiper-slide { height: auto; display: flex; }
.blog-swiper .blog-card { height: auto; width: 100%; display: flex; flex-direction: column; }
.blog-swiper .blog-card__media { flex: 0 0 auto; }
.blog-swiper .blog-card__body { flex: 1 1 auto; }

/* ----------------------------------------------------------------
   18b. INSTAGRAM FEED
----------------------------------------------------------------- */
.insta-profile { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 28px; }
.insta-profile__avatar { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; border: 3px solid transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(45deg, #FEDA75, #D62976, #962FBF) border-box; }
.insta-profile__info b { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--text-1); }
.insta-profile__info small { color: var(--text-2); }
.insta-profile__stat { text-align: center; }
.insta-profile__stat b { display: block; font-size: 1.05rem; color: var(--text-1); }
.insta-profile__stat small { color: var(--text-2); font-size: .78rem; }
.insta-follow-btn { display: inline-flex; align-items: center; gap: 8px; background: #0095f6; color: #fff !important; font-weight: 700; font-size: .9rem; padding: 10px 22px; border-radius: 10px; transition: all .25s var(--ease); }
.insta-follow-btn:hover { background: #0083d6; transform: translateY(-2px); }
.insta-card { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: 14px; overflow: hidden; background: #111; }
.insta-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.insta-card:hover > img { transform: scale(1.05); }
.insta-card__play { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.55); display: grid; place-items: center; color: #fff; font-size: .75rem; }
.insta-card__ig { position: absolute; right: 10px; bottom: 62px; color: #fff; font-size: 1.05rem; opacity: .9; }
.insta-card__foot { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 9px; padding: 10px 12px; background: #0a0a0a; }
.insta-card__foot img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.insta-card__foot b { display: block; color: #fff; font-size: .78rem; line-height: 1.2; }
.insta-card__foot small { color: rgba(255,255,255,.65); font-size: .68rem; }

/* ----------------------------------------------------------------
   19. FOOTER
----------------------------------------------------------------- */
.site-footer { background: var(--accent); color: #b9bdc7; padding-top: 70px; margin-top: 90px; position: relative; }
[data-theme="dark"] .site-footer { background: #0a0b0e; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand__logo img { height: 98px; }
.footer-brand__logo b { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; }
.footer-brand__logo b span { color: var(--brand); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 22px; max-width: 340px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact li i { color: var(--brand); margin-top: 4px; }
.footer-col { text-align: center; }
.footer-col__caret { display: none; }   /* sirf mobile accordion me dikhta hai */
.footer-col h6 { color: #fff; font-family: var(--font-head); font-size: 1.02rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h6::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 32px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
/* links stay in one straight left-aligned line, the whole block sits centered */
.footer-col ul { display: inline-block; text-align: left; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col .footer-social { justify-content: center; }
.footer-col ul li a { font-size: .9rem; color: #b9bdc7; transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: #fff; transform: translateX(5px); }
.footer-col ul li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .7rem; color: var(--brand); }

.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #fff; transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--grad-brand); transform: translateY(-3px); }
/* Amazon store link — signature orange so it stands out */
.footer-social a[aria-label="amazon"] i, .topbar a[aria-label="amazon"] i { color: #FF9900; }
.footer-social a[aria-label="amazon"]:hover { background: #FF9900; }
.footer-social a[aria-label="amazon"]:hover i, .topbar a[aria-label="amazon"]:hover i { color: #fff; }

.footer-app-badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-app-badges a { border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 8px 14px; display: flex; align-items: center; gap: 10px; font-size: .8rem; color: #fff; transition: all .3s var(--ease); }
.footer-app-badges a:hover { border-color: var(--brand); }
.footer-app-badges i { font-size: 1.4rem; }

/* Payment + delivery strip */
.footer-partners { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-partners__group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-partners__group > span { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #7b8090; margin-right: 6px; }
.pay-chip { background: #fff; color: #1E1E1E; font-family: var(--font-head); font-weight: 700; font-size: .74rem; padding: 7px 12px; border-radius: 8px; }
.ship-chip { border: 1px solid rgba(255,255,255,.16); color: #d5d8e0; font-size: .74rem; font-weight: 600; padding: 7px 12px; border-radius: 8px; }

.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-credit a { color: var(--brand); font-weight: 600; }
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* ----------------------------------------------------------------
   20. BACK TO TOP + FLOATING WHATSAPP
----------------------------------------------------------------- */
.back-to-top { position: fixed; bottom: 26px; right: 26px; width: 50px; height: 50px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-brand); z-index: 700; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .35s var(--ease); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--grad-brand-hover); transform: translateY(-4px); color: #fff; }

.wa-float { position: fixed; bottom: 88px; right: 26px; width: 50px; height: 50px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 1.4rem; box-shadow: var(--shadow); z-index: 700; transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ----------------------------------------------------------------
   21. SKELETON LOADING (utility)
----------------------------------------------------------------- */
.skeleton { background: linear-gradient(90deg, var(--border) 25%, rgba(233,236,239,.4) 37%, var(--border) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: var(--r-sm); }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ----------------------------------------------------------------
   22. AOS-like fallback (in case CDN blocked) — subtle
----------------------------------------------------------------- */
[data-aos] { will-change: transform, opacity; }

/* ----------------------------------------------------------------
   23. RESPONSIVE
----------------------------------------------------------------- */
@media (max-width: 1199px) {
    .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
    .mega { width: 620px; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .section { padding: 60px 0; }
    .header-search { display: none; }
    .nav-bar { display: none; }
    .topbar { display: none; }
    .mobile-toggle { display: grid; }
    .header-icon__desktop-only { display: none; }
    .hero__slide { grid-template-columns: 1fr; text-align: center; }
    .hero__content { order: 2; }
    .hero__visual { order: 1; min-height: 340px; }
    .hero__subtitle { margin-inline: auto; }
    .hero__cta-row, .countdown { justify-content: center; }
    .hero-float--rating, .hero-float--tl { display: none; }
    .stats-strip .stat-item { margin-bottom: 20px; }
}
@media (max-width: 767px) {
    .footer-top { grid-template-columns: 1fr; }
    .flash-sale, .newsletter, .promo-banner__content { padding: 30px 22px; }
    .flash-sale__head { flex-direction: column; align-items: flex-start; }
    .header__inner { gap: 12px; }
    .section-head { text-align: left; }
    .footer-partners { justify-content: center; text-align: center; }
    .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 575px) {
    .brand-logo img { height: 62px; }
    .brand-logo__fallback b { font-size: 1.05rem; }
}

/* =============================================================
   24. PRODUCT LIST / SHOP PAGE
   ============================================================= */

/* Breadcrumb + page banner */
.page-banner { position: relative; padding: 46px 0; background: linear-gradient(120deg, #1a1a1c, #2a2a2e); overflow: hidden; color: #fff; }
.page-banner::before { content: ''; position: absolute; width: 340px; height: 340px; background: radial-gradient(circle, rgba(200,16,46,.4), transparent 70%); top: -120px; right: -60px; }
.page-banner::after { content: ''; position: absolute; width: 260px; height: 260px; background: radial-gradient(circle, rgba(200,16,46,.25), transparent 70%); bottom: -140px; left: 8%; }
.page-banner__inner { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0; }
.breadcrumb-pahal { display: flex; align-items: center; gap: 10px; font-size: .84rem; margin-bottom: 16px; color: rgba(255,255,255,.6); flex-wrap: wrap; }
.breadcrumb-pahal a { color: rgba(255,255,255,.8); }
.breadcrumb-pahal a:hover { color: #fff; }
.breadcrumb-pahal .sep { color: rgba(255,255,255,.35); font-size: .7rem; }
.breadcrumb-pahal .current { color: var(--brand); font-weight: 600; }

/* Shop layout */
.shop-layout { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: start; }

/* Sidebar */
.shop-sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: 18px; }
.filter-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.filter-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.filter-card__head h6 { font-size: 1rem; margin: 0; display: flex; align-items: center; gap: 10px; }
.filter-card__head h6 i { color: var(--brand); font-size: .9rem; }
.filter-card__head button { font-size: .78rem; color: var(--brand); font-weight: 600; }
.filter-group { border-bottom: 1px solid var(--border); padding: 18px 0; }
.filter-group:first-of-type { padding-top: 0; }
.filter-group:last-of-type { border-bottom: none; padding-bottom: 0; }
.filter-group__title { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: .92rem; margin-bottom: 14px; }
.filter-group__title i { transition: transform .3s var(--ease); color: var(--text-2); font-size: .8rem; }
.filter-group.is-collapsed .filter-group__title i { transform: rotate(-90deg); }
.filter-group.is-collapsed .filter-group__body { display: none; }
.filter-scroll { max-height: 190px; overflow-y: auto; padding-right: 6px; }

/* Custom checkbox rows */
.filter-check { display: flex; align-items: center; gap: 11px; padding: 6px 0; cursor: pointer; font-size: .88rem; color: var(--text-2); transition: color .2s var(--ease); position: relative; }
.filter-check:hover { color: var(--text); }
.filter-check input { position: absolute; opacity: 0; pointer-events: none; }
.filter-check .box { width: 19px; height: 19px; border-radius: 6px; border: 1.8px solid var(--border); display: grid; place-items: center; flex-shrink: 0; transition: all .2s var(--ease); }
.filter-check .box::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .6rem; color: #fff; opacity: 0; transform: scale(.5); transition: all .2s var(--ease); }
.filter-check input:checked + .box { background: var(--grad-brand); border-color: transparent; }
.filter-check input:checked + .box::after { opacity: 1; transform: scale(1); }
.filter-check .count { margin-left: auto; font-size: .78rem; color: var(--text-2); background: var(--bg); padding: 1px 8px; border-radius: var(--r-pill); }

/* Price slider */
.price-slider { position: relative; height: 6px; background: var(--border); border-radius: 6px; margin: 26px 6px 18px; }
.price-slider .track { position: absolute; height: 100%; background: var(--grad-brand); border-radius: 6px; }
.price-slider input[type=range] { position: absolute; top: 50%; left: 0; width: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: none; pointer-events: none; transform: translateY(-50%); }
.price-slider input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); box-shadow: var(--shadow-sm); cursor: pointer; pointer-events: auto; }
.price-slider input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); cursor: pointer; pointer-events: auto; }
.price-values { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-pill { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 8px 12px; font-weight: 700; font-family: var(--font-head); font-size: .85rem; }

/* Colour swatches */
.color-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch { width: 30px; height: 30px; border-radius: 50%; cursor: pointer; position: relative; border: 2px solid var(--border); transition: transform .2s var(--ease); }
.color-swatch:hover { transform: scale(1.12); }
.color-swatch.is-active::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: .7rem; mix-blend-mode: difference; }
.color-swatch.is-active { box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--brand); }

/* Size chips */
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip { min-width: 42px; height: 38px; padding: 0 10px; border-radius: var(--r-sm); border: 1.6px solid var(--border); display: grid; place-items: center; font-weight: 600; font-size: .85rem; cursor: pointer; transition: all .2s var(--ease); color: var(--text-2); }
.size-chip:hover { border-color: var(--brand); color: var(--brand); }
.size-chip.is-active { background: var(--grad-brand); border-color: transparent; color: #fff; }

/* Rating rows */
.rating-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; color: var(--text-2); font-size: .85rem; }
.rating-row .stars { color: var(--star); letter-spacing: 1px; }
.rating-row:hover { color: var(--text); }

/* Sidebar promo */
.sidebar-promo { border-radius: var(--r-lg); overflow: hidden; position: relative; color: #fff; padding: 28px 22px; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--grad-dark); }
.sidebar-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.sidebar-promo__c { position: relative; z-index: 2; }
.sidebar-promo span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; opacity: .8; }
.sidebar-promo h5 { color: #fff; font-size: 1.3rem; margin: 8px 0 8px; }
.sidebar-promo p { color: rgba(255,255,255,.8); font-size: .84rem; line-height: 1.5; margin: 0 0 14px; }
/* no promo image uploaded → brand gradient (same look as the homepage promo band) */
.sidebar-promo--plain { background: linear-gradient(150deg, #C8102E 0%, #A30D25 55%, #111 100%); }
/* the shared .promo-code chip is sized for a full-width band — slim it down for the 300px sidebar */
.sidebar-promo .promo-code { padding: 7px 13px; margin-bottom: 14px; gap: 7px; }
.sidebar-promo .promo-code b { font-size: .92rem; }
.sidebar-promo .promo-code small { font-size: .66rem; }

/* Toolbar */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 18px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.shop-toolbar__left { display: flex; align-items: center; gap: 14px; font-size: .88rem; color: var(--text-2); }
.shop-toolbar__left b { color: var(--text); }
.shop-toolbar__right { display: flex; align-items: center; gap: 12px; }
.sort-select { background: var(--bg); border: 1.4px solid var(--border); border-radius: var(--r-pill); padding: 10px 16px; font-size: .85rem; font-weight: 600; color: var(--text); cursor: pointer; outline: none; }
.filter-mobile-btn { display: none; }
.view-toggle { display: flex; gap: 4px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px; }
.view-toggle button { width: 38px; height: 34px; border-radius: var(--r-pill); display: grid; place-items: center; color: var(--text-2); transition: all .2s var(--ease); }
.view-toggle button.is-active { background: var(--grad-brand); color: #fff; }

/* Active filter chips */
.active-filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 14px; font-size: .82rem; font-weight: 600; }
.filter-chip button { color: var(--text-2); font-size: .8rem; }
.filter-chip button:hover { color: var(--brand); }
.clear-all-link { font-size: .82rem; color: var(--brand); font-weight: 700; }

/* Product grid state */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* List view */
.shop-grid.is-list { grid-template-columns: 1fr; gap: 18px; }
.shop-grid.is-list .product-card { flex-direction: row; }
.shop-grid.is-list .product-card__media { width: 260px; flex-shrink: 0; aspect-ratio: auto; }
.shop-grid.is-list .product-card__body { padding: 24px 26px; justify-content: center; }
.shop-grid.is-list .product-cart-btn { position: static; opacity: 1; transform: none; margin-top: 16px; width: max-content; padding-inline: 26px; }
.shop-grid.is-list .product-actions { opacity: 1; transform: translateY(-50%); flex-direction: row; top: 20px; right: 20px; }
.shop-grid.is-list .product-card__title { -webkit-line-clamp: 1; min-height: 0; font-size: 1.15rem; }
.list-only { display: none; }
.shop-grid.is-list .list-only { display: block; color: var(--text-2); font-size: .9rem; margin: 8px 0 4px; }

/* Pagination */
.pagination-pahal { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 46px; flex-wrap: wrap; }
.pagination-pahal a, .pagination-pahal span { min-width: 44px; height: 44px; padding: 0 8px; border-radius: var(--r-sm); border: 1.4px solid var(--border); background: var(--surface); display: grid; place-items: center; font-weight: 600; font-size: .9rem; color: var(--text); transition: all .25s var(--ease); }
.pagination-pahal a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.pagination-pahal .is-active { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: var(--shadow-brand); }
.pagination-pahal .dots { border: none; background: none; }
.pagination-pahal .nav-btn { gap: 8px; font-family: var(--font-head); }

/* Filter offcanvas (mobile) */
.filter-offcanvas { position: fixed; inset: 0 auto 0 0; width: 88%; max-width: 340px; background: var(--surface); z-index: 1200; transform: translateX(-105%); transition: transform .4s var(--ease); overflow-y: auto; box-shadow: var(--shadow-lg); }
.filter-offcanvas.is-open { transform: none; }
.filter-offcanvas__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--surface); z-index: 2; }

/* Responsive */
@media (max-width: 1199px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .filter-mobile-btn { display: inline-flex; }
    .shop-grid.is-list .product-card__media { width: 200px; }
}
@media (max-width: 767px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .shop-grid.is-list .product-card { flex-direction: column; }
    .shop-grid.is-list .product-card__media { width: 100%; }
    .shop-grid.is-list .product-actions { flex-direction: column; top: 50%; }
}
@media (max-width: 479px) { .shop-grid { grid-template-columns: 1fr; } }

/* =============================================================
   25. PRODUCT DETAILS PAGE
   ============================================================= */
.pd-wrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 44px; align-items: start; position: relative; }

/* ---------- Gallery ---------- */
.pd-gallery { position: sticky; top: var(--header-h); min-height: calc(100vh - var(--header-h)); align-content: center; display: grid; grid-template-columns: 84px 1fr; gap: 14px; }
/* single-image products: no thumbs column — stage takes the full width */
.pd-gallery--single { grid-template-columns: 1fr; }
.pd-thumbs { display: flex; flex-direction: column; gap: 12px; max-height: 520px; overflow-y: auto; padding-right: 2px; }
.pd-thumb { border: 2px solid var(--border); border-radius: var(--r-sm); overflow: hidden; cursor: pointer; aspect-ratio: 1; background: var(--surface); transition: all .25s var(--ease); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { border-color: var(--brand); }
.pd-thumb.is-active { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(200,16,46,.15); }

/* Video thumb in the gallery strip (Admin → Products → Video URL) */
.pd-thumb--video { position: relative; }
.pd-thumb--video::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.34); }
.pd-thumb__play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.pd-thumb__play i { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-size: .62rem; display: grid; place-items: center; padding-left: 2px; }
.pd-stage__video { position: absolute; inset: 0; z-index: 6; background: #000; display: none; }
.pd-stage__video iframe, .pd-stage__video video { width: 100%; height: 100%; border: 0; display: block; object-fit: contain; }
.pd-stage.is-video { cursor: default; }
.pd-stage.is-video .pd-stage__video { display: block; }
.pd-stage.is-video .pd-stage__badges, .pd-stage.is-video .pd-stage__tools { display: none; }

.pd-stage { position: relative; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); aspect-ratio: 1; cursor: crosshair; }
.pd-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-stage__badges { position: absolute; top: 16px; left: 16px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.pd-stage__badges span { background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: 5px 12px; border-radius: var(--r-pill); width: max-content; }
.pd-stage__badges span:nth-child(2) { background: var(--accent); }
.pd-stage__tools { position: absolute; top: 16px; right: 16px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.pd-stage__tools button { width: 42px; height: 42px; border-radius: 50%; background: var(--surface); color: var(--text); display: grid; place-items: center; box-shadow: var(--shadow); transition: all .25s var(--ease); }
.pd-stage__tools button:hover { background: var(--grad-brand); color: #fff; }

/* Zoom magnifier */
.pd-zoom-lens { position: absolute; width: 150px; height: 150px; border: 2px solid var(--brand); background: rgba(200,16,46,.08); pointer-events: none; display: none; z-index: 5; border-radius: 8px; }
.pd-zoom-result { position: absolute; top: 0; left: calc(100% + 20px); width: 460px; height: 460px; border: 1px solid var(--border); border-radius: var(--r-lg); background-repeat: no-repeat; background-color: var(--surface); box-shadow: var(--shadow-lg); display: none; z-index: 60; }
.pd-gallery-media { position: relative; }
.pd-media-actions { display: flex; gap: 10px; margin-top: 14px; grid-column: 2; }
.pd-media-actions button { flex: 1; border: 1.4px solid var(--border); border-radius: var(--r-sm); padding: 10px; font-weight: 600; font-size: .82rem; color: var(--text-2); display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all .25s var(--ease); background: var(--surface); }
.pd-media-actions button:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- Info ---------- */
/* Inline product video (Amazon-style) */
.pd-video-inline { position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; background: #000; cursor: pointer; box-shadow: 0 18px 50px rgba(0,0,0,.22); }
.pd-video-inline__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pd-video-inline video.pd-video-inline__thumb { object-fit: contain; background: #000; }
.pd-video-inline__play { position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 50%; background: linear-gradient(135deg, #C8102E, #A30D25); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(200,16,46,.5); transition: transform .25s var(--ease); }
.pd-video-inline:hover .pd-video-inline__play { transform: scale(1.08); }
.pd-video-inline__play i { color: #fff; font-size: 24px; margin-left: 5px; }

.pd-brandline { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pd-brandline a { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); }
.pd-brandline .sku { font-size: .78rem; color: var(--text-2); }
.pd-title { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.25; margin-bottom: 14px; }
.pd-ratingline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); font-size: .88rem; }
.pd-ratingline .stars { color: var(--star); letter-spacing: 1px; }
.pd-ratingline .pill { background: var(--success); color: #fff; padding: 2px 9px; border-radius: var(--r-pill); font-weight: 700; font-size: .8rem; display: inline-flex; gap: 5px; align-items: center; }
.pd-ratingline a { color: var(--text-2); }
.pd-ratingline a:hover { color: var(--brand); }
.pd-ratingline .sep { width: 1px; height: 14px; background: var(--border); }

/* Price */
.pd-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.pd-price .now { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--text); }
.pd-price .was { font-size: 1.05rem; color: var(--text-2); text-decoration: line-through; }
.pd-price .off { background: rgba(200,16,46,.1); color: var(--brand); font-weight: 800; font-size: .9rem; padding: 4px 10px; border-radius: var(--r-sm); }
.pd-save { font-size: .86rem; color: var(--success); font-weight: 600; margin-bottom: 4px; }
.pd-tax { font-size: .78rem; color: var(--text-2); margin-bottom: 22px; }

/* Highlights */
.pd-highlights { margin-bottom: 22px; }
.pd-highlights h6 { font-size: .95rem; margin-bottom: 12px; }
.pd-highlights li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--text); margin-bottom: 9px; }
.pd-highlights li i { color: var(--success); margin-top: 4px; font-size: .8rem; }

/* Variant groups */
.pd-variant { margin-bottom: 20px; }
.pd-variant__label { font-size: .88rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 10px; }
.pd-variant__label span { color: var(--text-2); font-weight: 500; }
.pd-colors { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-color { width: 40px; height: 40px; border-radius: 50%; cursor: pointer; position: relative; border: 2px solid var(--border); transition: transform .2s var(--ease); }
.pd-color:hover { transform: scale(1.1); }
.pd-color.is-active { box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--brand); }
.pd-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-chip { min-width: 62px; padding: 10px 18px; border-radius: var(--r-sm); border: 1.6px solid var(--border); font-weight: 600; font-size: .88rem; cursor: pointer; text-align: center; color: var(--text-2); transition: all .2s var(--ease); }
.pd-chip:hover { border-color: var(--brand); color: var(--brand); }
.pd-chip.is-active { border-color: var(--brand); color: var(--brand); background: rgba(200,16,46,.06); }

/* Quantity + actions */
.pd-buy-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.6px solid var(--border); border-radius: var(--r-pill); overflow: hidden; }
.qty-stepper button { width: 44px; height: 50px; display: grid; place-items: center; color: var(--text); font-size: 1rem; transition: all .2s var(--ease); }
.qty-stepper button:hover { background: var(--bg); color: var(--brand); }
.qty-stepper input { width: 48px; height: 50px; border: none; text-align: center; font-weight: 700; font-family: var(--font-head); font-size: 1rem; background: transparent; color: var(--text); outline: none; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-actions { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-actions .btn-pahal, .pd-actions .btn-outline-pahal { flex: 1; min-width: 180px; padding-block: 15px; }
.pd-buy-now { background: linear-gradient(135deg, #111, #2b2b2b); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.pd-buy-now:hover { background: linear-gradient(135deg, #000, #1a1a1a); }
.pd-mini-actions { display: flex; gap: 20px; margin-bottom: 22px; }
.pd-mini-actions button { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--text-2); transition: color .2s var(--ease); }
.pd-mini-actions button:hover { color: var(--brand); }

/* Offers box */
.pd-offers { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; margin-bottom: 20px; background: var(--surface); }
.pd-offers h6 { font-size: .95rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.pd-offers h6 i { color: var(--brand); }
.pd-offers li { display: flex; gap: 12px; align-items: flex-start; font-size: .86rem; margin-bottom: 12px; }
.pd-offers li:last-child { margin-bottom: 0; }
.pd-offers li i { width: 34px; height: 34px; border-radius: 10px; background: rgba(200,16,46,.1); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; font-size: .85rem; }

/* Delivery / assurance */
.pd-assure { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; border-top: 1px solid var(--border); padding-top: 20px; margin-bottom: 20px; }
.pd-assure__item { text-align: center; font-size: .74rem; color: var(--text-2); }
.pd-assure__item i { display: block; font-size: 1.3rem; color: var(--brand); margin-bottom: 8px; }
.pd-delivery { display: flex; gap: 12px; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; margin-bottom: 18px; }
.pd-delivery i { font-size: 1.3rem; color: var(--brand); }
.pd-delivery b { font-size: .9rem; } .pd-delivery small { color: var(--text-2); font-size: .8rem; }
.pd-pincode { display: flex; gap: 8px; margin-top: 10px; }
.pd-pincode input { flex: 1; border: 1.4px solid var(--border); border-radius: var(--r-sm); padding: 9px 14px; background: var(--surface); color: var(--text); outline: none; font-size: .85rem; }
.pd-pincode button { background: transparent; color: var(--brand); font-weight: 700; font-size: .85rem; padding: 0 6px; }
.pd-pay-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pd-pay-row .pay-chip { background: var(--bg); color: var(--text); border: 1px solid var(--border); }

/* ---------- Tabs ---------- */
.pd-tabs { margin-top: 70px; }
.pd-tabnav { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 30px; overflow-x: auto; }
.pd-tabnav button { font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding: 14px 22px; color: var(--text-2); position: relative; white-space: nowrap; transition: color .25s var(--ease); }
.pd-tabnav button::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--grad-brand); border-radius: 3px; transform: scaleX(0); transition: transform .3s var(--ease); }
.pd-tabnav button:hover { color: var(--text); }
.pd-tabnav button.is-active { color: var(--brand); }
.pd-tabnav button.is-active::after { transform: scaleX(1); }
.pd-tabpane { display: none; animation: fadeUp .4s var(--ease); }
.pd-tabpane.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.pd-desc { max-width: 900px; }
.pd-desc h4 { font-size: 1.3rem; margin: 26px 0 12px; }
.pd-desc p { color: var(--text-2); margin-bottom: 16px; line-height: 1.8; }
.pd-desc img { border-radius: var(--r-lg); margin: 10px 0 20px; width: 100%; }
/* "About This Product" banners (Admin → Products → Description Images)
   — stacked, full width, never cropped */
.pd-about-banners { display: flex; flex-direction: column; gap: 18px; max-width: 1000px; margin: 0 auto; }
.pd-about-banners img { display: block; width: 100%; height: auto; border-radius: var(--r-lg); }
.pd-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 24px 0; }
.pd-feature-grid .fc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.pd-feature-grid .fc i { font-size: 1.5rem; color: var(--brand); margin-bottom: 12px; }
.pd-feature-grid .fc h6 { font-size: 1rem; margin-bottom: 6px; }
.pd-feature-grid .fc p { font-size: .85rem; margin: 0; }

/* Specs table */
.spec-block { margin-bottom: 30px; }
.spec-block h5 { font-size: 1.1rem; margin-bottom: 14px; padding-left: 12px; border-left: 3px solid var(--brand); }
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.spec-table tr:nth-child(odd) { background: var(--bg); }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; font-size: .88rem; }
.spec-table th { width: 34%; color: var(--text-2); font-weight: 600; }
.spec-table td { color: var(--text); font-weight: 500; }

/* Reviews */
.pd-reviews { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.review-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; text-align: center; position: sticky; top: calc(var(--header-h) + 16px); }
.review-summary .big { font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; line-height: 1; color: var(--text); }
.review-summary .stars { color: var(--star); font-size: 1.1rem; margin: 8px 0; letter-spacing: 2px; }
.review-summary p { font-size: .84rem; color: var(--text-2); margin-bottom: 20px; }
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: .8rem; }
.rating-bar span:first-child { width: 30px; color: var(--text-2); }
.rating-bar .bar { flex: 1; height: 8px; background: var(--border); border-radius: 8px; overflow: hidden; }
.rating-bar .bar i { display: block; height: 100%; background: var(--star); border-radius: 8px; }
.rating-bar span:last-child { width: 34px; text-align: right; color: var(--text-2); }
/* Write-a-review form + status notes */
.review-flash { display: flex; gap: 10px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--brand); border-radius: var(--r); padding: 14px 16px; margin-bottom: 22px; font-size: .9rem; color: var(--text-2); }
.review-flash i { color: var(--brand); margin-top: 2px; }
.review-flash.is-error { border-left-color: var(--danger); }
.review-flash.is-error i { color: var(--danger); }

.review-form { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; margin-bottom: 26px; }
.review-form.is-open { display: block; }
.review-form h5 { font-size: 1.1rem; margin-bottom: 16px; }
.review-form__label { display: block; font-size: .82rem; font-weight: 600; margin: 14px 0 6px; }
.review-form__label small { font-weight: 400; color: var(--text-2); }
.review-form input[type="text"], .review-form textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 11px 14px; font: inherit; font-size: .9rem; color: var(--text); outline: none; transition: border-color .2s var(--ease); }
.review-form input[type="text"]:focus, .review-form textarea:focus { border-color: var(--brand); }
.review-form textarea { resize: vertical; min-height: 96px; }
.review-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 18px; }
.review-form__foot small { color: var(--text-2); font-size: .78rem; }
.review-form__errors { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.2); border-radius: var(--r); padding: 12px 14px 12px 30px; margin-bottom: 6px; font-size: .85rem; color: var(--danger); }
.review-form__errors li { list-style: disc; margin-bottom: 4px; }

/* Star picker — radios laid out RTL so :hover/:checked can paint the stars to the left */
.star-picker { display: inline-flex; flex-direction: row-reverse; gap: 4px; font-size: 1.5rem; }
.star-picker input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-picker label { color: var(--border); cursor: pointer; transition: color .15s var(--ease); }
.star-picker label:hover, .star-picker label:hover ~ label,
.star-picker input:checked ~ label { color: var(--star); }
.star-picker input:focus-visible + label { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 3px; }

.review-item { border-bottom: 1px solid var(--border); padding-bottom: 22px; margin-bottom: 22px; }
.review-item__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-item__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.review-item__head b { font-size: .92rem; }
.review-item__head .v { font-size: .74rem; color: var(--success); font-weight: 600; }
.review-item .stars { color: var(--star); font-size: .82rem; letter-spacing: 1px; }
.review-item h6 { font-size: 1rem; margin: 8px 0 6px; }
.review-item p { color: var(--text-2); font-size: .9rem; margin-bottom: 10px; }
.review-item__imgs { display: flex; gap: 8px; }
.review-item__imgs img { width: 62px; height: 62px; border-radius: var(--r-sm); object-fit: cover; border: 1px solid var(--border); }
.review-item__foot { font-size: .8rem; color: var(--text-2); margin-top: 10px; display: flex; gap: 18px; }
.review-item__foot button { color: var(--text-2); font-size: .8rem; }
.review-item__foot button:hover { color: var(--brand); }

/* FAQ accordion */
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; background: var(--surface); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-family: var(--font-head); font-weight: 700; font-size: .96rem; text-align: left; color: var(--text); }
.faq-q i { color: var(--brand); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 22px 20px; color: var(--text-2); font-size: .9rem; margin: 0; line-height: 1.7; }

/* Sticky add-to-cart bar (mobile) */
.pd-sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 500; background: var(--surface); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(0,0,0,.08); padding: 12px 16px; display: none; align-items: center; gap: 12px; }
.pd-sticky-bar .p { flex: 1; } .pd-sticky-bar .p b { font-family: var(--font-head); font-size: 1.1rem; } .pd-sticky-bar .p small { display: block; color: var(--text-2); font-size: .74rem; }
.pd-sticky-bar .btn-pahal { padding-block: 12px; }

/* Responsive */
@media (max-width: 1199px) { .pd-zoom-result { width: 380px; height: 380px; } }
@media (max-width: 991px) {
    .pd-wrap { grid-template-columns: 1fr; gap: 30px; }
    .pd-gallery { position: static; min-height: 0; align-content: normal; }
    .pd-zoom-lens, .pd-zoom-result { display: none !important; }
    .pd-stage { cursor: default; }
    .pd-reviews { grid-template-columns: 1fr; }
    .review-summary { position: static; }
}
@media (max-width: 767px) {
    .pd-gallery { grid-template-columns: 1fr; }
    .pd-thumbs { flex-direction: row; order: 2; max-height: none; }
    .pd-media-actions { grid-column: 1; }
    .pd-assure { grid-template-columns: repeat(2, 1fr); }
    .pd-sticky-bar { display: flex; }
    /* Gallery: mobile par manageable height, thumbs chhote scrollable squares */
    .pd-stage { aspect-ratio: auto; }
    .pd-stage img[data-stage-img] { max-height: 300px; object-fit: contain; }
    .pd-thumbs { overflow-x: auto; padding-bottom: 4px; }
    .pd-thumb { flex: 0 0 60px; width: 60px; height: 60px; aspect-ratio: auto; }
    /* Sticky buy-bar footer/content ko na dhake + floats uske upar shift ho */
    body:has(.pd-sticky-bar) { padding-bottom: 76px; }
    body:has(.pd-sticky-bar) .back-to-top { bottom: 90px; }
    body:has(.pd-sticky-bar) .wa-float { bottom: 144px; }
}
@media (max-width: 575px) {
    .pd-actions .btn-pahal, .pd-actions .btn-outline-pahal { min-width: 100%; }
}

/* =============================================================
   26. CART PAGE
   ============================================================= */
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 30px; align-items: start; }

/* Steps indicator */
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 34px; flex-wrap: wrap; }
.checkout-steps__item { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-weight: 600; font-size: .9rem; }
.checkout-steps__item .n { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1.6px solid var(--border); font-family: var(--font-head); font-size: .85rem; }
.checkout-steps__item.is-active { color: var(--brand); }
.checkout-steps__item.is-active .n { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: var(--shadow-brand); }
.checkout-steps__item.is-done .n { background: var(--success); border-color: transparent; color: #fff; }
.checkout-steps__line { width: 46px; height: 2px; background: var(--border); }

.cart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.cart-head h4 { font-size: 1.3rem; margin: 0; }
.cart-head span { color: var(--text-2); font-size: .9rem; }

/* Cart item */
.cart-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.cart-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; padding: 20px; border-bottom: 1px solid var(--border); position: relative; transition: background .3s var(--ease); }
.cart-item:last-child { border-bottom: none; }
.cart-item.is-removing { opacity: 0; transform: translateX(30px); }
.cart-item__media { width: 110px; height: 110px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); background: var(--bg); }
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { min-width: 0; }
.cart-item__brand { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); font-weight: 600; }
.cart-item__name { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; margin: 3px 0 8px; display: block; color: var(--text); }
.cart-item__name:hover { color: var(--brand); }
.cart-item__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.cart-item__meta .tag { font-size: .76rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px 12px; color: var(--text-2); font-weight: 600; }
.cart-item__meta .tag b { color: var(--text); }
.cart-item__stock { font-size: .8rem; color: var(--success); font-weight: 600; }
.cart-item__stock.low { color: #E8590C; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 10px; }
.cart-item__price { text-align: right; }
.cart-item__price .now { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.cart-item__price .was { font-size: .82rem; color: var(--text-2); text-decoration: line-through; display: block; }
.cart-item__price .off { font-size: .76rem; color: var(--success); font-weight: 700; }
.cart-item__actions { display: flex; align-items: center; gap: 14px; }
.cart-link { font-size: .82rem; font-weight: 600; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; transition: color .2s var(--ease); }
.cart-link:hover { color: var(--brand); }
.cart-link.remove:hover { color: var(--brand); }

/* Cart toolbar under list */
.cart-foot { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; flex-wrap: wrap; gap: 12px; }

/* Coupon + gift row */
.cart-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.coupon-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; }
.coupon-box h6 { font-size: .95rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.coupon-box h6 i { color: var(--brand); }
.coupon-input { display: flex; gap: 8px; }
.coupon-input input { flex: 1; border: 1.4px solid var(--border); border-radius: var(--r-sm); padding: 11px 14px; background: var(--bg); color: var(--text); outline: none; font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; }
.coupon-input input:focus { border-color: var(--brand); }
.coupon-hint { font-size: .78rem; color: var(--text-2); margin-top: 10px; }
.coupon-hint b { color: var(--brand); cursor: pointer; }
.coupon-applied { display: none; align-items: center; gap: 10px; background: rgba(28,166,122,.1); border: 1px dashed var(--success); border-radius: var(--r-sm); padding: 11px 14px; color: var(--success); font-weight: 600; font-size: .86rem; }
.coupon-applied.show { display: flex; }
.coupon-applied button { margin-left: auto; color: var(--text-2); }

/* Summary */
.cart-summary { position: sticky; top: calc(var(--header-h) + 16px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.cart-summary h5 { font-size: 1.15rem; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sum-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; font-size: .92rem; color: var(--text-2); }
.sum-row b { color: var(--text); font-weight: 600; }
.sum-row.discount b { color: var(--success); }
.sum-row .free { color: var(--success); font-weight: 700; }
.sum-total { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; margin-top: 6px; border-top: 1px solid var(--border); }
.sum-total span { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.sum-total b { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; }
.sum-save { background: rgba(28,166,122,.1); color: var(--success); text-align: center; font-weight: 700; font-size: .84rem; padding: 9px; border-radius: var(--r-sm); margin: 14px 0; }
.cart-summary .btn-pahal { width: 100%; margin-bottom: 10px; padding-block: 15px; }
.cart-summary .btn-outline-pahal { width: 100%; }
.summary-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: .78rem; color: var(--text-2); }
.summary-pay { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.summary-pay .pay-chip { background: var(--bg); color: var(--text); border: 1px solid var(--border); font-size: .68rem; }

/* Shipping calc */
.ship-calc { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.ship-calc label { font-size: .82rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 8px; display: block; }
.ship-calc__row { display: flex; gap: 8px; }
.ship-calc__row input { flex: 1; border: 1.4px solid var(--border); border-radius: var(--r-sm); padding: 10px 14px; background: var(--bg); color: var(--text); outline: none; font-size: .85rem; }
.ship-calc__row button { background: transparent; color: var(--brand); font-weight: 700; font-size: .84rem; padding: 0 8px; }
.ship-calc__result { display: none; margin-top: 10px; font-size: .82rem; color: var(--success); font-weight: 600; }
.ship-calc__result.show { display: block; }

/* Empty cart */
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty i { font-size: 4.5rem; color: var(--border); margin-bottom: 20px; }
.cart-empty h3 { font-size: 1.6rem; margin-bottom: 10px; }
.cart-empty p { color: var(--text-2); margin-bottom: 24px; }

/* Responsive */
@media (max-width: 991px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}
@media (max-width: 575px) {
    .cart-item { grid-template-columns: 88px 1fr; }
    .cart-item__media { width: 88px; height: 88px; }
    .cart-item__right { grid-column: 1 / -1; flex-direction: row; align-items: center; }
    .cart-extra { grid-template-columns: 1fr; }
    .checkout-steps__item span { display: none; }
}

/* =============================================================
   27. SHOPPING EXPERIENCE (mini-cart, quick view, toast, wishlist, compare)
   ============================================================= */

/* ---------- Mini Cart Drawer ---------- */
.mini-cart {
    position: fixed; top: 0; right: 0; bottom: 0; width: 92%; max-width: 400px; z-index: 1300;
    background: var(--surface); box-shadow: var(--shadow-lg); transform: translateX(105%);
    transition: transform .4s var(--ease); display: flex; flex-direction: column;
}
.mini-cart.is-open { transform: none; }
.mini-cart__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.mini-cart__head h6 { margin: 0; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.mini-cart__ship { padding: 14px 22px; background: var(--bg); border-bottom: 1px solid var(--border); }
.mini-cart__ship-text { font-size: .8rem; color: var(--text-2); margin-bottom: 8px; }
.mini-cart__ship-text i { color: var(--success); }
.mini-cart__ship-text b { color: var(--success); }
.mini-cart__ship-bar { height: 6px; background: var(--border); border-radius: 6px; overflow: hidden; }
.mini-cart__ship-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--success), #16c79a); border-radius: 6px; transition: width .5s var(--ease); }
.mini-cart__body { flex: 1; overflow-y: auto; padding: 8px 0; }
.mini-cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 22px; align-items: center; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.mini-cart-item.is-removing { opacity: 0; transform: translateX(30px); }
.mini-cart-item__media { width: 64px; height: 64px; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); background: var(--bg); }
.mini-cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.mini-cart-item__brand { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-2); font-weight: 600; }
.mini-cart-item__name { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; line-height: 1.3; color: var(--text); margin: 2px 0 3px; }
.mini-cart-item__name:hover { color: var(--brand); }
.mini-cart-item__meta { font-size: .76rem; color: var(--text-2); }
.mini-cart-item__price { font-size: .84rem; font-weight: 700; font-family: var(--font-head); color: var(--brand); margin-top: 4px; }
.mini-cart-item__remove { width: 28px; height: 28px; border-radius: 50%; color: var(--text-2); display: grid; place-items: center; transition: all .2s var(--ease); }
.mini-cart-item__remove:hover { background: rgba(200,16,46,.1); color: var(--brand); }
.mini-cart__empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 30px; }
.mini-cart__empty i { font-size: 3rem; color: var(--border); }
.mini-cart__empty p { color: var(--text-2); margin: 0; }
.mini-cart__foot { padding: 18px 22px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.mini-cart__subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.mini-cart__subtotal span { color: var(--text-2); font-size: .9rem; }
.mini-cart__subtotal b { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; }
.mini-cart__foot .btn-pahal, .mini-cart__foot .btn-outline-pahal { width: 100%; }

/* ---------- Quick View Modal ---------- */
.qv-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: all .35s var(--ease); z-index: 1350; }
.qv-overlay.is-open { opacity: 1; visibility: visible; }
.qv-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(.96);
    width: 94%; max-width: 860px; max-height: 92vh; overflow-y: auto; z-index: 1360;
    background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transition: all .4s var(--ease);
}
.qv-modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.qv-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: var(--bg); color: var(--text); display: grid; place-items: center; transition: all .25s var(--ease); }
.qv-close:hover { background: var(--grad-brand); color: #fff; transform: rotate(90deg); }
.qv-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; }
.qv-media { position: relative; background: var(--bg); border-radius: var(--r-xl) 0 0 var(--r-xl); overflow: hidden; min-height: 380px; }
.qv-media img { width: 100%; height: 100%; object-fit: cover; }
.qv-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--grad-brand); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: 5px 12px; border-radius: var(--r-pill); }
.qv-badge:empty { display: none; }
.qv-info { padding: 34px; }
.qv-brand { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); font-weight: 700; }
.qv-title { font-size: 1.5rem; margin: 6px 0 12px; }
.qv-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: .85rem; }
.qv-rating .stars { color: var(--star); }
.qv-rating a { color: var(--text-2); }
.qv-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.qv-price .now { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; }
.qv-price .was { color: var(--text-2); text-decoration: line-through; }
.qv-price .off { background: rgba(200,16,46,.1); color: var(--brand); font-weight: 800; font-size: .82rem; padding: 3px 9px; border-radius: var(--r-sm); }
.qv-desc { color: var(--text-2); font-size: .9rem; margin-bottom: 20px; }
.qv-variant { margin-bottom: 20px; }
.qv-variant__label { font-size: .84rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 10px; }
.qv-colors { display: flex; gap: 10px; }
.qv-actions { display: flex; gap: 12px; margin-bottom: 18px; }
.qv-actions .btn-pahal { flex: 1; }
.qv-links { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--border); }
.qv-links button, .qv-links a { font-size: .85rem; font-weight: 600; color: var(--text-2); display: inline-flex; align-items: center; gap: 7px; transition: color .2s var(--ease); }
.qv-links button:hover, .qv-links a:hover { color: var(--brand); }

/* ---------- Toast ---------- */
.toast-host { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2000; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast-pahal {
    display: flex; align-items: center; gap: 12px; background: var(--accent); color: #fff;
    padding: 13px 20px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg); font-size: .88rem; font-weight: 600;
    transform: translateY(20px); opacity: 0; transition: all .35s var(--ease); pointer-events: auto; max-width: 90vw;
}
.toast-pahal.show { transform: none; opacity: 1; }
.toast-pahal i { width: 26px; height: 26px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; font-size: .8rem; flex-shrink: 0; }
.toast-pahal.is-wish i { background: var(--brand); }

/* ---------- Wishlist ---------- */
.wishlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.wishlist-cell { position: relative; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.wishlist-cell.is-removing { opacity: 0; transform: scale(.9); }
.wishlist-remove { position: absolute; top: 12px; right: 12px; z-index: 6; width: 34px; height: 34px; border-radius: 50%; background: var(--surface); color: var(--text); box-shadow: var(--shadow); display: grid; place-items: center; transition: all .2s var(--ease); }
.wishlist-remove:hover { background: var(--grad-brand); color: #fff; }

/* ---------- Compare ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); font-size: .88rem; vertical-align: middle; }
.compare-table th:last-child, .compare-table td:last-child { border-right: none; }
.compare-table tbody tr:nth-child(odd) { background: var(--bg); }
.compare-rowhead { text-align: left !important; font-weight: 700; font-family: var(--font-head); color: var(--text-2); background: var(--surface) !important; width: 160px; position: sticky; left: 0; z-index: 2; }
.compare-table th { position: relative; vertical-align: top; }
.compare-remove { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; color: var(--text-2); display: grid; place-items: center; transition: all .2s var(--ease); }
.compare-remove:hover { background: rgba(200,16,46,.1); color: var(--brand); }
.compare-prod__img { width: 120px; height: 120px; margin: 6px auto 12px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); background: var(--bg); }
.compare-prod__img img { width: 100%; height: 100%; object-fit: cover; }
.compare-prod__brand { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); font-weight: 600; }
.compare-prod__name { display: block; font-family: var(--font-head); font-weight: 700; font-size: .92rem; margin: 4px 0 8px; color: var(--text); }
.compare-prod__name:hover { color: var(--brand); }
.compare-prod__price { font-family: var(--font-head); font-weight: 800; }
.compare-prod__price small { color: var(--text-2); text-decoration: line-through; font-weight: 500; font-size: .8rem; }
.compare-prod__price b { display: block; color: var(--success); font-size: .76rem; margin-top: 2px; }

/* Responsive */
@media (max-width: 1199px) { .wishlist-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) {
    .qv-grid { grid-template-columns: 1fr; }
    .qv-media { border-radius: var(--r-xl) var(--r-xl) 0 0; min-height: 260px; }
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 479px) { .wishlist-grid { grid-template-columns: 1fr; } }

/* =============================================================
   28. CHECKOUT PAGE
   ============================================================= */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 30px; align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

.co-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.co-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.co-card__head h5 { margin: 0; font-size: 1.12rem; display: flex; align-items: center; gap: 12px; }
.co-card__head h5 small { color: var(--text-2); font-weight: 500; font-size: .82rem; }
.co-num { width: 30px; height: 30px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-size: .9rem; flex-shrink: 0; }
.co-login-link { font-size: .84rem; color: var(--text-2); }
.co-login-link b { color: var(--brand); }
.co-secure { font-size: .82rem; color: var(--success); font-weight: 600; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .82rem; font-weight: 600; font-family: var(--font-head); color: var(--text); }
.form-field input, .form-field select, .form-field textarea {
    border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 12px 14px;
    background: var(--bg); color: var(--text); font-size: .9rem; font-family: var(--font-body); outline: none;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease); width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(200,16,46,.08); }
.form-field textarea { resize: vertical; }

.co-check { display: flex; align-items: center; gap: 11px; cursor: pointer; font-size: .88rem; color: var(--text-2); }
.co-check input { position: absolute; opacity: 0; pointer-events: none; }
.co-check .box { width: 20px; height: 20px; border-radius: 6px; border: 1.8px solid var(--border); display: grid; place-items: center; flex-shrink: 0; transition: all .2s var(--ease); }
.co-check .box::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .62rem; color: #fff; opacity: 0; transition: opacity .2s var(--ease); }
.co-check input:checked + .box { background: var(--grad-brand); border-color: transparent; }
.co-check input:checked + .box::after { opacity: 1; }

.co-addr-type { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.co-addr-type span { font-size: .84rem; color: var(--text-2); font-weight: 600; }

/* Delivery options */
.delivery-options { display: flex; flex-direction: column; gap: 12px; }
.delivery-opt { display: flex; align-items: center; gap: 14px; border: 1.6px solid var(--border); border-radius: var(--r); padding: 16px 18px; cursor: pointer; transition: all .25s var(--ease); }
.delivery-opt:hover { border-color: var(--brand); }
.delivery-opt.is-active { border-color: var(--brand); background: rgba(200,16,46,.04); }
.delivery-opt__radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; position: relative; transition: all .25s var(--ease); }
.delivery-opt.is-active .delivery-opt__radio { border-color: var(--brand); }
.delivery-opt.is-active .delivery-opt__radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--grad-brand); }
.delivery-opt__info { flex: 1; }
.delivery-opt__info b { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: .96rem; }
.delivery-opt__info b .free { background: var(--success); color: #fff; font-size: .68rem; padding: 2px 8px; border-radius: var(--r-pill); }
.delivery-opt__info b span:not(.free) { color: var(--brand); }
.delivery-opt__info small { color: var(--text-2); font-size: .82rem; }
.delivery-opt > i { font-size: 1.3rem; color: var(--brand); }
.delivery-partners { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.delivery-partners span:first-child { font-size: .8rem; color: var(--text-2); font-weight: 600; }
.delivery-partners .ship-chip { border-color: var(--border); color: var(--text-2); }

/* Payment methods */
.pay-methods { display: flex; flex-direction: column; gap: 12px; }
.pay-method { border: 1.6px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .25s var(--ease); }
.pay-method.is-active { border-color: var(--brand); }
.pay-method__head { display: flex; align-items: center; gap: 14px; padding: 16px 18px; cursor: pointer; }
.pay-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; position: relative; transition: all .25s var(--ease); }
.pay-method.is-active .pay-radio { border-color: var(--brand); }
.pay-method.is-active .pay-radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--grad-brand); }
.pay-method__head > i { font-size: 1.2rem; color: var(--text); width: 24px; text-align: center; }
.pay-method.is-active .pay-method__head > i { color: var(--brand); }
.pay-method__head > span { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.pay-logos { display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.pay-badge { margin-left: auto; background: rgba(28,166,122,.12); color: var(--success); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); }
.pay-method__body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.pay-method.is-active .pay-method__body { max-height: 400px; }
.pay-method__body > * { margin: 0 18px; }
.pay-method__body .form-field, .pay-method__body .form-grid { margin-top: 4px; margin-bottom: 16px; }
.pay-note { font-size: .82rem; color: var(--text-2); padding-bottom: 12px; display: flex; gap: 8px; align-items: flex-start; }
/* Razorpay: accepted payment modes */
.pay-modes { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 12px; }
.pay-mode { display: inline-flex; align-items: center; gap: 7px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 14px; font-size: .8rem; font-weight: 600; color: var(--text); }
.pay-mode i { color: var(--brand); font-size: .85rem; }
.pay-note-sm { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--text-2); padding-bottom: 18px; }
.pay-note-sm i { color: var(--success); }
.pay-note i { color: var(--brand); margin-top: 3px; }
.pay-note b { color: var(--text); }

/* Summary */
.checkout-summary { position: sticky; top: calc(var(--header-h) + 16px); }
.co-summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.co-summary-card h5 { font-size: 1.12rem; margin-bottom: 18px; }
.co-items { display: flex; flex-direction: column; gap: 14px; max-height: 280px; overflow-y: auto; padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--border); }
.co-item { display: flex; align-items: center; gap: 12px; }
.co-item__media { position: relative; width: 56px; height: 56px; flex-shrink: 0; }
.co-item__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--border); background: var(--bg); }
.co-item__qty { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; background: var(--grad-brand); color: #fff; font-size: .72rem; font-weight: 700; border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--surface); }
.co-item__info { flex: 1; min-width: 0; }
.co-item__info b { display: block; font-family: var(--font-head); font-size: .86rem; font-weight: 600; }
.co-item__info small { color: var(--text-2); font-size: .78rem; }
.co-item__price { font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.co-item__remove { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: transparent; color: var(--text-2); font-size: .78rem; display: grid; place-items: center; transition: all .2s var(--ease); }
.co-item__remove:hover { background: var(--brand); color: #fff; }
.co-item__remove:disabled { opacity: .5; cursor: default; }
.co-item.is-removing { opacity: .4; pointer-events: none; }
.co-coupon { display: flex; gap: 8px; margin: 16px 0; }
.co-coupon input { flex: 1; border: 1.4px solid var(--border); border-radius: var(--r-sm); padding: 10px 12px; background: var(--bg); color: var(--text); font-size: .85rem; text-transform: uppercase; }
.co-summary-card .sum-row { margin-bottom: 11px; }
/* Checkout coupon box */
/* Checkout coupon box (apni class — purani .co-coupon se takrav na ho) */
.ck-coupon { display: block; margin: 4px 0 16px; padding-bottom: 14px; border-bottom: 1px dashed var(--border); }
.ck-coupon__form { display: flex; align-items: center; gap: 8px; }
.ck-coupon__form input { flex: 1 1 auto; min-width: 0; height: 42px; padding: 0 14px; border: 1.4px solid var(--border); border-radius: var(--r-pill); background: var(--bg); color: var(--text); font-size: .88rem; outline: none; text-transform: uppercase; }
.ck-coupon__form input::placeholder { text-transform: none; }
.ck-coupon__form input:focus { border-color: var(--brand); }
.ck-coupon__form button { flex: 0 0 auto; height: 42px; padding: 0 22px; white-space: nowrap; }
.ck-coupon__hint { display: block; width: 100%; margin-top: 10px; font-size: .76rem; color: var(--text-2); }
.ck-coupon__applied { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: rgba(22,163,74,.1); color: #16A34A; border-radius: var(--r-sm); padding: 10px 14px; font-size: .84rem; font-weight: 600; }
.ck-coupon__applied button { background: none; border: 0; color: #16A34A; cursor: pointer; font-size: .95rem; padding: 0; }
.ck-coupon__applied button:hover { color: var(--brand); }
.co-summary-card .sum-total { margin-top: 8px; }
.co-summary-card .sum-total b { font-size: 1.5rem; color: var(--brand); }
.co-summary-card .btn-pahal { width: 100%; margin-top: 18px; padding-block: 15px; }
.co-back-link { display: block; text-align: center; margin-top: 12px; font-size: .86rem; color: var(--text-2); font-weight: 600; }
.co-back-link:hover { color: var(--brand); }
.co-trust { display: flex; justify-content: space-between; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.co-trust div { font-size: .74rem; color: var(--text-2); text-align: center; flex: 1; }
.co-trust i { display: block; color: var(--success); font-size: 1.1rem; margin-bottom: 5px; }
.co-pay-icons { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 16px; }
.co-pay-icons .pay-chip { background: var(--bg); color: var(--text); border: 1px solid var(--border); font-size: .66rem; }

/* Order success modal */
.order-success {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(.95); z-index: 1360;
    width: 94%; max-width: 460px; background: var(--surface); border-radius: var(--r-xl); padding: 40px 34px; text-align: center;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all .4s var(--ease);
}
.order-success.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.order-success__icon { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; font-size: 2.4rem; animation: popIn .5s var(--ease); }
@keyframes popIn { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.order-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.order-success p { color: var(--text-2); margin-bottom: 24px; }
.order-success__actions { display: flex; gap: 12px; }
.order-success__actions a { flex: 1; }

/* Responsive */
@media (max-width: 991px) {
    /* minmax(0,…) + min-width:0 — warna grid track content jitna chaura ho jata hai
       aur summary card viewport se bahar nikal jaata hai */
    .checkout-layout { grid-template-columns: minmax(0, 1fr); }
    .checkout-summary { position: static; order: -1; }
    .checkout-main, .checkout-summary { min-width: 0; }
    .co-summary-card { padding: 18px; }
    .co-item__info b { overflow-wrap: anywhere; }
}
@media (max-width: 575px) {
    .form-grid { grid-template-columns: 1fr; }
    .pay-logos { display: none; }
    .co-card { padding: 18px; }
    .order-success__actions { flex-direction: column; }
}

/* =============================================================
   29. USER DASHBOARD
   ============================================================= */
.dash-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }

/* Sidebar */
.dash-sidebar { position: sticky; top: calc(var(--header-h) + 16px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.dash-user { display: flex; align-items: center; gap: 14px; padding: 22px; background: var(--grad-brand); color: #fff; }
.dash-user__avatar { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.4); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; flex-shrink: 0; }
.dash-user__avatar--lg { width: 84px; height: 84px; font-size: 1.9rem; background: var(--grad-brand); color: #fff; border-color: transparent; }
.dash-user__info b { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.dash-user__tier { font-size: .78rem; opacity: .95; display: inline-flex; align-items: center; gap: 6px; }
.dash-menu { padding: 10px; display: flex; flex-direction: column; gap: 2px; }
.dash-menu__item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--r-sm); font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--text-2); text-align: left; transition: all .2s var(--ease); position: relative; }
.dash-menu__item i { width: 20px; text-align: center; font-size: .95rem; }
.dash-menu__item:hover { background: var(--bg); color: var(--brand); }
.dash-menu__item.is-active { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); }
.dash-menu__badge { margin-left: auto; background: var(--brand); color: #fff; font-size: .68rem; font-weight: 700; padding: 1px 7px; border-radius: var(--r-pill); }
.dash-menu__item.is-active .dash-menu__badge { background: #fff; color: var(--brand); }
.dash-menu__logout { color: var(--brand); border-top: 1px solid var(--border); border-radius: 0; margin-top: 6px; }
.dash-menu__logout:hover { background: rgba(200,16,46,.06); }

/* Content panes */
.dash-pane { display: none; animation: fadeUp .4s var(--ease); }
.dash-pane.is-active { display: block; }
.dash-pane__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.dash-pane__head h4 { font-size: 1.4rem; margin: 0; }

/* Dashboard overview */
.dash-welcome { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.dash-welcome h3 { font-size: 1.4rem; margin-bottom: 4px; }
.dash-welcome p { color: var(--text-2); margin: 0; font-size: .92rem; }
.dash-since { font-size: .82rem; color: var(--text-2); background: var(--bg); padding: 8px 14px; border-radius: var(--r-pill); font-weight: 600; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.dash-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; display: flex; align-items: center; gap: 14px; transition: all .3s var(--ease); }
.dash-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dash-stat__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.dash-stat b { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; display: block; line-height: 1.1; }
.dash-stat span { font-size: .8rem; color: var(--text-2); }
.dash-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-section-head h5 { margin: 0; font-size: 1.15rem; }

/* Order card */
.order-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.order-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.order-card__id b { font-family: var(--font-head); font-size: 1rem; }
.order-card__id span { display: block; font-size: .8rem; color: var(--text-2); margin-top: 2px; }
.order-status { font-size: .8rem; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 7px; }
.order-status i { font-size: .5rem; }
.status-delivered { background: rgba(28,166,122,.12); color: var(--success); }
.status-shipped { background: rgba(37,99,235,.12); color: #2563EB; }
.status-processing { background: rgba(232,89,12,.12); color: #E8590C; }
.status-cancelled { background: rgba(200,16,46,.1); color: var(--brand); }
.order-card__items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.order-line { display: flex; align-items: center; gap: 14px; }
.order-line__media { width: 56px; height: 56px; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); background: var(--bg); flex-shrink: 0; }
.order-line__media img { width: 100%; height: 100%; object-fit: cover; }
.order-line__info { flex: 1; min-width: 0; }
.order-line__info b { font-family: var(--font-head); font-size: .92rem; font-weight: 600; display: block; }
.order-line__info small { color: var(--text-2); font-size: .8rem; }
.order-line__price { font-family: var(--font-head); font-weight: 700; }

/* Order tracking timeline */
.order-track { display: flex; align-items: flex-start; margin: 4px 0 20px; padding: 16px 6px 0; }
.order-track__step { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; flex-shrink: 0; width: 64px; }
.order-track__dot { width: 30px; height: 30px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); display: grid; place-items: center; color: transparent; font-size: .7rem; transition: all .3s var(--ease); }
.order-track__step span { font-size: .68rem; color: var(--text-2); font-weight: 600; line-height: 1.2; }
.order-track__step.is-done .order-track__dot, .order-track__step.is-current .order-track__dot { background: var(--success); border-color: transparent; color: #fff; }
.order-track__step.is-current .order-track__dot { background: var(--brand); box-shadow: 0 0 0 4px rgba(200,16,46,.15); }
.order-track__step.is-done span, .order-track__step.is-current span { color: var(--text); }
.order-track__line { flex: 1; height: 2px; background: var(--border); margin-top: 15px; min-width: 12px; }
.order-track__line.is-done { background: var(--success); }
.order-cancelled-note { background: rgba(200,16,46,.06); color: var(--brand); font-size: .84rem; font-weight: 500; padding: 12px 16px; border-radius: var(--r-sm); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.order-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.order-card__total { font-size: .95rem; color: var(--text-2); }
.order-card__total b { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); }
.order-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.dash-order-filters { display: flex; gap: 6px; flex-wrap: wrap; }

/* Addresses */
.addr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.addr-card { background: var(--surface); border: 1.6px solid var(--border); border-radius: var(--r-lg); padding: 22px; position: relative; }
.addr-card.is-default { border-color: var(--brand); }
.addr-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.addr-card__type { font-family: var(--font-head); font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }
.addr-card__type i { color: var(--brand); }
.addr-card__default { font-size: .68rem; font-weight: 700; background: var(--grad-brand); color: #fff; padding: 3px 10px; border-radius: var(--r-pill); }
.addr-card b { font-size: .95rem; }
.addr-card p { color: var(--text-2); font-size: .88rem; margin: 6px 0 10px; line-height: 1.6; }
.addr-card__phone { font-size: .84rem; color: var(--text-2); }
.addr-card__actions { display: flex; gap: 16px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.addr-card__actions button { font-size: .82rem; font-weight: 600; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; }
.addr-card__actions button:hover { color: var(--brand); }

/* Profile */
.profile-top { display: flex; align-items: center; gap: 20px; }
.profile-top b { font-family: var(--font-head); font-size: 1.2rem; display: block; }
.profile-top span { color: var(--text-2); font-size: .9rem; }

/* Notifications */
.notif-list { display: flex; flex-direction: column; gap: 12px; }
.notif-item { display: flex; align-items: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px; position: relative; }
.notif-item.is-unread { border-left: 3px solid var(--brand); }
.notif-item__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(200,16,46,.1); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.notif-item__body { flex: 1; }
.notif-item__body b { font-family: var(--font-head); font-size: .95rem; }
.notif-item__body p { color: var(--text-2); font-size: .86rem; margin: 3px 0 0; }
.notif-item__time { font-size: .76rem; color: var(--text-2); white-space: nowrap; }
.notif-item.is-unread::after { content: ''; position: absolute; top: 16px; right: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

/* Empty state (reuse) */
.dash-empty { text-align: center; padding: 56px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.dash-empty i { font-size: 4rem; color: var(--border); margin-bottom: 18px; }
.dash-empty h3 { font-size: 1.4rem; margin-bottom: 8px; }
.dash-empty p { color: var(--text-2); margin-bottom: 22px; max-width: 420px; margin-inline: auto; }

/* Support */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.support-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; text-align: center; transition: all .3s var(--ease); }
.support-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.support-tile i { font-size: 1.8rem; color: var(--brand); margin-bottom: 12px; }
.support-tile b { display: block; font-family: var(--font-head); font-size: 1rem; }
.support-tile span { font-size: .84rem; color: var(--text-2); }

/* Settings switch */
.settings-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.settings-row:last-child { border-bottom: none; }
.settings-row b { font-family: var(--font-head); font-size: .92rem; display: block; }
.settings-row small { color: var(--text-2); font-size: .8rem; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__slider { position: absolute; inset: 0; background: var(--border); border-radius: var(--r-pill); cursor: pointer; transition: background .3s var(--ease); }
.switch__slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .3s var(--ease); box-shadow: var(--shadow-sm); }
.switch input:checked + .switch__slider { background: var(--grad-brand); }
.switch input:checked + .switch__slider::before { transform: translateX(20px); }

/* Responsive */
@media (max-width: 991px) {
    .dash-layout { grid-template-columns: 1fr; }
    .dash-sidebar { position: static; }
    .dash-menu { flex-direction: row; overflow-x: auto; }
    .dash-menu__item { white-space: nowrap; }
    .dash-menu__logout { border-top: none; border-left: 1px solid var(--border); }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .addr-grid { grid-template-columns: 1fr; }
    .order-track { overflow-x: auto; }
    .dash-welcome { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   30. CONTENT PAGES (policy, faq, about, contact)
   ============================================================= */

/* ---------- Policy layout ---------- */
.policy-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 40px; align-items: start; }
/* CMS page with no headings yet → no TOC sidebar to show */
.policy-layout--notoc { grid-template-columns: minmax(0, 1fr); }
.policy-toc { position: sticky; top: calc(var(--header-h) + 16px); }
.policy-toc h6 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); margin-bottom: 14px; }
.policy-toc ul { border-left: 2px solid var(--border); }
.policy-toc li a { display: block; padding: 8px 0 8px 16px; margin-left: -2px; border-left: 2px solid transparent; font-size: .88rem; color: var(--text-2); font-weight: 500; transition: all .2s var(--ease); }
.policy-toc li a:hover, .policy-toc li a.is-active { color: var(--brand); border-left-color: var(--brand); }
.policy-help { margin-top: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; text-align: center; }
.policy-help i { font-size: 1.8rem; color: var(--brand); margin-bottom: 10px; }
.policy-help b { display: block; font-family: var(--font-head); }
.policy-help p { font-size: .82rem; color: var(--text-2); margin: 4px 0 14px; }
.policy-content { max-width: 820px; }
.policy-intro { font-size: 1.05rem; color: var(--text-2); line-height: 1.8; margin-bottom: 30px; padding: 18px 22px; background: var(--surface); border-left: 3px solid var(--brand); border-radius: 0 var(--r) var(--r) 0; }
.policy-section { margin-bottom: 34px; scroll-margin-top: calc(var(--header-h) + 20px); }
.policy-section h3 { font-size: 1.3rem; margin-bottom: 14px; }
.policy-section p { color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.policy-section ul { margin: 0 0 14px; padding-left: 4px; }
.policy-section ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text-2); line-height: 1.7; }
.policy-section ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--brand); font-size: .8rem; }
.policy-section a { color: var(--brand); font-weight: 600; }
.policy-footer-note { display: flex; gap: 12px; align-items: flex-start; background: rgba(200,16,46,.05); border: 1px solid rgba(200,16,46,.15); border-radius: var(--r); padding: 18px; font-size: .88rem; color: var(--text-2); margin-top: 20px; }
.policy-footer-note i { color: var(--brand); margin-top: 3px; }
.policy-footer-note a { color: var(--brand); font-weight: 600; }

/* ---------- FAQ page ---------- */
.faq-search { position: relative; max-width: 620px; margin: 0 auto 40px; }
.faq-search i { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--text-2); }
.faq-search input { width: 100%; border: 1.6px solid var(--border); border-radius: var(--r-pill); padding: 16px 22px 16px 52px; background: var(--surface); color: var(--text); font-size: .95rem; outline: none; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq-search input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(200,16,46,.08); }
.faq-page-grid { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 34px; }
.faq-group__title { font-size: 1.2rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.faq-group__title::before { content: ''; width: 6px; height: 22px; background: var(--grad-brand); border-radius: 3px; }
.faq-q span { flex: 1; }
.faq-no-results { text-align: center; padding: 40px; color: var(--text-2); }
.faq-no-results i { font-size: 2.4rem; color: var(--border); margin-bottom: 14px; }
.faq-no-results a { color: var(--brand); font-weight: 600; }
.faq-cta { max-width: 820px; margin: 40px auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; box-shadow: var(--shadow-sm); }
.faq-cta h3 { font-size: 1.3rem; margin-bottom: 4px; }
.faq-cta p { color: var(--text-2); margin: 0; }

/* ---------- About ---------- */
.about-story { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.about-story__media { position: relative; }
.about-story__media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.about-story__badge { position: absolute; bottom: -24px; right: -18px; background: var(--grad-brand); color: #fff; border-radius: var(--r-lg); padding: 20px 26px; text-align: center; box-shadow: var(--shadow-brand); }
.about-story__badge b { font-family: var(--font-head); font-weight: 800; font-size: 2rem; display: block; line-height: 1; }
.about-story__badge span { font-size: .78rem; opacity: .95; }
.about-story__content p { color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.about-usps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.about-usp { display: flex; align-items: center; gap: 12px; font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.about-usp i { width: 40px; height: 40px; border-radius: 12px; background: rgba(200,16,46,.1); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }

/* ---------- About: feature points + certifications ---------- */
.about-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-feature { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; transition: all .3s var(--ease); }
.about-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.about-feature__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(200,16,46,.1); color: var(--brand); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; transition: all .3s var(--ease); }
.about-feature:hover .about-feature__icon { background: var(--grad-brand); color: #fff; }
.about-feature b { font-family: var(--font-head); font-size: .95rem; line-height: 1.35; }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert-card { margin: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .35s var(--ease); }
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.cert-card__img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg); display: grid; place-items: center; }
.cert-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .4s var(--ease); }
.cert-card:hover .cert-card__img img { transform: scale(1.04); }
.cert-card figcaption { padding: 14px 16px; font-size: .82rem; font-weight: 600; font-family: var(--font-head); text-align: center; color: var(--text); border-top: 1px solid var(--border); }

@media (max-width: 991px) {
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .about-features { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cert-card figcaption { font-size: .74rem; padding: 10px; }
}

/* ---------- Contact ---------- */
.contact-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; text-align: center; transition: all .3s var(--ease); display: block; }
.contact-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-tile__icon { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 18px; background: rgba(200,16,46,.1); color: var(--brand); display: grid; place-items: center; font-size: 1.4rem; transition: all .3s var(--ease); }
.contact-tile:hover .contact-tile__icon { background: var(--grad-brand); color: #fff; }
.contact-tile b { display: block; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 4px; }
.contact-tile span { display: block; color: var(--text); font-size: .88rem; word-break: break-word; }
.contact-tile small { color: var(--text-2); font-size: .78rem; }
.contact-main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: start; }
.contact-form .eyebrow { margin-bottom: 8px; }
.contact-success { color: var(--success); font-weight: 600; font-size: .9rem; margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); height: 280px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--text-2); }
.contact-social { display: flex; gap: 10px; }
.contact-social a { width: 42px; height: 42px; border-radius: 12px; background: var(--bg); display: grid; place-items: center; color: var(--text); transition: all .3s var(--ease); }
.contact-social a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 991px) {
    .policy-layout { grid-template-columns: 1fr; }
    .policy-toc { position: static; display: none; }
    .about-story { grid-template-columns: 1fr; gap: 40px; }
    .about-story__badge { right: 16px; }
    .contact-tiles { grid-template-columns: repeat(2, 1fr); }
    .contact-main { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .about-usps { grid-template-columns: 1fr; }
    .contact-tiles { grid-template-columns: 1fr; }
    .faq-cta { text-align: center; justify-content: center; }
}

/* =============================================================
   31. SYSTEM PAGES (404, coming soon, maintenance)
   ============================================================= */

/* Full-screen shell */
.sys-page { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; background: linear-gradient(150deg, #141416, #1f1f22 60%, #141416); color: #fff; }
.sys-page__inner { position: relative; z-index: 3; max-width: 640px; }
.sys-shape { position: absolute; border-radius: 50%; z-index: 1; filter: blur(2px); }
.sys-shape--1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(200,16,46,.35), transparent 70%); top: -120px; right: -100px; animation: floaty 8s ease-in-out infinite; }
.sys-shape--2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(200,16,46,.22), transparent 70%); bottom: -120px; left: -80px; animation: floaty 10s ease-in-out infinite reverse; }
.sys-shape--3 { width: 10px; height: 10px; background: var(--brand); top: 20%; left: 15%; box-shadow: 0 0 20px 4px rgba(200,16,46,.6); animation: floaty 6s ease-in-out infinite; }
.sys-shape--4 { width: 8px; height: 8px; background: #fff; top: 70%; right: 18%; box-shadow: 0 0 16px 3px rgba(255,255,255,.5); animation: floaty 7s ease-in-out infinite reverse; }

.sys-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.sys-logo img { height: 44px; width: 44px; object-fit: contain; }
.sys-logo b { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: .02em; }
.sys-logo b span { color: var(--brand); }

.sys-icon { width: 100px; height: 100px; margin: 0 auto 26px; border-radius: 50%; background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.3); display: grid; place-items: center; font-size: 2.6rem; color: var(--brand); }
.sys-icon .fa-gear { animation: spin 6s linear infinite; }
.sys-icon .fa-gear:nth-child(2) { animation-direction: reverse; font-size: 1.6rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.sys-title { font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin-bottom: 14px; }
.sys-404 { font-family: var(--font-head); font-weight: 800; font-size: clamp(6rem, 22vw, 12rem); line-height: .9; background: linear-gradient(120deg, #ff3b57, #C8102E); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px; }
.sys-page p { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; max-width: 500px; margin-inline: auto; }
.sys-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.sys-page .btn-outline-pahal { border-color: rgba(255,255,255,.35); color: #fff; }
.sys-page .btn-outline-pahal:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* Countdown (coming soon) */
.sys-countdown { display: flex; gap: 14px; justify-content: center; margin: 6px 0 32px; }
.sys-cd-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 16px 20px; min-width: 84px; backdrop-filter: blur(8px); }
.sys-cd-box b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; line-height: 1; }
.sys-cd-box small { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }

/* Notify form */
.sys-notify { display: flex; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: 7px; max-width: 460px; margin: 0 auto 26px; }
.sys-notify input { flex: 1; background: transparent; border: none; outline: none; color: #fff; padding: 0 18px; font-size: .95rem; }
.sys-notify input::placeholder { color: rgba(255,255,255,.55); }

.sys-social { display: flex; gap: 12px; justify-content: center; }
.sys-social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .3s var(--ease); }
.sys-social a:hover { background: var(--grad-brand); transform: translateY(-3px); }
.sys-foot { margin-top: 36px; font-size: .82rem; color: rgba(255,255,255,.4); }

/* 404 branded (inside app layout) — search + links */
.nf-search { display: flex; gap: 8px; max-width: 440px; margin: 0 auto 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill); padding: 7px; }
.nf-search input { flex: 1; background: transparent; border: none; outline: none; color: #fff; padding: 0 18px; }
.nf-search input::placeholder { color: rgba(255,255,255,.55); }
.nf-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.nf-links a { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; padding: 9px 18px; border-radius: var(--r-pill); font-size: .86rem; font-weight: 600; transition: all .25s var(--ease); }
.nf-links a:hover { background: var(--grad-brand); border-color: transparent; }

@media (max-width: 575px) {
    .sys-countdown { gap: 8px; }
    .sys-cd-box { min-width: 66px; padding: 12px 12px; }
    .sys-cd-box b { font-size: 1.6rem; }
    .sys-notify { flex-direction: column; background: transparent; border: none; padding: 0; }
    .sys-notify input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: 14px 18px; }
}

/* =============================================================
   32. BLOG PAGE
   ============================================================= */
.blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; margin-bottom: 40px; transition: box-shadow .35s var(--ease); }
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-featured__media { overflow: hidden; min-height: 320px; background: #f7f8fa; display: grid; place-items: center; }
.blog-featured__media img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform .5s var(--ease); }
.blog-featured:hover .blog-featured__media img { transform: scale(1.04); }
.blog-featured__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 14px; }
.blog-featured__body h2:hover { color: var(--brand); }
.blog-featured__body p { color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }

.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
.blog-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }

/* Single article page */
.blog-article__hero { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 30px; }
.blog-article__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: 20px; }
.blog-widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.blog-widget h6 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); position: relative; }
.blog-widget h6::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 40px; height: 2px; background: var(--grad-brand); }
.blog-cats li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; color: var(--text-2); font-size: .9rem; font-weight: 500; border-bottom: 1px solid var(--border); transition: all .2s var(--ease); }
.blog-cats li:last-child a { border-bottom: none; }
.blog-cats li a:hover { color: var(--brand); padding-left: 6px; }
.blog-cats li a span { background: var(--bg); color: var(--text-2); font-size: .74rem; padding: 2px 9px; border-radius: var(--r-pill); }
.blog-recent { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.blog-recent:last-child { margin-bottom: 0; }
.blog-recent img { width: 60px; height: 60px; border-radius: var(--r-sm); object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; background: var(--bg); }
.blog-recent b { display: block; font-family: var(--font-head); font-size: .84rem; font-weight: 600; line-height: 1.4; }
.blog-recent:hover b { color: var(--brand); }
.blog-recent small { color: var(--text-2); font-size: .76rem; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-tags a { background: var(--bg); border: 1px solid var(--border); color: var(--text-2); font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: var(--r-pill); transition: all .2s var(--ease); }
.blog-tags a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }
.blog-widget--cta { text-align: center; background: var(--grad-dark); color: #fff; }
.blog-widget--cta i { font-size: 2rem; color: var(--brand); margin-bottom: 10px; }
.blog-widget--cta b { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.blog-widget--cta p { font-size: .84rem; color: rgba(255,255,255,.7); margin: 6px 0 14px; }
.blog-widget--cta input { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); color: #fff; }

@media (max-width: 991px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured__media { min-height: 220px; }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}
@media (max-width: 575px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured__body { padding: 26px; }
}

/* =============================================================
   33. MOBILE REFINEMENTS
   ============================================================= */

/* Touch devices: hover-only actions must always show (no hover on touch) */
@media (hover: none) {
    .product-cart-btn { opacity: 1 !important; transform: none !important; }
    .product-actions { opacity: 1 !important; transform: translateY(-50%) !important; }
    .product-card:hover .product-card__media img,
    .cat-card:hover .cat-card__img img { transform: none; }
    .header-icon:hover, .theme-toggle:hover { transform: none; }
}

/* Tablet & below */
@media (max-width: 991px) {
    .section { padding: 56px 0; }
    .section-sm { padding: 40px 0; }
}

/* Phones */
@media (max-width: 767px) {
    :root { --header-h: 88px; }
    .brand-logo img { height: 64px; }
    .site-header.is-stuck .brand-logo img { height: 55px; }
    .header__inner { gap: 8px; }
    .header-actions { gap: 2px; }
    .header-icon, .theme-toggle, .mobile-toggle { width: 42px; height: 42px; font-size: 1.05rem; }
    .announcement-bar .ann-track { font-size: .76rem; padding: 8px 26px; min-height: 34px; }
    .section { padding: 44px 0; }
    .section-head { margin-bottom: 30px; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: .92rem; }
    .btn-pahal, .btn-outline-pahal { padding: 12px 22px; font-size: .9rem; }
    /* Product cards: compact badges + slim CTA pinned to the image edge (photo dhake nahi) */
    .product-actions { display: none; }
    .product-badge { top: 8px; left: 8px; font-size: .56rem; padding: 4px 8px; letter-spacing: .02em; }
    .product-discount { top: 8px; right: 8px; font-size: .6rem; padding: 4px 7px; }
    .product-cart-btn { opacity: 1; transform: none; font-size: .74rem; padding: 8px; left: 8px; right: 8px; bottom: 8px; }
    /* Stars: ek hi line mein rahen, wrap na hon */
    .product-rating { flex-wrap: nowrap; white-space: nowrap; gap: 4px; font-size: .7rem; overflow: hidden; }
    .product-rating .stars { letter-spacing: 0; font-size: .62rem; flex-shrink: 0; }
    /* Stats strip: numbers apne column mein fit rahen */
    .stat-item b { font-size: 1.3rem; }
    .stat-item > span { font-size: .76rem; }
    /* Pagination: mobile par compact ek-line */
    .pagination-pahal { gap: 6px; margin-top: 32px; }
    .pagination-pahal a, .pagination-pahal span { min-width: 38px; height: 38px; font-size: .82rem; padding: 0 6px; }
    /* Footer columns = accordion (kam scrolling) */
    .footer-top { row-gap: 0; padding-bottom: 26px; }
    .footer-col { text-align: left; border-top: 1px solid rgba(255,255,255,.08); }
    .footer-col h6 { display: flex; align-items: center; justify-content: space-between; margin: 0; padding: 16px 2px; cursor: pointer; padding-bottom: 16px; }
    .footer-col h6::after { display: none; }          /* red underline sirf desktop par */
    .footer-col__caret { display: inline-block; font-size: .7rem; color: var(--text-2); transition: transform .3s var(--ease); }
    .footer-col.is-open h6 { color: var(--brand); }
    .footer-col.is-open .footer-col__caret { transform: rotate(180deg); }
    .footer-col ul, .footer-col .footer-social { display: none; }
    .footer-col.is-open ul { display: block; padding-bottom: 10px; }
    .footer-col.is-open .footer-social { display: flex; padding-bottom: 14px; }
    .footer-col ul { text-align: left; }

    /* Blog cards: mobile par compact */
    .blog-card__media { aspect-ratio: 16/10; }
    .blog-card__body { padding: 14px; }
    .blog-card__meta { gap: 10px; font-size: .7rem; margin-bottom: 7px; }
    .blog-card h5 { font-size: .95rem; line-height: 1.35; margin-bottom: 9px; }
    .blog-card__cat { top: 10px; left: 10px; font-size: .62rem; padding: 4px 10px; }
    /* Preloader: mobile par compact + centered */
    .preloader__logo { font-size: 1.15rem; text-align: center; padding: 0 20px; }
    .preloader__bar { width: 150px; }
    /* Floating buttons: chhote, kinare par */
    .back-to-top { width: 44px; height: 44px; right: 14px; bottom: 14px; }
    .wa-float { width: 46px; height: 46px; right: 14px; bottom: 68px; font-size: 1.2rem; }
    .product-card__body { padding: 14px 14px 16px; }
    .product-card__title { font-size: .9rem; }
    .product-price .now { font-size: 1.05rem; }
    /* Stat strips / promos tighter */
    .stats-strip, .flash-sale, .newsletter, .promo-banner__content { padding: 26px 20px; }
    .footer-top { text-align: left; }
}

/* Small phones */
@media (max-width: 400px) {
    .brand-logo img { height: 57px; }
    .hero-banner .sw-arrow { display: none; }
}

/* Prevent any accidental horizontal scroll globally */
/* overflow-x: clip (not hidden) prevents sideways scroll WITHOUT breaking position:sticky */
html, body { max-width: 100%; overflow-x: clip; }
img, video, iframe, table { max-width: 100%; }
