/* ============================================================
   Penkkasavvu — Design System
   Premium Kerala handloom kasavu aesthetic
   Cream linen · antique gold zari · deep coffee ink
   ============================================================ */
:root {
  --ink: #261b10;
  --ink-soft: #4a3d2a;
  --paper: #faf6ec;
  --paper-2: #f2ead6;
  --white: #fffdf8;
  --gold: #c9a227;
  --gold-soft: #dcbd6b;
  --gold-deep: #8a6d1f;
  --line: #e5dcc3;
  --muted: #8c7d5f;
  --danger: #b23b2e;
  --success: #2f6b4a;
  --maroon: #7a1f2b;
  --green: #1d4a3a;
  --info: #3b5b78;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px rgba(38,27,16,.06);
  --shadow-md: 0 8px 30px rgba(38,27,16,.10);
  --shadow-lg: 0 20px 60px rgba(38,27,16,.18);
  --radius: 2px;
  --header-h: 72px;
  --announce-h: 34px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 14px; }
::selection { background: var(--gold); color: var(--ink); }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: .01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
p { color: var(--ink-soft); }

.eyebrow {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep);
}
.serif { font-family: var(--serif); }
.muted { color: var(--muted); }
.gold { color: var(--gold-deep); }
.center { text-align: center; }

/* ---------- Kasavu border motif ---------- */
.motif-rule {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  max-width: 320px; margin: 0 auto;
}
.motif-rule::before, .motif-rule::after {
  content: ''; flex: 1; height: 1px; background: var(--gold-soft);
}
.motif-rule span { color: var(--gold-deep); letter-spacing: .3em; font-size: 10px; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  transition: all .28s cubic-bezier(.25,.8,.25,1); cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-light:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: transparent; }
.btn-gold { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }
.btn-gold:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn-sm { padding: 8px 16px; font-size: 11px; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn-link { background: none; border: none; color: var(--ink); text-transform: none; letter-spacing: .05em; padding: 0; font-weight: 500; }
.btn-link:hover { color: var(--gold-deep); transform: none; background: none; }

/* ---------- Announcement bar ---------- */
#announcement-bar {
  background: var(--green); color: #f4ecd7; text-align: center;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 9px 16px; line-height: 1.4;
}
#announcement-bar strong { color: var(--gold-soft); }

/* ---------- Header ---------- */
#site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(250,246,236,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: var(--header-h);
}
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-deep); transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.logo { text-align: center; line-height: 1.1; }
.logo a { font-family: var(--serif); font-size: 23px; letter-spacing: .28em; font-weight: 600; color: var(--ink); }
.logo .logo-sub { display: block; font-family: var(--sans); font-size: 8px; letter-spacing: .52em; text-transform: uppercase; color: var(--gold-deep); margin-top: 2px; }
.nav-actions { display: flex; gap: 16px; justify-content: flex-end; align-items: center; }
.nav-action {
  background: none; border: none; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px; position: relative; color: var(--ink); padding: 6px 0;
}
.nav-action:hover { color: var(--gold-deep); }
.badge {
  position: absolute; top: -6px; right: -12px; background: var(--gold-deep); color: #fff;
  font-size: 9px; min-width: 16px; height: 16px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 700; padding: 0 3px;
}
.nav-burger { display: none; }
.currency-chip {
  display: inline-flex; align-items: center; gap: 5px; font-size: 10px; letter-spacing: .12em;
  color: var(--gold-deep); border: 1px solid var(--line); padding: 3px 8px; border-radius: 20px;
  cursor: pointer; text-transform: uppercase; font-weight: 600;
}
.currency-chip:hover { border-color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: min(80vh, 780px); overflow: hidden; color: #fff;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); animation: heroZoom 8s ease-out forwards; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,12,4,.72) 0%, rgba(18,12,4,.28) 60%); }
.hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 32px; width: 100%; }
.hero-content .eyebrow { color: var(--gold-soft); animation: fadeUp .7s ease both; }
.hero-content .eyebrow { animation-delay: .1s; }
.hero h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); font-weight: 500; margin: 18px 0 20px; max-width: 15ch; font-style: italic; animation: fadeUp .7s ease both; animation-delay: .25s; }
.hero h1 .serif-roman { font-style: normal; }
.hero p { color: rgba(255,255,255,.85); font-size: 16px; max-width: 46ch; font-weight: 300; animation: fadeUp .7s ease both; animation-delay: .4s; }
.hero .cta-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; animation: fadeUp .7s ease both; animation-delay: .55s; }

