/* ============================================================
   AAMISH.IN — Licious-matched visual system
   Colors, type, and layout extracted directly from licious.in
   screenshots. Brand red kept distinct from Licious crimson;
   structure and spacing kept faithful.

   TYPE SYSTEM:
   - Body/UI text     → Lato     (Google Fonts: Lato-Regular/Bold)
   - Headings/Display → Satoshi  (Fontshare, official free webfont
     from Indian Type Foundry — loaded via <link> in each page's
     <head>: api.fontshare.com/v2/css?f[]=satoshi@...)
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #FFFFFF;
  color: #111111;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6,
.hero h1, .sec-head h2, .sec-head-row h2, .auth-top h1,
.panel-title, .modal-title, .step-hd h2 {
  font-family: 'Satoshi', 'Lato', -apple-system, sans-serif;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---------- DESIGN TOKENS (sampled from Licious screenshots) ---------- */
:root {
  --red:        #C8143F;
  --red-dark:   #A8102F;
  --red-bg:     #FEE7EF;
  --logo-red:   #DB1244;
  --green:      #1C9A4B;
  --green-bg:   #EEFBF1;
  --ink:        #111111;
  --grey-1:     #2B2B2B;
  --grey-2:     #4A4A4A;
  --grey-3:     #6B6B6B;
  --grey-4:     #8C8C8C;
  --grey-5:     #C9C9C9;
  --grey-6:     #E6E6E6;
  --grey-7:     #F4F4F4;
  --cream:      #FAF6F0;
  --border:     #EAEAEA;
  --white:      #FFFFFF;
  --shadow:     0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 18px rgba(0,0,0,0.12);
  --r-xs:       6px;
  --r-sm:       8px;
  --r-md:       12px;
  --r-lg:       18px;
  --r-pill:     100px;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header { position: sticky; top: 0; z-index: 500; background: #FFFFFF; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 84px; max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.header-logo img { height: 42px; width: auto; display: block; }

.header-location { display: flex; align-items: center; gap: 6px; cursor: pointer; flex-shrink: 0; white-space: nowrap; }
.header-location svg { width: 16px; height: 16px; color: var(--ink); flex-shrink: 0; }
.header-loc-text { display: flex; flex-direction: column; line-height: 1.25; }
.header-loc-text .loc-main { font-size: .92rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 4px; }
.header-loc-text .loc-main svg { width: 11px; height: 11px; margin-left: 1px; }
.header-loc-text .loc-sub { font-size: .72rem; color: var(--grey-4); }

.header-search { display: flex; align-items: center; gap: 10px; background: var(--grey-7); border-radius: var(--r-sm); padding: 0 16px; height: 44px; flex: 1; max-width: 460px; transition: background .15s; }
.header-search:focus-within { background: var(--white); box-shadow: 0 0 0 1.5px var(--grey-5) inset; }
.header-search input { flex: 1; border: none; background: none; font-size: .9rem; color: var(--ink); outline: none; }
.header-search input::placeholder { color: var(--grey-4); }
.header-search svg { width: 18px; height: 18px; color: var(--grey-3); flex-shrink: 0; cursor: pointer; }

.header-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; flex-shrink: 0; }
.header-nav-link { display: flex; align-items: center; gap: 7px; font-size: .92rem; font-weight: 500; color: var(--ink); white-space: nowrap; cursor: pointer; }
.header-nav-link svg { width: 19px; height: 19px; color: var(--grey-2); flex-shrink: 0; }
.cart-badge { background: var(--red); color: var(--white); font-size: .62rem; font-weight: 800; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: -2px; }
.cart-badge.hidden { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }

.mobile-drawer { display: none; position: fixed; inset: 0; z-index: 900; }
.mobile-drawer.open { display: flex; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.drawer-panel { position: relative; background: var(--white); width: 280px; height: 100%; overflow-y: auto; z-index: 1; display: flex; flex-direction: column; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--border); }
.drawer-head img { height: 34px; }
.drawer-close { width: 30px; height: 30px; border-radius: 50%; background: var(--grey-7); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--grey-3); }
.drawer-links { padding: 8px 0; }
.drawer-link { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-size: .9rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--grey-7); }
.drawer-link svg { width: 18px; height: 18px; color: var(--grey-4); flex-shrink: 0; }