/* ---------- Sections ---------- */
.section { max-width: 1400px; margin: 0 auto; padding: 84px 32px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.section-head h2 { margin-top: 10px; }

/* ---------- Product grid & cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card { position: relative; animation: fadeUp .7s ease both; transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s ease; }
.product-card:hover { transform: translateY(-4px); }
.product-card .img-wrap {
  position: relative; overflow: hidden; background: var(--paper-2); aspect-ratio: 3/4;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.8,.25,1); }
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--ink); color: var(--paper);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 9px;
}
.product-badge.sale { background: var(--maroon); }
.product-badge.new { background: var(--green); }
.wishlist-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  opacity: 0; transform: translateY(-6px); transition: all .3s ease; box-shadow: var(--shadow-sm);
}
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn.active { color: var(--danger); opacity: 1; transform: none; }
.quick-add {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(255,255,255,.94); border: none; padding: 11px; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: all .3s ease; border-radius: var(--radius);
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--ink); color: var(--paper); }
.product-info { padding-top: 14px; }
.product-info .name { font-size: 13px; letter-spacing: .06em; font-weight: 500; font-family: var(--serif); font-size: 16px; }
.product-info .brand { font-size: 11px; color: var(--gold-deep); letter-spacing: .12em; text-transform: uppercase; }
.price-row { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.price { font-size: 14px; font-weight: 600; }
.compare { color: var(--muted); text-decoration: line-through; font-size: 13px; font-weight: 400; }
.stock-hint { font-size: 11px; color: var(--success); letter-spacing: .08em; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cat-card { position: relative; overflow: hidden; aspect-ratio: 4/5; display: block; border-radius: var(--radius); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.25,.8,.25,1); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card .overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,12,4,.62), transparent 55%);
  display: flex; align-items: flex-end; padding: 24px; color: #fff;
}
.cat-card .overlay h3 { font-size: 1.6rem; }
.cat-card .overlay span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* ---------- Value props / editorial ---------- */
.vp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; text-align: center; }
.vp h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 10px; }
.vp p { font-size: 13px; color: var(--muted); max-width: 24ch; margin: 0 auto; }
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.editorial img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--green); color: #f4ecd7; text-align: center; padding: 80px 32px; position: relative; }
.newsletter .eyebrow { color: var(--gold-soft); }
.newsletter h2 { color: #fdfaf1; margin: 12px 0 8px; }
.newsletter p { color: rgba(244,236,215,.78); max-width: 52ch; margin: 0 auto 30px; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 16px; background: transparent; border: 1px solid rgba(244,236,215,.4); color: #fdfaf1; border-radius: var(--radius); }
.newsletter-form input::placeholder { color: rgba(244,236,215,.55); }

/* ---------- Footer ---------- */
#site-footer { background: #1c150c; color: rgba(244,236,215,.7); }
.footer-grid { max-width: 1400px; margin: 0 auto; padding: 70px 32px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-grid h5 { color: var(--gold-soft); font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px; }
.footer-grid a { display: block; font-size: 13px; padding: 5px 0; transition: color .2s; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-brand p { font-size: 13px; max-width: 30ch; }
.footer-brand .logo-text { font-family: var(--serif); font-size: 30px; letter-spacing: .3em; color: #fdfaf1; margin-bottom: 16px; display: inline-block; }
.footer-bottom { border-top: 1px solid rgba(244,236,215,.12); max-width: 1400px; margin: 0 auto; padding: 24px 32px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(244,236,215,.5); flex-wrap: wrap; gap: 12px; }

/* ---------- Shop / filters ---------- */
.shop-layout { display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: 40px; align-items: start; }
.filter-panel { position: sticky; top: calc(var(--header-h) + 20px); }
.filter-group { padding: 22px 0; border-bottom: 1px solid var(--line); }
.filter-group h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; cursor: pointer; }
.filter-option input { accent-color: var(--gold-deep); }
.filter-option .count { color: var(--muted); font-size: 12px; margin-left: auto; }
.range-inputs { display: flex; gap: 10px; }
.range-inputs input { width: 100%; padding: 8px 10px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; gap: 16px; flex-wrap: wrap; }
.toolbar .result-count { font-size: 13px; color: var(--muted); }
.sort-select { padding: 9px 34px 9px 12px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); font-size: 13px; }
.shop-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Search overlay ---------- */
#search-overlay {
  position: fixed; inset: 0; background: rgba(18,12,4,.5); z-index: 90; display: none;
  opacity: 0; transition: opacity .25s ease;
}
#search-overlay.open { display: block; opacity: 1; }
.search-panel {
  background: var(--paper); max-width: 780px; margin: 9vh auto 0; padding: 34px 40px;
  box-shadow: var(--shadow-lg); border-radius: var(--radius); animation: slideDown .35s ease;
}
.search-panel .close { float: right; background: none; border: none; font-size: 22px; color: var(--muted); }
.search-input-row { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid var(--gold-deep); padding-bottom: 12px; margin-bottom: 6px; }
.search-input-row input { flex: 1; border: none; outline: none; background: transparent; font-size: 22px; font-family: var(--serif); padding: 4px 0; }
.suggest-list { margin-top: 18px; }
.suggest-item { display: flex; align-items: center; gap: 14px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.suggest-item:hover .suggest-name { color: var(--gold-deep); }
.suggest-name { font-family: var(--serif); font-size: 17px; }
.suggest-tag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.search-product img { flex-shrink: 0; }
.search-product .suggest-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.search-product .search-stars { font-size: 11px; color: var(--gold-deep); font-weight: 600; flex-shrink: 0; }
.search-hints { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.search-hint { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--gold-deep); background: var(--paper-2); padding: 4px 10px; border-radius: 12px; }

/* ---------- Product page ---------- */
.product-page { max-width: 1400px; margin: 0 auto; padding: 50px 32px; }
.product-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
.gallery-main { border-radius: var(--radius); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); }
.gallery-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.gallery-thumbs img { width: 86px; aspect-ratio: 3/4; object-fit: cover; cursor: pointer; border: 1px solid transparent; border-radius: var(--radius); opacity: .7; }
.gallery-thumbs img.active { border-color: var(--gold-deep); opacity: 1; }
.pinfo h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin: 10px 0 6px; }
.pinfo .sku-line { font-size: 12px; color: var(--muted); letter-spacing: .12em; }
.pinfo .price-row { margin: 18px 0; }
.pinfo .price { font-size: 22px; }
.pinfo .desc { margin: 20px 0 26px; max-width: 58ch; }
.option-row { margin: 22px 0; }
.option-row label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 10px; }
.size-options, .color-options { display: flex; gap: 8px; flex-wrap: wrap; }
.opt {
  min-width: 44px; height: 44px; padding: 0 12px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: var(--white); font-size: 12px; transition: all .2s; border-radius: var(--radius);
}
.opt:hover { border-color: var(--ink); }
.opt.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.opt.swatch { width: 34px; height: 34px; min-width: 34px; padding: 0; border-radius: 50%; border: 2px solid var(--line); }
.opt.swatch.selected { border-color: var(--gold-deep); box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--gold-deep); }
.opt.disabled { opacity: .35; pointer-events: none; }
.buy-row { display: flex; gap: 12px; margin: 28px 0; align-items: stretch; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.qty-selector button { width: 42px; height: 48px; background: none; border: none; font-size: 16px; color: var(--ink); }
.qty-selector span { width: 34px; text-align: center; font-weight: 600; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.accordion summary { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.accordion summary::after { content: '+'; font-size: 16px; font-weight: 400; color: var(--muted); }
.accordion details[open] summary::after { content: '−'; }
.accordion .acc-body { padding: 14px 0 4px; font-size: 13px; color: var(--ink-soft); }
.review-card { padding: 20px 0; border-bottom: 1px solid var(--line); }
.stars { color: var(--gold-deep); letter-spacing: 2px; font-size: 14px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 12px; color: var(--muted); letter-spacing: .06em; margin-bottom: 20px; }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { margin: 0 8px; }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: 50px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item img { width: 110px; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }
.cart-item .ci-name { font-family: var(--serif); font-size: 18px; }
.cart-item .ci-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.cart-summary { position: sticky; top: calc(var(--header-h) + 20px); background: var(--white); border: 1px solid var(--line); padding: 30px; border-radius: var(--radius); }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-size: 17px; font-weight: 600; }
.coupon-row { display: flex; gap: 8px; margin: 14px 0; }
.coupon-row input { flex: 1; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; background: var(--paper-2); padding: 10px 14px; font-size: 13px; border-radius: var(--radius); margin: 10px 0; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 400px); gap: 56px; align-items: start; }
.stepper { display: flex; gap: 8px; margin: 34px 0 44px; }
.step { flex: 1; text-align: center; position: relative; }
.step .dot { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.step.active .dot { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.step.done .dot { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.step .lbl { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.step.active .lbl { color: var(--ink); font-weight: 600; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); outline: none; transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-deep); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.pay-option {
  display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); padding: 16px; margin-bottom: 12px;
  border-radius: var(--radius); cursor: pointer; background: var(--white); transition: all .2s;
}
.pay-option:hover { border-color: var(--ink); }
.pay-option.selected { border-color: var(--gold-deep); background: var(--paper-2); box-shadow: 0 0 0 1px var(--gold-deep); }
.pay-radio { width: 16px; height: 16px; border: 1px solid var(--muted); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pay-option.selected .pay-radio { border-color: var(--gold-deep); }
.pay-option.selected .pay-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-deep); }
.pay-icon { width: 40px; height: 28px; background: var(--paper-2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; letter-spacing: 1px; font-weight: 700; }
.pay-option .lbl { font-size: 13px; font-weight: 600; }
.pay-option .sub { font-size: 11px; color: var(--muted); }

/* ---------- UPI ---------- */
.upi-box {
  margin-top: 14px; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; background: var(--white);
}
.upi-box .vpa { font-family: var(--serif); font-size: 18px; color: var(--gold-deep); letter-spacing: .03em; }
.upi-apps { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.upi-apps span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--line); padding: 5px 10px; border-radius: 4px; color: var(--muted); }

/* ---------- Auth ---------- */
.auth-wrap { min-height: 72vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-side {
  background: linear-gradient(150deg, #1d4a3a 0%, #153628 55%, #241c10 100%); color: var(--paper); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.auth-side::after {
  content: ''; position: absolute; right: -80px; bottom: -80px; width: 320px; height: 320px;
  border: 2px solid rgba(220,189,107,.25); border-radius: 50%;
}
.auth-side::before {
  content: ''; position: absolute; right: -30px; bottom: -30px; width: 180px; height: 180px;
  border: 2px solid rgba(220,189,107,.2); border-radius: 50%;
}
.auth-side .logo-text { font-family: var(--serif); font-size: 30px; letter-spacing: .3em; color: #fdfaf1; }
.auth-side h2 { color: #fdfaf1; font-size: 2.2rem; margin: 26px 0 16px; font-style: italic; }
.auth-side p { color: rgba(244,236,215,.75); }
.auth-form { padding: 80px 60px; max-width: 560px; margin: 0 auto; width: 100%; }
.auth-form h1 { margin-bottom: 8px; }
.auth-form .sub { color: var(--muted); margin-bottom: 34px; font-size: 14px; }
.auth-switch { text-align: center; margin-top: 22px; font-size: 13px; }
.auth-switch a { font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 26px 0; color: var(--muted); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.google-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: .05em; cursor: pointer; transition: all .2s;
}
.google-btn:hover { border-color: var(--gold-deep); }
.google-g { width: 18px; height: 18px; }
.otp-row { display: flex; gap: 8px; justify-content: center; margin: 8px 0 18px; }
.otp-digit {
  width: 52px; height: 58px; text-align: center; font-size: 24px; font-family: var(--serif); font-weight: 600;
  border: 1px solid var(--line); border-bottom: 2px solid var(--gold-deep); border-radius: 4px; background: var(--white); outline: none;
}
.otp-digit:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 2px rgba(201,162,39,.2); }
.phone-input-row { display: flex; gap: 8px; align-items: stretch; }
.phone-input-row .prefix { display: flex; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-right: none; background: var(--paper-2); border-radius: var(--radius) 0 0 var(--radius); font-size: 14px; font-weight: 600; color: var(--muted); }
.phone-input-row input { border-radius: 0 var(--radius) var(--radius) 0; }
.dev-otp-note {
  margin-top: 14px; padding: 10px 14px; background: var(--paper-2); border: 1px dashed var(--gold);
  font-size: 12px; color: var(--gold-deep); text-align: center; border-radius: var(--radius);
}

/* ---------- Pincode / location ---------- */
.pin-row { display: flex; gap: 8px; align-items: center; }
.pin-row input { flex: 1; }
.pin-result { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; color: var(--success); }
.pin-result .flag { font-size: 15px; }
.loc-note { font-size: 12px; color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 6px; }

/* ---------- Account ---------- */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: start; max-width: 1400px; margin: 0 auto; padding: 50px 32px; }
.account-nav { position: sticky; top: calc(var(--header-h) + 20px); }
.account-nav .item { display: flex; align-items: center; gap: 12px; padding: 13px 16px; font-size: 13px; border-left: 2px solid transparent; cursor: pointer; transition: all .2s; }
.account-nav .item:hover { background: var(--paper-2); }
.account-nav .item.active { border-left-color: var(--gold-deep); background: var(--paper-2); font-weight: 600; }
.account-nav .user-card { padding: 20px 16px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.account-nav .avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 22px; margin-bottom: 12px; }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.stat-card { background: var(--white); border: 1px solid var(--line); padding: 24px; border-radius: var(--radius); }
.stat-card .v { font-family: var(--serif); font-size: 1.9rem; }
.stat-card .k { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.tier-card { background: linear-gradient(135deg, #1d4a3a, #241c10); color: var(--paper); padding: 30px; border-radius: var(--radius); margin-bottom: 34px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.tier-card .tier { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }
.tier-progress { height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; margin-top: 12px; overflow: hidden; }
.tier-progress > div { height: 100%; background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep)); }

/* ---------- Orders / tracking ---------- */
.order-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 22px; overflow: hidden; }
.order-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
.order-head .num { font-family: var(--serif); font-size: 18px; }
.status-pill { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; font-weight: 700; }
.status-processing { background: #f5ead1; color: #8a6d1f; }
.status-pending { background: #eef1f5; color: #4a5a72; }
.status-shipped { background: #d9e7f1; color: #2c5875; }
.status-delivered { background: #dcedde; color: #2c6b46; }
.status-cancelled, .status-refunded { background: #f6ddda; color: #8f3227; }
.status-cod { background: #f5ead1; color: #8a6d1f; }
.status-paid { background: #dcedde; color: #2c6b46; }
.order-body { padding: 20px 24px; }
.order-items-mini { display: flex; gap: 10px; flex-wrap: wrap; }
.order-items-mini img { width: 58px; height: 74px; object-fit: cover; border-radius: var(--radius); }
.order-foot { display: flex; justify-content: space-between; padding: 16px 24px; background: var(--paper-2); font-size: 13px; flex-wrap: wrap; gap: 10px; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item::before { content: ''; position: absolute; left: -25px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--white); border: 2px solid var(--line); }
.tl-item.done::before { background: var(--gold-deep); border-color: var(--gold-deep); }
.tl-item .tl-title { font-size: 13px; font-weight: 600; }
.tl-item .tl-time { font-size: 12px; color: var(--muted); }
.tl-item .tl-desc { font-size: 13px; color: var(--ink-soft); }

/* ---------- Toast ---------- */
#toast-root { position: fixed; bottom: 26px; right: 26px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--ink); color: var(--paper); padding: 14px 22px; border-radius: var(--radius);
  font-size: 13px; display: flex; gap: 10px; align-items: center; box-shadow: var(--shadow-lg);
  animation: toastIn .35s cubic-bezier(.25,.8,.25,1); max-width: 340px;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.gold { background: var(--gold-deep); color: #fff; }
.toast.out { animation: toastOut .3s ease forwards; }

/* ---------- Cart drawer ---------- */
#cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 92vw); background: var(--paper);
  z-index: 120; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .4s cubic-bezier(.25,.8,.25,1);
  display: flex; flex-direction: column;
}
#cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.drawer-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.drawer-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.drawer-item img { width: 72px; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }
.drawer-item .d-name { font-family: var(--serif); font-size: 15px; }
.drawer-item .d-meta { font-size: 11px; color: var(--muted); }
.drawer-qty { display: flex; align-items: center; gap: 8px; }
.drawer-qty button { width: 24px; height: 24px; border: 1px solid var(--line); background: none; border-radius: 50%; font-size: 12px; }
.drawer-foot { padding: 20px 26px; border-top: 1px solid var(--line); }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(18,12,4,.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 110; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ---------- Modal ---------- */
#modal-root .modal-backdrop { position: fixed; inset: 0; background: rgba(18,12,4,.5); z-index: 150; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal { background: var(--paper); max-width: 520px; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); animation: modalIn .3s ease; max-height: 88vh; overflow-y: auto; }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--paper); }
.modal-head h3 { font-size: 1.3rem; }
.modal-body { padding: 26px; }
.modal-close { background: none; border: none; font-size: 20px; color: var(--muted); }

/* ---------- Admin ---------- */
.admin-wrap { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-side { background: #1c150c; color: rgba(244,236,215,.75); padding: 30px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; border-right: 1px solid rgba(244,236,215,.06); }
.admin-side::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--gold-deep)); }
.admin-side .admin-logo { font-family: var(--serif); font-size: 22px; letter-spacing: .24em; color: #fdfaf1; padding: 0 28px 26px; }
.admin-side .admin-logo span { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .3em; color: var(--gold-soft); margin-top: 4px; }
.admin-nav-group { padding: 8px 0; }
.admin-nav-group .g-label { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: rgba(244,236,215,.4); padding: 14px 28px 8px; }
.admin-nav-link { display: flex; align-items: center; gap: 12px; padding: 11px 28px; font-size: 13px; cursor: pointer; transition: all .2s; border-left: 2px solid transparent; }
.admin-nav-link:hover { background: rgba(255,255,255,.06); color: var(--paper); }
.admin-nav-link.active { background: rgba(255,255,255,.09); color: var(--paper); border-left-color: var(--gold); font-weight: 600; }
.admin-main { padding: 34px 40px; min-width: 0; }
.admin-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.admin-head h1 { font-size: 2rem; }
.admin-head .crumb { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.admin-toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.admin-toolbar input, .admin-toolbar select { padding: 10px 12px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 30px; }
.kpi { background: var(--white); border: 1px solid var(--line); padding: 22px; border-radius: var(--radius); position: relative; overflow: hidden; }
.kpi::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-deep); opacity: 0; transition: opacity .2s; }
.kpi:hover::after { opacity: 1; }
.kpi .k { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.kpi .v { font-family: var(--serif); font-size: 2rem; margin-top: 6px; }
.kpi .d { font-size: 12px; margin-top: 4px; }
.kpi .d.up { color: var(--success); }
.kpi .d.down { color: var(--danger); }
.table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table th { text-align: left; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--paper-2); white-space: nowrap; }
.table td { padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: middle; }
.table tr:hover td { background: var(--paper-2); }
.table .thumb { width: 42px; height: 54px; object-fit: cover; border-radius: var(--radius); }
.table-actions { display: flex; gap: 8px; }
.icon-btn { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); font-size: 14px; transition: all .2s; }
.icon-btn:hover { border-color: var(--ink); }
.icon-btn.danger:hover { border-color: var(--danger); color: var(--danger); }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 26px; }
.panel h3 { font-size: 1.35rem; margin-bottom: 18px; }
.chart-box { position: relative; height: 300px; }
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 240px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bar { width: 70%; background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep)); border-radius: 2px 2px 0 0; transition: height .8s cubic-bezier(.25,.8,.25,1); min-height: 2px; }
.bar-col .bl { font-size: 10px; color: var(--muted); transform: rotate(-40deg); white-space: nowrap; }
.status-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.switch { position: relative; width: 40px; height: 22px; background: var(--line); border-radius: 20px; transition: background .2s; flex-shrink: 0; }
.switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s; box-shadow: var(--shadow-sm); }
.switch.on { background: var(--success); }
.switch.on::after { transform: translateX(18px); }
.tab-bar { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.tab { padding: 12px 20px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; border-bottom: 2px solid transparent; color: var(--muted); font-weight: 600; }
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-bottom-color: var(--gold-deep); }
.drop-zone { border: 2px dashed var(--line); border-radius: var(--radius); padding: 50px; text-align: center; transition: all .25s; background: var(--white); }
.drop-zone:hover, .drop-zone.drag { border-color: var(--gold-deep); background: var(--paper-2); }
.tag { display: inline-flex; align-items: center; gap: 6px; background: var(--paper-2); border-radius: 20px; padding: 4px 10px; font-size: 11px; }
.tag.gold { background: #f5ead1; color: #8a6d1f; }
.chip { display: inline-block; background: var(--paper-2); border-radius: 4px; padding: 3px 8px; font-size: 11px; margin: 2px; }

/* ---------- General utilities ---------- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.text-sm { font-size: 13px; } .text-xs { font-size: 12px; }
.hide { display: none !important; }
@media (min-width: 769px) { .hide-desktop { display: none !important; } }
@media (max-width: 768px) { .hide-mobile-label { display: none !important; } }
.w-100 { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-state .icon { font-size: 44px; margin-bottom: 14px; opacity: .5; }
.empty-state h3 { font-family: var(--serif); color: var(--ink); font-size: 1.6rem; margin-bottom: 8px; }
.empty-state p { max-width: 40ch; margin: 0 auto 24px; }
.spinner { width: 34px; height: 34px; border: 3px solid var(--line); border-top-color: var(--gold-deep); border-radius: 50%; animation: spin .7s linear infinite; margin: 60px auto; }
.skeleton { background: linear-gradient(90deg, var(--paper-2) 25%, #e8e0ca 50%, var(--paper-2) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius); }
.skeleton.img { aspect-ratio: 3/4; width: 100%; }

/* ---------- Animations ---------- */
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1.02); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(10px); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: -200% 0; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1); }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { animation: fadeUp .7s ease both; }
.stagger > *:nth-child(1) { animation-delay: .05s; } .stagger > *:nth-child(2) { animation-delay: .12s; }
.stagger > *:nth-child(3) { animation-delay: .19s; } .stagger > *:nth-child(4) { animation-delay: .26s; }
.stagger > *:nth-child(5) { animation-delay: .33s; } .stagger > *:nth-child(6) { animation-delay: .40s; }
.stagger > *:nth-child(7) { animation-delay: .47s; } .stagger > *:nth-child(8) { animation-delay: .54s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; background: none; border: none; font-size: 20px; }
  .shop-layout { grid-template-columns: 180px 1fr; gap: 28px; }
  .cart-layout { grid-template-columns: minmax(0,1fr) minmax(240px,300px); gap: 32px; }
  .checkout-layout { grid-template-columns: minmax(0,1fr) minmax(240px,340px); gap: 32px; }
  .product-layout { grid-template-columns: 1fr 1fr; gap: 36px; }
  .editorial { gap: 36px; }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; display: flex; flex-wrap: wrap; padding: 14px; }
  .admin-side .admin-logo { width: 100%; }
  .admin-nav-group { display: inline; }
  .admin-nav-link { display: inline-flex; padding: 8px 14px; border: none; border-radius: 4px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { grid-template-columns: auto 1fr auto; gap: 12px; }
  .logo a { font-size: 18px; }
  .logo .logo-sub { font-size: 7px; }
}
@media (max-width: 768px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .product-layout, .cart-layout, .checkout-layout, .account-layout, .editorial, .auth-wrap { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-wrap: wrap; }
  .gallery-thumbs img { width: 60px; }
  .cart-item { grid-template-columns: 84px 1fr auto; gap: 14px; padding: 16px 0; }
  .cart-item img { width: 84px; }
  .cart-item .ci-name { font-size: 16px; }
  .container { padding: 0 24px; }
}
@media (max-width: 620px) {
  .product-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 20px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .otp-digit { width: 44px; height: 50px; font-size: 20px; }
}
@media (max-width: 420px) {
  .product-grid, .shop-grid { grid-template-columns: 1fr; }
  .hero { height: 62vh; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .hero p { font-size: 14px; }
  .hero-content { padding: 0 18px; }
  .hero .cta-row { flex-direction: column; }
  .container { padding: 0 16px; }
  .section { padding: 40px 16px; }
  .nav { padding: 0 16px; }
  .cart-item { grid-template-columns: 64px 1fr; gap: 12px; padding: 14px 0; }
  .cart-item img { width: 64px; }
  .cart-item .ci-name { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-thumbs img { width: 50px; }
  .stat-cards { grid-template-columns: 1fr; }
  .buy-row { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter { padding: 56px 20px; }
  .auth-form { padding: 40px 24px; }
  .auth-side { padding: 60px 32px; }
  .auth-side h2 { font-size: 1.7rem; }
  .checkout-layout .cart-summary { position: static; }
}