.search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 800; display: none; align-items: flex-start; justify-content: center; padding-top: 70px; }
.search-overlay.open { display: flex; }
.search-box { background: var(--white); border-radius: var(--r-lg); width: 100%; max-width: 580px; overflow: hidden; box-shadow: var(--shadow-md); }
.search-box-inner { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.search-box-inner svg { width: 18px; height: 18px; color: var(--grey-4); flex-shrink: 0; }
.search-box-inner input { flex: 1; border: none; font-size: .95rem; outline: none; }
.search-results { max-height: 360px; overflow-y: auto; }
.search-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; cursor: pointer; }
.search-item:hover { background: var(--grey-7); }
.search-item img { width: 42px; height: 42px; border-radius: var(--r-xs); object-fit: cover; background: var(--grey-7); }
.search-item-name { font-size: .88rem; font-weight: 500; }
.search-item-price { font-size: .78rem; color: var(--grey-4); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 6px; padding: 18px 0 10px; font-size: .85rem; color: var(--grey-4); }
.breadcrumb a { color: var(--grey-4); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { font-size: .8rem; color: var(--grey-5); }
.breadcrumb .cur { color: var(--red); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head h2 { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.sec-head p  { font-size: .95rem; color: var(--grey-3); margin-top: 4px; }
.sec-head-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.sec-head-row h2 { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.sec-head-row a { font-size: .88rem; color: var(--red); font-weight: 600; }

/* ============================================================
   QUICK CATEGORY ICONS
   ============================================================ */
.quickcats { display: flex; gap: 36px; overflow-x: auto; padding: 6px 2px 12px; scrollbar-width: none; }
.quickcats::-webkit-scrollbar { display: none; }
.quickcat { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; cursor: pointer; width: 92px; text-align: center; }
.quickcat-img { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; background: var(--grey-7); box-shadow: 0 3px 10px rgba(0,0,0,.10); transition: transform .15s; }
.quickcat:hover .quickcat-img { transform: translateY(-3px); }
.quickcat-img img { width: 100%; height: 100%; object-fit: cover; }
.quickcat span { font-size: .85rem; font-weight: 500; color: var(--ink); line-height: 1.3; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.product-card { display: flex; flex-direction: column; position: relative; }
.product-img-wrap { position: relative; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; background: var(--grey-7); margin-bottom: 14px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.product-badge { position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; background: var(--red); border-radius: 4px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.product-badge svg { width: 11px; height: 11px; color: #fff; }

.card-dots { display: flex; gap: 4px; justify-content: center; margin-top: -10px; margin-bottom: 8px; position: relative; z-index: 2; }
.card-dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(0,0,0,.18); }
.card-dots span.active { background: rgba(0,0,0,.5); }

.add-btn { position: absolute; right: 10px; bottom: 10px; width: 38px; height: 38px; background: var(--white); border-radius: var(--r-xs); box-shadow: 0 2px 8px rgba(0,0,0,.18); display: flex; align-items: center; justify-content: center; color: var(--red); z-index: 3; transition: transform .12s; font-size: 1.3rem; font-weight: 700; }
.add-btn:hover { transform: scale(1.05); }

.qty-row { position: absolute; right: 10px; bottom: 10px; display: flex; align-items: center; background: var(--white); border-radius: var(--r-xs); box-shadow: 0 2px 8px rgba(0,0,0,.18); overflow: hidden; z-index: 3; height: 38px; }
.qty-row button { width: 32px; height: 38px; color: var(--red); font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.qty-row button:hover { background: var(--red-bg); }
.qty-row span { min-width: 22px; text-align: center; font-size: .85rem; font-weight: 700; color: var(--ink); }

.wishlist-btn { position: absolute; top: 10px; left: 10px; width: 30px; height: 30px; background: rgba(255,255,255,.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.wishlist-btn svg { width: 14px; height: 14px; color: var(--grey-3); }
.wishlist-btn.active svg { color: var(--red); fill: var(--red); }

.product-body { display: flex; flex-direction: column; gap: 5px; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.3; cursor: pointer; }
.product-meta { font-size: .85rem; color: var(--grey-3); }
.product-meta .msep { color: var(--grey-5); margin: 0 5px; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.product-price { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.price-mrp { font-size: .88rem; color: var(--grey-4); text-decoration: line-through; }
.price-off { font-size: .88rem; color: var(--green); font-weight: 600; }
.product-unit { font-size: .82rem; color: var(--grey-4); font-weight: 400; }
.product-slot { font-size: .82rem; color: var(--grey-4); margin-top: 2px; }

/* ============================================================
   HERO
   ============================================================ */
/* ============================================================
   HERO CAROUSEL — auto-rotating, multi-language + offer slide
   ============================================================ */
.hero { background: var(--red-bg); border-radius: var(--r-lg); margin-top: 20px; padding: 0; position: relative; overflow: hidden; }
.hero-carousel { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: heroFade .5s ease; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 20px; min-height: 320px; padding: 36px 48px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--white); color: var(--red); font-size: .76rem; font-weight: 800; padding: 5px 13px; border-radius: var(--r-pill); margin-bottom: 14px; letter-spacing: .02em; }
.hero h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; line-height: 1.18; color: var(--ink); margin-bottom: 12px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: .95rem; color: var(--grey-2); margin-bottom: 22px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-loc { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--grey-3); background: rgba(255,255,255,.6); padding: 7px 14px; border-radius: var(--r-pill); }
.hero-loc svg { width: 13px; height: 13px; color: var(--red); }
.hero-loc strong { color: var(--ink); }
.hero-loc a { color: var(--red); font-weight: 600; margin-left: 2px; cursor: pointer; }
.hero-img { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-illustration { width: 100%; max-width: 360px; height: 280px; }

/* ── Offer slide — professional promo banner styling ── */
.hero-slide.offer-slide .hero-grid { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
.hero-slide.offer-slide .hero-tag.offer-tag { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.hero-slide.offer-slide h1 { color: #fff; }
.hero-slide.offer-slide h1 em { color: #FFD966; }
.hero-slide.offer-slide .hero-sub { color: rgba(255,255,255,.82); }
.hero-slide.offer-slide .btn-red { background: #fff; color: var(--red); }
.hero-slide.offer-slide .btn-red:hover { background: #f4f4f4; }
.hero-slide.offer-slide .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.hero-slide.offer-slide .btn-outline:hover { background: rgba(255,255,255,.12); }

.offer-code-row { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.offer-code-label { font-size: .82rem; color: rgba(255,255,255,.75); }
.offer-code { background: rgba(255,255,255,.14); border: 1.5px dashed rgba(255,255,255,.45); color: #fff; font-weight: 800; font-size: .92rem; letter-spacing: .06em; padding: 6px 14px; border-radius: var(--r-sm); }

.hero-offer-grid .hero-illustration { max-width: 320px; height: 260px; }
.offer-disc { position: absolute; top: -10px; left: -10px; width: 78px; height: 78px; background: #fff; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 2; }
.offer-disc-num { font-size: 1.3rem; font-weight: 900; color: var(--red); line-height: 1; }
.offer-disc-txt { font-size: .68rem; font-weight: 800; color: var(--red); letter-spacing: .05em; }

/* Dots + arrows */
.hero-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.18); cursor: pointer; transition: all .2s; border: none; padding: 0; }
.hero-dot.active { background: var(--red); width: 22px; border-radius: 5px; }
.hero-carousel:has(.hero-slide.offer-slide.active) .hero-dot.active { background: #fff; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.85); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; box-shadow: var(--shadow-md); transition: background .15s; }
.hero-arrow:hover { background: #fff; }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }
.hero-arrow svg { width: 16px; height: 16px; color: var(--ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 12px 26px; border-radius: var(--r-sm); font-size: .9rem; font-weight: 700; transition: background .15s, transform .12s; cursor: pointer; border: none; }
.btn:active { transform: scale(.98); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--grey-5); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-full { width: 100%; }

/* ============================================================
   SHOP CATEGORY BANNER
   ============================================================ */
.shop-banner { background: var(--red-bg); border-radius: var(--r-lg); padding: 36px 48px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px; margin: 10px 0 0; position: relative; overflow: hidden; min-height: 220px; }
.shop-banner h1 { font-size: 1.7rem; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.shop-banner p { font-size: .92rem; color: var(--grey-2); max-width: 360px; }
.shop-banner img, .shop-banner-illustration { width: 100%; max-width: 220px; height: 160px; object-fit: contain; margin: 0 auto; }
.shop-banner-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.shop-banner-arrow svg { width: 16px; height: 16px; color: var(--grey-3); }
.shop-title { font-size: 1.7rem; font-weight: 900; color: var(--ink); margin: 18px 0 4px; }

/* ============================================================
   SUB-CATEGORY ICON FILTER
   ============================================================ */
.subcat-icons { display: flex; gap: 32px; overflow-x: auto; padding: 22px 4px 0; scrollbar-width: none; }
.subcat-icons::-webkit-scrollbar { display: none; }
.subcat-icon { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; cursor: pointer; width: 84px; text-align: center; padding-bottom: 14px; border-bottom: 3px solid transparent; }
.subcat-icon.active { border-bottom-color: var(--red); }
.subcat-icon-img { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: var(--grey-6); }
.subcat-icon-img img { width: 100%; height: 100%; object-fit: cover; }
.subcat-icon span { font-size: .82rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.subcat-icon.active span { font-weight: 700; }

.filters-row { display: flex; align-items: center; gap: 14px; padding: 18px 0 8px; }
.filters-btn { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--grey-5); border-radius: var(--r-pill); padding: 8px 16px; font-size: .85rem; font-weight: 600; color: var(--ink); }
.filters-btn svg { width: 15px; height: 15px; }
.sort-select { padding: 8px 14px; border: 1.5px solid var(--grey-5); border-radius: var(--r-pill); font-size: .85rem; font-family: inherit; outline: none; background: var(--white); cursor: pointer; margin-left: auto; }
.item-count-row { padding: 6px 0 18px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.item-count-row span { font-size: .92rem; color: var(--grey-2); }
.subcat-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.item-count { font-size: .85rem; color: var(--grey-2); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-icon { width: 40px; height: 40px; background: var(--red-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 19px; height: 19px; color: var(--red); }

/* ============================================================
   WHY-US GRID
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.why-card { text-align: center; padding: 8px; }
.why-icon { width: 56px; height: 56px; background: var(--red-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.why-icon svg { width: 26px; height: 26px; color: var(--red); }
.why-card h4 { font-size: .92rem; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.why-card p { font-size: .8rem; color: var(--grey-4); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { background: var(--red-bg); border-radius: var(--r-md); padding: 24px; }
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: var(--white); font-weight: 700; font-size: .92rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-name { font-size: .92rem; font-weight: 700; color: var(--ink); }
.rev-stars { color: #E8A91A; font-size: .85rem; letter-spacing: 1px; }
.rev-text { font-size: .9rem; color: var(--grey-2); line-height: 1.7; font-weight: 600; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--ink); color: var(--white); padding: 48px 0; margin-top: 20px; border-radius: var(--r-lg); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.newsletter h2 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.newsletter p { font-size: .88rem; color: rgba(255,255,255,.65); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-input { flex: 1; padding: 13px 16px; border-radius: var(--r-sm); border: none; font-size: .9rem; outline: none; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 950; display: none; }
.cart-drawer-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 94vw; background: var(--white); z-index: 960; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s ease; box-shadow: -6px 0 28px rgba(0,0,0,.15); }
.cart-drawer.open { transform: translateX(0); }
.cd-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px 16px; flex-shrink: 0; }
.cd-head h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.cd-close { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--grey-5); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--grey-3); cursor: pointer; flex-shrink: 0; }
.cd-body { flex: 1; overflow-y: auto; padding: 0 28px; }
.cd-empty { text-align: center; padding: 70px 16px; }
.cd-empty svg { width: 56px; height: 56px; color: var(--grey-5); margin: 0 auto 16px; }
.cd-empty p { font-size: .88rem; color: var(--grey-4); margin-bottom: 20px; }

.cd-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.cd-item-name { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.cd-item-meta { font-size: .78rem; color: var(--grey-4); }
.cd-weight-pill { border: 1.5px solid var(--grey-5); border-radius: var(--r-xs); padding: 5px 12px; font-size: .78rem; color: var(--grey-2); margin-right: 10px; display: inline-block; }
.cd-item-pricecol { text-align: right; flex-shrink: 0; }
.cd-item-price { font-size: .9rem; font-weight: 700; color: var(--ink); }
.cd-item-mrp { font-size: .78rem; color: var(--grey-4); text-decoration: line-through; margin-left: 4px; }
.cd-qty-stepper { display: flex; align-items: center; border: 1.5px solid var(--grey-5); border-radius: var(--r-xs); overflow: hidden; margin-top: 8px; width: fit-content; }
.cd-qty-stepper button { width: 26px; height: 26px; color: var(--red); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cd-qty-stepper span { min-width: 24px; text-align: center; font-size: .82rem; font-weight: 700; }

.cd-bill { border: 1.5px dashed var(--grey-5); border-radius: var(--r-sm); padding: 16px 18px; margin: 20px 0; }
.cd-bill-title { font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.cd-bill-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--grey-2); padding: 4px 0; }
.cd-bill-row.total { font-weight: 800; color: var(--ink); font-size: .95rem; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 6px; }

.cd-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 28px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cd-foot-total { font-size: .92rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.cd-checkout-btn { background: var(--red); color: var(--white); border-radius: var(--r-sm); padding: 14px 28px; font-size: .92rem; font-weight: 700; flex-shrink: 0; }
.cd-checkout-btn:hover { background: var(--red-dark); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 28px 0 0; }
.pd-gallery-main { position: relative; background: var(--grey-7); border-radius: var(--r-md); aspect-ratio: 1; overflow: hidden; margin-bottom: 10px; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); cursor: pointer; z-index: 2; }
.pd-gallery-arrow-prev { right: auto; left: 12px; }
.pd-gallery-arrow svg { width: 15px; height: 15px; color: var(--grey-3); }
.pd-gallery-arrow.hide, .pd-dots:empty { display: none; }
.pd-thumbs { display: none; }
.pd-dots { display: flex; gap: 5px; justify-content: center; margin-top: 10px; }
.pd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grey-5); cursor: pointer; }
.pd-dot.active { background: var(--ink); }

.pd-title { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.pd-subtype { font-size: .9rem; color: var(--grey-3); margin-bottom: 14px; }
.meta-line { display: flex; align-items: center; gap: 0; flex-wrap: wrap; font-size: .88rem; color: var(--grey-2); margin-bottom: 18px; }
.meta-line .mi { display: flex; align-items: center; gap: 6px; padding-right: 16px; }
.meta-line .mi svg { width: 15px; height: 15px; color: var(--grey-3); }
.meta-line .msep { color: var(--grey-5); padding-right: 16px; }

.pd-coupon-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--green-bg); border-radius: var(--r-sm); padding: 14px 18px; margin-bottom: 18px; }
.pd-coupon-text { font-size: .88rem; color: var(--ink); font-weight: 700; }
.pd-coupon-text span { display: block; font-size: .76rem; color: var(--grey-4); font-weight: 400; margin-top: 2px; }
.pd-coupon-code { background: var(--ink); color: #fff; font-size: .8rem; font-weight: 700; padding: 8px 16px; border-radius: var(--r-xs); cursor: pointer; flex-shrink: 0; }

.pd-desc { font-size: .9rem; color: var(--grey-2); line-height: 1.75; margin-bottom: 6px; }
.pd-readmore { font-size: .88rem; font-weight: 700; color: var(--ink); text-decoration: underline; cursor: pointer; margin-bottom: 18px; display: inline-block; }

.price-line { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.pd-price { font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.pd-off-line { font-size: .92rem; color: var(--green); font-weight: 700; }
.pd-mrp-line { font-size: .85rem; color: var(--grey-4); margin-bottom: 16px; }
.pd-mrp-line strike { text-decoration: line-through; }

.pd-ctas { display: flex; gap: 12px; margin: 18px 0; }
.pd-qty-row { display: flex; align-items: center; gap: 14px; margin: 16px 0; }
.pd-qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--grey-5); border-radius: var(--r-sm); overflow: hidden; }
.pd-qty-ctrl button { width: 36px; height: 36px; font-size: 1.1rem; font-weight: 700; color: var(--red); display: flex; align-items: center; justify-content: center; }
.pd-qty-ctrl span { min-width: 38px; text-align: center; font-size: .9rem; font-weight: 700; }

.pd-safety-link { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 700; color: var(--red); text-decoration: underline; margin: 14px 0; cursor: pointer; }
.pd-safety-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.pd-tabs { display: flex; gap: 36px; border-bottom: 1px solid var(--border); margin-top: 44px; }
.pd-tab { padding: 0 0 14px; font-size: 1rem; font-weight: 500; cursor: pointer; border-bottom: 2.5px solid transparent; color: var(--grey-4); margin-bottom: -1px; }
.pd-tab.active { border-bottom-color: var(--red); color: var(--ink); font-weight: 700; }
.pd-tab-pane { padding: 28px 0; display: none; }
.pd-tab-pane.active { display: block; }
.pd-tab-pane p { font-size: .9rem; color: var(--grey-2); line-height: 1.8; margin-bottom: 12px; }

.trust-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; }
.trust-check { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--grey-1); }
.trust-check svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.trust-check.no svg { color: var(--grey-5); }
.trust-check.no { color: var(--grey-4); }

.hscroll-wrap { position: relative; }
.hscroll-row { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.hscroll-row::-webkit-scrollbar { display: none; }
.hscroll-row .product-card { min-width: 220px; flex-shrink: 0; }
.hscroll-arrow { position: absolute; top: 35%; right: -10px; width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); z-index: 2; }
.hscroll-arrow svg { width: 16px; height: 16px; color: var(--grey-2); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.checkout-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; margin-bottom: 18px; }
.checkout-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.step-num { width: 24px; height: 24px; background: var(--red); color: var(--white); border-radius: 50%; font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--grey-2); margin-bottom: 6px; }
.form-input, .form-select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--grey-5); border-radius: var(--r-xs); font-size: .88rem; font-family: inherit; outline: none; background: var(--white); color: var(--ink); }
.form-input:focus, .form-select:focus { border-color: var(--red); }
.form-textarea { resize: none; }
.order-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; position: sticky; top: 100px; }
.order-summary h3 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); color: var(--ink); }
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: .88rem; color: var(--grey-2); }
.sum-row.total { font-weight: 800; font-size: 1rem; color: var(--ink); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.sum-row.discount { color: var(--green); }
.coupon-row { display: flex; gap: 8px; margin: 14px 0; }
.coupon-row input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--grey-5); border-radius: var(--r-xs); font-size: .85rem; outline: none; text-transform: uppercase; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-wrap { max-width: 780px; margin: 0 auto; padding: 48px 16px 80px; }
.policy-wrap h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.policy-date { font-size: .8rem; color: var(--grey-4); margin-bottom: 36px; display: block; }
.policy-sec { margin-bottom: 32px; }
.policy-sec h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); color: var(--ink); }
.policy-sec p { font-size: .9rem; color: var(--grey-2); line-height: 1.8; margin-bottom: 10px; }
.policy-sec ul, .policy-sec ol { padding-left: 20px; }
.policy-sec li { font-size: .9rem; color: var(--grey-2); line-height: 1.8; margin-bottom: 5px; }
.policy-sec ul { list-style: disc; }
.policy-sec ol { list-style: decimal; }
.policy-highlight { background: var(--red-bg); border-left: 3px solid var(--red); border-radius: 0 var(--r-xs) var(--r-xs) 0; padding: 14px 18px; margin: 14px 0; font-size: .88rem; color: var(--grey-1); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 9000; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--ink); color: var(--white); padding: 12px 18px; border-radius: var(--r-sm); font-size: .85rem; font-weight: 500; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); transform: translateX(120%); transition: transform .25s ease; max-width: 300px; }
.toast.show { transform: translateX(0); }
.toast.t-success { border-left: 3px solid var(--green); }
.toast.t-error { border-left: 3px solid var(--red); }
.toast.t-info { border-left: 3px solid #2196F3; }

/* ============================================================
   LOADER
   ============================================================ */
.page-loader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; transition: opacity .4s ease; }
.page-loader.done { opacity: 0; pointer-events: none; }
.loader-logo { height: 50px; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-bar-wrap { width: 140px; height: 3px; background: var(--grey-6); border-radius: 3px; overflow: hidden; }
.loader-bar { height: 100%; background: var(--red); border-radius: 3px; animation: loaderSlide 1.2s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:.6} }
@keyframes loaderSlide { 0%{width:0;margin-left:0} 50%{width:80%;margin-left:0} 100%{width:0;margin-left:100%} }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--white); margin-top: 60px; }
.footer-divider { border-top: 1px solid var(--border); }
.footer-main { padding: 40px 0 36px; }
.footer-logo { height: 30px; margin-bottom: 28px; }
.footer-cols { display: grid; grid-template-columns: 1.3fr 1.6fr 1fr; gap: 40px; }
.footer-col-title { font-size: .82rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 16px; }
.footer-apps { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-apps img { height: 38px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .85rem; color: var(--grey-2); }
.footer-links a:hover { color: var(--red); }
.footer-contact p { font-size: .85rem; color: var(--grey-2); margin-bottom: 8px; }
.footer-contact h5 { font-size: .78rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .03em; margin: 18px 0 6px; }
.footer-pay { display: flex; gap: 14px; align-items: center; margin: 18px 0; }
.footer-pay img { height: 30px; }

.cities-band { background: var(--cream); padding: 40px 0; }
.cities-title { font-size: .85rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 18px; }
.city-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.city-pill { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-pill); padding: 10px 22px; font-size: .88rem; color: var(--ink); }

.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border); }
.footer-copy { font-size: .78rem; color: var(--grey-4); }

/* ============================================================
   UTILITY
   ============================================================ */
.section { padding: 48px 0; }
.section-sm { padding: 24px 0; }
.center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header-search { display: none; }
  .header-location .header-loc-text { display: none; }
  .header-nav { gap: 20px; }
  .header-nav-link span { display: none; }
  .product-grid { grid-template-columns: repeat(3,1fr); gap: 18px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .hero-img { display: none; }
  .hero-loc { margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-arrow { display: none; }
  .offer-code-row { justify-content: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter-form { justify-content: center; }
  .checkout-layout { grid-template-columns: 1fr; }
  .pd-layout { grid-template-columns: 1fr; gap: 24px; }
  .shop-banner { grid-template-columns: 1fr; text-align: center; }
  .shop-banner img, .shop-banner-illustration { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .header-inner { height: 64px; gap: 14px; padding: 0 16px; }
  .header-logo img { height: 32px; }
  .header-location { display: none; }
  .hamburger { display: flex; }
  .header-nav-link.nav-cat, .header-nav-link.nav-store, .header-nav-link.nav-lab, .header-nav-link.nav-login { display: none; }
  .header-search { display: flex; flex: 1; max-width: none; height: 38px; padding: 0 12px; }
  .header-search svg { width: 16px; height: 16px; }
  .header-nav { gap: 14px; margin-left: 4px; }
  .header-nav-link svg { width: 21px; height: 21px; }
  .cart-badge { top: -2px; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero-grid { min-height: 0; padding: 28px 18px 40px; }
  .hero-dots { bottom: 10px; }
  .cart-drawer { width: 100%; max-width: 100%; }
  .trust-check-grid { grid-template-columns: 1fr; }
  .quickcat { width: 72px; }
  .quickcat-img { width: 64px; height: 64px; }
  .city-pills { gap: 8px; }
  .city-pill { padding: 8px 16px; font-size: .82rem; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 16px; font-weight: 600; font-size: .88rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { background: var(--grey-7); }
.faq-a { padding: 0 16px 14px; font-size: .85rem; color: var(--grey-3); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-cat { font-size: .8rem; font-weight: 700; color: var(--red); margin: 28px 0 12px; text-transform: uppercase; letter-spacing: .04em; }

/* ============================================================
   REFUND GUARANTEE BOX
   ============================================================ */
.guarantee { background: var(--ink); color: #fff; border-radius: var(--r-md); padding: 24px 28px; text-align: center; margin-bottom: 32px; }
.guarantee h2 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.guarantee p { color: rgba(255,255,255,.75); font-size: .85rem; }

/* ============================================================
   STAR RATING BUTTONS (write-review)
   ============================================================ */
.star-btn { font-size: 1.8rem; cursor: pointer; color: #ddd; background: none; border: none; padding: 0; line-height: 1; transition: color .12s; }
.star-btn.active { color: #E8A91A; }

/* ============================================================
   MISC HELPERS (checkout / offer cards)
   ============================================================ */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.offer-card { background: var(--grey-7); border-radius: var(--r-md); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; min-height: 140px; }
.offer-card.red-bg { background: var(--red-bg); }
.offer-card.blue-bg { background: #EEF3FF; }
.offer-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.big-pct { font-size: 2rem; font-weight: 900; color: var(--red); line-height: 1; }
.offer-card p { font-size: .82rem; color: var(--grey-3); }

.promo-strip { background: var(--red-bg); border-radius: var(--r-md); padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.promo-strip-left h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.promo-strip-left p { font-size: .85rem; color: var(--grey-3); }
.promo-code { display: flex; align-items: center; gap: 14px; }
.promo-code-pill { background: var(--red); color: #fff; font-size: .82rem; font-weight: 700; padding: 8px 18px; border-radius: var(--r-pill); letter-spacing: .05em; }

.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty svg { width: 64px; height: 64px; color: var(--grey-5); margin: 0 auto 20px; display: block; }
.cart-empty h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.cart-empty p { font-size: .88rem; color: var(--grey-4); margin-bottom: 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 64px; height: 64px; border-radius: var(--r-sm); overflow: hidden; background: var(--grey-7); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.cart-item-meta { font-size: .76rem; color: var(--grey-4); margin-bottom: 8px; }
.cart-item-remove { font-size: .76rem; color: var(--red); cursor: pointer; display: block; margin-top: 6px; }
.cart-item-price { font-size: .92rem; font-weight: 700; color: var(--ink); text-align: right; }

.weight-opts { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0; }
.weight-btn { padding: 7px 16px; border: 1.5px solid var(--grey-5); border-radius: var(--r-pill); font-size: .82rem; font-weight: 600; color: var(--grey-2); transition: border-color .12s, color .12s; }
.weight-btn.active, .weight-btn:hover { border-color: var(--red); color: var(--red); }

.pd-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
.pd-feature { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--grey-2); }
.pd-feature svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

.green-bg { background: var(--green-bg); }

.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

@media (max-width: 600px) {
  .offer-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .pd-features { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-cat { font-size: .8rem; font-weight: 700; color: var(--red); margin: 28px 0 12px; text-transform: uppercase; letter-spacing: .04em; }
.guarantee { background: var(--ink); color: #fff; border-radius: var(--r-md); padding: 24px 28px; text-align: center; margin-bottom: 32px; }
.guarantee h2 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.guarantee p { color: rgba(255,255,255,.75); font-size: .85rem; }
.star-btn { font-size: 1.8rem; cursor: pointer; color: #ddd; background: none; border: none; padding: 0; line-height: 1; transition: color .12s; }
.star-btn.active { color: #E8A91A; }
