/* ─────────────────────────────────────────────────────────
   RakhiUtsav — shared stylesheet
   Used by index, product, collection, cart, checkout
   ───────────────────────────────────────────────────────── */

:root {
  --cream:        #F8F2EA;
  --cream-soft:   #FBF7F0;
  --cream-deep:   #F1E7D5;
  --red:          #C92222;
  --red-deep:     #A81818;
  --red-darker:   #8B1313;
  --saffron:      #EC7C21;
  --saffron-soft: #F4A055;
  --gold:         #D4A24C;
  --brown:        #3A2317;
  --brown-70:     rgba(58,35,23,0.7);
  --brown-50:     rgba(58,35,23,0.5);
  --brown-30:     rgba(58,35,23,0.3);
  --hairline:     rgba(58,35,23,0.12);
  --hairline-2:   rgba(58,35,23,0.22);
  --white:        #FFFFFF;
  --success:      #2D7A4A;

  --display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --body:    'Manrope', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --ease:      cubic-bezier(.2,.7,.2,1);
  --transition: 0.3s var(--ease);

  --shadow-sm: 0 2px 8px -4px rgba(58,35,23,0.2);
  --shadow:    0 14px 32px -16px rgba(58,35,23,0.22);
  --shadow-lg: 0 24px 60px -24px rgba(58,35,23,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 500; letter-spacing: -0.005em; color: var(--brown); }

.shell { max-width: 1340px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.shell-narrow { max-width: 1080px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }

/* ── utility bar ─────────────────────────────────────────── */
.utility {
  background: var(--brown);
  color: rgba(248,242,234,0.85);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 20px;
}
.utility ul { display: flex; gap: 22px; list-style: none; }
.utility li { display: flex; align-items: center; gap: 8px; }
.utility li .icon { width: 12px; height: 12px; opacity: 0.85; }
.utility a { transition: color var(--transition); }
.utility a:hover { color: var(--saffron); }
@media (max-width: 720px) {
  .utility-inner { justify-content: center; }
  .utility ul:last-child { display: none; }
}

/* ── header ──────────────────────────────────────────────── */
.site-header {
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}
.brandmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  text-decoration: none;
}
.brand-wordmark {
  font-family: var(--body);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.015em;
  line-height: 1;
  display: inline-flex;
  gap: 0.22em;
}
.brand-wordmark .brand-rakhi { color: var(--red); }
.brand-wordmark .brand-utsav { color: var(--saffron); }
.brand-wordmark .brand-i {
  position: relative;
  display: inline-block;
}
.brand-wordmark .brand-i::before {
  content: '';
  position: absolute;
  width: 0.22em;
  height: 0.30em;
  background: var(--saffron);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: -0.20em;
  left: 50%;
  transform: translateX(-50%);
}
.brand-tagline {
  font-family: var(--body);
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--success);
  margin-top: 2px;
}
.search { position: relative; max-width: 560px; width: 100%; justify-self: center; }
.search input {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: var(--white);
  padding: 0 52px 0 22px;
  font-size: 14px;
  color: var(--brown);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search input::placeholder { color: var(--brown-50); }
.search input:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(201,34,34,0.08); }
.search button {
  position: absolute; right: 5px; top: 5px;
  width: 36px; height: 36px;
  border: 0; cursor: pointer;
  background: var(--red); color: var(--cream);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.search button:hover { background: var(--red-deep); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.action-btn {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--brown);
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}
.action-btn .icon { width: 22px; height: 22px; }
.action-btn:hover { color: var(--red); }
.action-btn .badge {
  position: absolute; top: -4px; right: -8px;
  background: var(--red); color: var(--cream);
  border-radius: 999px;
  font-size: 10px;
  min-width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px; font-weight: 600;
}
@media (max-width: 880px) {
  .header-inner { grid-template-columns: auto 1fr; gap: 14px; }
  .search { grid-column: 1 / -1; order: 3; }
  .brand-wordmark { font-size: 26px; }
  .brand-tagline { font-size: 9.5px; letter-spacing: 0.05em; }
  .action-btn span:not(.icon):not(.badge) { display: none; }
  .header-actions { gap: 14px; }
}

/* ── primary nav ─────────────────────────────────────────── */
.primary-nav {
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 100px;
  z-index: 49;
}
@media (max-width: 880px) { .primary-nav { top: 130px; } }
.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  list-style: none;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.primary-nav ul::-webkit-scrollbar { display: none; }
.primary-nav a {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.primary-nav a::after {
  content:''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--transition);
}
.primary-nav a:hover, .primary-nav a.active { color: var(--red); }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }

/* ── breadcrumbs ─────────────────────────────────────────── */
.breadcrumbs {
  padding: 18px 0 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brown-50);
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumbs a { transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--brown-30);
}
.breadcrumbs li:last-child { color: var(--brown); font-weight: 500; }

/* ── buttons ─────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--cream);
  padding: 16px 30px;
  border-radius: 999px;
  border: 0;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px -10px rgba(201,34,34,0.55);
  white-space: nowrap;
}
.cta:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(201,34,34,0.7); }
.cta:active { transform: translateY(0); }
.cta.outline { background: transparent; color: var(--red); border: 1.5px solid var(--red); box-shadow: none; }
.cta.outline:hover { background: var(--red); color: var(--cream); }
.cta.saffron { background: var(--saffron); box-shadow: 0 8px 24px -10px rgba(236,124,33,0.5); }
.cta.saffron:hover { background: var(--red); box-shadow: 0 14px 30px -12px rgba(201,34,34,0.6); }
.cta.dark { background: var(--brown); box-shadow: 0 8px 24px -10px rgba(58,35,23,0.4); }
.cta.dark:hover { background: var(--red); }
.cta.block { width: 100%; justify-content: center; }
.cta.small { padding: 10px 20px; font-size: 11px; }

/* ── hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 60%, var(--cream-soft) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 26px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content:''; display: inline-block; width: 24px; height: 1px; background: var(--red);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero .happy {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--saffron);
  margin-bottom: 22px;
}
.hero p.lede {
  font-size: 16px; line-height: 1.7;
  color: var(--brown-70);
  max-width: 46ch;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .stat { border-left: 2px solid var(--red); padding-left: 14px; }
.hero-stats .stat strong {
  font-family: var(--display);
  font-size: 26px; font-weight: 600;
  display: block; line-height: 1;
}
.hero-stats .stat span {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--brown-50);
}
.hero-art {
  position: relative; border-radius: 8px;
  overflow: hidden; aspect-ratio: 5/4;
  box-shadow: 0 30px 60px -30px rgba(58,35,23,0.4), 0 0 0 1px rgba(58,35,23,0.06);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(201,34,34,0.18), rgba(236,124,33,0.06) 60%, transparent);
  pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(201,34,34,0.18);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(201,34,34,0.18); }
  50%     { box-shadow: 0 0 0 9px rgba(201,34,34,0.04); }
}
.hero-badge strong { font-family: var(--display); font-weight: 600; font-size: 14px; }
.hero-badge span { font-size: 11px; color: var(--brown-50); letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 880px) { .hero-badge { bottom: -12px; left: 12px; } }

/* ── categories ──────────────────────────────────────────── */
.categories {
  background: var(--cream-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 0;
}
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
@media (max-width: 880px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--hairline-2);
  background: var(--cream-deep);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cat-card:hover .cat-circle { border-color: var(--red); box-shadow: 0 10px 24px -10px rgba(201,34,34,0.4); }
.cat-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-card h4 { font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.cat-card small { font-size: 11px; color: var(--brown-50); letter-spacing: 0.08em; }

/* ── section commons ─────────────────────────────────────── */
section.panel { padding: clamp(60px, 8vw, 100px) 0; }
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; gap: 24px; flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.sec-head h2 em { color: var(--red); font-style: italic; }
.sec-head .eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.sec-head .view-all {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition), gap var(--transition);
}
.sec-head .view-all:hover { color: var(--red); border-color: var(--red); gap: 14px; }

/* ── product cards ───────────────────────────────────────── */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .products { grid-template-columns: 1fr 1fr; gap: 14px; } }

.product {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product:hover {
  transform: translateY(-4px);
  border-color: rgba(201,34,34,0.4);
  box-shadow: 0 18px 36px -18px rgba(58,35,23,0.28);
}
.product .image {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--cream-deep);
}
.product .image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s var(--ease);
}
.product:hover .image img { transform: scale(1.06); }
.product .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--cream);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 4px;
}
.product .badge.new { background: var(--saffron); }
.product .badge.dark { background: var(--brown); }
.product .wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border: 0; border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brown);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.product .wishlist:hover { background: var(--red); color: var(--cream); transform: scale(1.08); }
.product .wishlist.active { background: var(--red); color: var(--cream); }
.product .body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product .cat {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brown-50);
}
.product h3 {
  font-family: var(--display);
  font-size: 17px; font-weight: 500; line-height: 1.25;
}
.product h3 a:hover { color: var(--red); }
.product .rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--brown-70);
}
.product .rating .stars { color: var(--saffron); letter-spacing: 1px; }
.product .price {
  display: flex; align-items: baseline; gap: 8px; margin-top: auto;
}
.product .price .now {
  font-family: var(--display); font-weight: 600;
  font-size: 20px; color: var(--red);
}
.product .price .was { text-decoration: line-through; color: var(--brown-50); font-size: 13px; }
.product .price .off {
  font-size: 11px; font-weight: 700; color: var(--saffron);
  letter-spacing: 0.06em; margin-left: auto;
}
.product .add {
  margin-top: 12px; width: 100%;
  background: var(--brown); color: var(--cream);
  border: 0; padding: 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition);
}
.product .add:hover { background: var(--red); }
.product .add.added { background: var(--success); }

/* ── promo bands ─────────────────────────────────────────── */
.promo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 880px) { .promo-row { grid-template-columns: 1fr; } }
.promo {
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
.promo .copy { padding: clamp(24px, 3vw, 40px); color: var(--cream); position: relative; z-index: 1; }
.promo .copy .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,242,234,0.85);
  margin-bottom: 12px;
}
.promo .copy h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 12px;
}
.promo .copy h3 em { font-style: italic; }
.promo .copy p {
  font-size: 14px; line-height: 1.55;
  color: rgba(248,242,234,0.85);
  margin-bottom: 24px;
  max-width: 32ch;
}
.promo .image { position: relative; min-height: 280px; }
.promo .image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.promo.maroon { background: var(--red-darker); }
.promo.saffron { background: var(--saffron); }
.promo .small-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--brown);
  padding: 12px 22px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition), gap var(--transition);
}
.promo .small-cta:hover {
  background: var(--brown); color: var(--cream);
  transform: translateY(-2px); gap: 16px;
}

/* ── why shop ────────────────────────────────────────────── */
.why { background: var(--cream-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { text-align: center; padding: 28px 18px; border-radius: var(--radius); transition: background var(--transition); }
.why-card:hover { background: var(--white); }
.why-card .icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--red); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-card .icon-wrap svg { width: 26px; height: 26px; }
.why-card h4 { font-family: var(--display); font-size: 17px; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--brown-70); line-height: 1.5; }

/* ── newsletter ──────────────────────────────────────────── */
.newsletter {
  position: relative;
  background: linear-gradient(135deg, var(--red-darker) 0%, var(--red) 70%, var(--saffron) 130%);
  color: var(--cream);
  overflow: hidden;
}
.newsletter::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(236,124,33,0.32), transparent 50%);
  pointer-events: none;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative; z-index: 1;
}
@media (max-width: 720px) { .newsletter-inner { grid-template-columns: 1fr; } }
.newsletter .eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(248,242,234,0.85);
  margin-bottom: 12px;
}
.newsletter h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.newsletter h2 em { font-style: italic; color: #FFD7A1; }
.newsletter p.sub { margin-top: 14px; font-size: 14px; color: rgba(248,242,234,0.8); max-width: 40ch; }
.newsletter form {
  display: flex; background: var(--cream); border-radius: 999px;
  padding: 6px 6px 6px 22px; align-items: center; gap: 8px;
  max-width: 520px; width: 100%;
}
.newsletter input {
  flex: 1; border: 0; background: transparent; outline: none;
  height: 46px; color: var(--brown); font-size: 14px;
}
.newsletter input::placeholder { color: var(--brown-50); }
.newsletter button {
  background: var(--brown); color: var(--cream); border: 0;
  padding: 0 22px; height: 46px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition), gap var(--transition);
}
.newsletter button:hover { background: var(--red-deep); gap: 14px; }

/* ── footer ──────────────────────────────────────────────── */
footer.site-footer {
  background: var(--brown);
  color: rgba(248,242,234,0.7);
  font-size: 14px;
}
.footer-top {
  padding: 60px 0 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brandmark { margin-bottom: 18px; }
.footer-brand .brand-wordmark { font-size: 30px; }
.footer-brand .brand-wordmark .brand-rakhi { color: var(--saffron-soft); }
.footer-brand .brand-wordmark .brand-utsav { color: var(--gold); }
.footer-brand .brand-tagline { color: rgba(248,242,234,0.65); }
.footer-brand p { max-width: 32ch; line-height: 1.65; font-size: 13.5px; }
footer h5 {
  font-family: var(--display); font-size: 15px; font-weight: 500;
  color: var(--cream); margin-bottom: 18px; letter-spacing: 0.01em;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  font-size: 13.5px; color: rgba(248,242,234,0.7);
  transition: color var(--transition), padding-left var(--transition);
}
footer ul a:hover { color: var(--saffron); padding-left: 4px; }
.socials { display: flex; gap: 10px; margin-bottom: 22px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%; background: rgba(248,242,234,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.socials a:hover { background: var(--saffron); color: var(--brown); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }
.payments { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.pay-pill {
  background: rgba(248,242,234,0.08);
  border: 1px solid rgba(248,242,234,0.12);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 10.5px; letter-spacing: 0.06em; font-weight: 600;
  color: rgba(248,242,234,0.85);
}
.footer-bottom {
  border-top: 1px solid rgba(248,242,234,0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(248,242,234,0.55);
  gap: 16px; flex-wrap: wrap;
}

/* ────────────────────────────────────────────────────────────
   PRODUCT DETAIL PAGE
   ──────────────────────────────────────────────────────────── */
.pdp {
  padding: 36px 0 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .pdp { grid-template-columns: 1fr; gap: 32px; } }

.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery .main {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery .main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--transition);
}
.gallery .main .save {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.94);
  border: 0; border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.gallery .main .save:hover { background: var(--red); color: var(--cream); }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.thumbs button {
  aspect-ratio: 1/1; padding: 0; cursor: pointer;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.thumbs button.active { border-color: var(--red); }
.thumbs button:hover { transform: translateY(-2px); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info { padding-top: 8px; }
.pdp-info .crumb {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown-50);
  margin-bottom: 12px;
}
.pdp-info h1 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1; font-weight: 500;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
}
.pdp-info .reviews-line {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--brown-70);
  padding-bottom: 24px; border-bottom: 1px solid var(--hairline);
  margin-bottom: 24px;
}
.pdp-info .reviews-line .stars { color: var(--saffron); letter-spacing: 2px; font-size: 16px; }
.pdp-info .reviews-line a { color: var(--red); border-bottom: 1px solid var(--red); padding-bottom: 1px; }
.pdp-info .price-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 6px;
}
.pdp-info .price-row .now {
  font-family: var(--display); font-size: 38px; font-weight: 600; color: var(--red);
}
.pdp-info .price-row .was { font-size: 18px; text-decoration: line-through; color: var(--brown-50); }
.pdp-info .price-row .off {
  background: var(--saffron); color: var(--brown);
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}
.pdp-info .tax-note { font-size: 12px; color: var(--brown-50); margin-bottom: 28px; }

.pdp-info .swatches { margin-bottom: 24px; }
.pdp-info .swatches .label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brown-50); margin-bottom: 10px;
}
.pdp-info .swatches .row { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-info .swatch {
  border: 1.5px solid var(--hairline);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.pdp-info .swatch:hover { border-color: var(--red); color: var(--red); }
.pdp-info .swatch.active { border-color: var(--red); background: var(--red); color: var(--cream); }

.qty-row {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 18px;
}
.qty-stepper {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--hairline);
  border-radius: 999px;
  overflow: hidden;
  height: 52px;
}
.qty-stepper button {
  width: 44px; height: 100%; background: transparent;
  border: 0; cursor: pointer;
  font-size: 18px; color: var(--brown);
  transition: background var(--transition);
}
.qty-stepper button:hover { background: var(--cream-deep); }
.qty-stepper input {
  width: 44px; text-align: center;
  background: transparent; border: 0;
  font-size: 15px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  outline: none;
}

.pdp-info .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pdp-info .actions .cta { flex: 1; min-width: 200px; justify-content: center; }
.pdp-info .actions .cta.outline { flex: 0; min-width: 160px; }

.pdp-info .perks {
  margin: 32px 0 0;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.pdp-info .perk { display: flex; gap: 14px; align-items: flex-start; }
.pdp-info .perk svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--red); margin-top: 2px; }
.pdp-info .perk strong { display: block; font-size: 13px; margin-bottom: 2px; }
.pdp-info .perk span { font-size: 12px; color: var(--brown-50); line-height: 1.5; }

/* PDP accordion */
.pdp-details { margin-top: 56px; max-width: 1080px; }
.acc {
  border-top: 1px solid var(--hairline);
}
.acc:last-child { border-bottom: 1px solid var(--hairline); }
.acc-trigger {
  width: 100%; background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  text-align: left;
  transition: color var(--transition);
}
.acc-trigger:hover { color: var(--red); }
.acc-trigger .plus { font-size: 20px; transition: transform var(--transition); color: var(--brown-50); }
.acc.open .acc-trigger .plus { transform: rotate(45deg); color: var(--red); }
.acc-body {
  display: none;
  padding: 0 0 24px;
  font-size: 14.5px; line-height: 1.7; color: var(--brown-70);
  max-width: 70ch;
}
.acc-body p + p { margin-top: 12px; }
.acc-body ul { padding-left: 18px; margin-top: 8px; }
.acc-body li { padding: 4px 0; }
.acc.open .acc-body { display: block; }

/* ────────────────────────────────────────────────────────────
   COLLECTION (CATEGORY) PAGE
   ──────────────────────────────────────────────────────────── */
.collection-header {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--hairline);
}
.collection-header h1 {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.collection-header h1 em { color: var(--red); font-style: italic; }
.collection-header p {
  max-width: 56ch;
  color: var(--brown-70);
  font-size: 15px;
  line-height: 1.65;
}
.collection-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 32px 0 80px;
  align-items: start;
}
@media (max-width: 880px) { .collection-layout { grid-template-columns: 1fr; } }

.filters {
  position: sticky; top: 160px;
  font-size: 13.5px;
}
@media (max-width: 880px) {
  .filters { position: static; padding-bottom: 24px; border-bottom: 1px solid var(--hairline); }
}
.filters h6 {
  font-family: var(--body);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brown-50);
  margin: 24px 0 12px;
  font-weight: 700;
}
.filters h6:first-child { margin-top: 0; }
.filters label { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; }
.filters label:hover { color: var(--red); }
.filters input[type="checkbox"], .filters input[type="radio"] {
  accent-color: var(--red); width: 16px; height: 16px;
}
.filters .count { margin-left: auto; color: var(--brown-50); font-size: 12px; }
.filters .range {
  display: flex; gap: 8px; align-items: center; margin-top: 8px;
}
.filters .range input {
  width: 100%; height: 38px; border: 1px solid var(--hairline-2);
  background: var(--white); border-radius: var(--radius-sm);
  padding: 0 10px; font-size: 13px;
}

.toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  gap: 14px; flex-wrap: wrap;
}
.toolbar .count-line { font-size: 13px; color: var(--brown-70); }
.toolbar .count-line strong { color: var(--brown); }
.toolbar .sort-row { display: flex; align-items: center; gap: 10px; }
.toolbar select {
  border: 1px solid var(--hairline-2); background: var(--white);
  border-radius: 999px; padding: 8px 36px 8px 16px;
  font-size: 13px; color: var(--brown);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%233A2317' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 10px;
}

/* ────────────────────────────────────────────────────────────
   CART
   ──────────────────────────────────────────────────────────── */
.cart-page {
  padding: 40px 0 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .cart-page { grid-template-columns: 1fr; gap: 32px; } }
.cart-page h1 {
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cart-page h1 em { color: var(--red); font-style: italic; }
.cart-page .subtitle { color: var(--brown-70); margin-bottom: 28px; }

.line-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
@media (max-width: 520px) {
  .line-item { grid-template-columns: 80px 1fr; }
  .line-item .line-actions { grid-column: 1 / -1; }
}
.line-item .li-img {
  width: 100px; height: 100px;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid var(--hairline);
}
@media (max-width: 520px) { .line-item .li-img { width: 80px; height: 80px; } }
.line-item .li-img img { width: 100%; height: 100%; object-fit: cover; }
.line-item .li-meta .cat {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-50);
}
.line-item .li-meta h3 {
  font-family: var(--display);
  font-size: 18px; font-weight: 500; line-height: 1.25;
  margin: 4px 0 4px;
}
.line-item .li-meta .variant { font-size: 13px; color: var(--brown-70); }
.line-item .li-meta .li-row {
  margin-top: 12px;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.line-item .li-meta .remove {
  background: transparent; border: 0;
  font-size: 12px; color: var(--brown-50); text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-bottom: 1px solid var(--brown-30);
  padding: 0 0 1px;
  transition: color var(--transition), border-color var(--transition);
}
.line-item .li-meta .remove:hover { color: var(--red); border-color: var(--red); }
.line-item .li-price {
  font-family: var(--display);
  font-size: 22px; font-weight: 600; color: var(--red);
  text-align: right;
}
.line-item .li-price .was {
  display: block;
  font-family: var(--body); font-size: 12px;
  text-decoration: line-through;
  color: var(--brown-50);
  font-weight: 400;
}

.cart-summary {
  position: sticky; top: 160px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}
.cart-summary h3 {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.cart-summary .row {
  display: flex; justify-content: space-between; padding: 10px 0;
  font-size: 14px;
}
.cart-summary .row .label { color: var(--brown-70); }
.cart-summary .row .value { font-weight: 600; }
.cart-summary .row.shipping .value.free { color: var(--success); }
.cart-summary .total {
  display: flex; justify-content: space-between;
  padding: 18px 0 6px;
  margin-top: 14px;
  border-top: 1px dashed var(--hairline);
}
.cart-summary .total .label { font-family: var(--display); font-size: 18px; }
.cart-summary .total .value { font-family: var(--display); font-size: 26px; color: var(--red); font-weight: 600; }
.cart-summary .tax { font-size: 11px; color: var(--brown-50); margin-bottom: 22px; }
.cart-summary .cta { width: 100%; justify-content: center; margin-bottom: 12px; }
.cart-summary .secure {
  text-align: center;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-50);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  margin-top: 8px;
}
.cart-summary .coupon {
  display: flex; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--hairline);
}
.cart-summary .coupon input {
  flex: 1; padding: 10px 14px;
  border: 1px solid var(--hairline-2); border-radius: var(--radius-sm);
  background: var(--cream-soft); font-size: 13px;
}
.cart-summary .coupon button {
  background: var(--brown); color: var(--cream); border: 0;
  padding: 0 18px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.cart-summary .coupon button:hover { background: var(--red); }

.cart-empty { text-align: center; padding: 80px 24px; }
.cart-empty svg { width: 64px; height: 64px; color: var(--brown-30); margin-bottom: 20px; }
.cart-empty h2 { font-family: var(--display); font-size: 28px; margin-bottom: 10px; }
.cart-empty p { color: var(--brown-70); margin-bottom: 28px; max-width: 40ch; margin-left: auto; margin-right: auto; }

/* ────────────────────────────────────────────────────────────
   CHECKOUT
   ──────────────────────────────────────────────────────────── */
.checkout-page {
  padding: 32px 0 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .checkout-page { grid-template-columns: 1fr; gap: 32px; } }
.checkout-page h1 {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}
.checkout-page h1 em { color: var(--red); font-style: italic; }
.checkout-page .crumbs-line {
  font-size: 12px; letter-spacing: 0.08em; color: var(--brown-50);
  margin-bottom: 32px;
}
.checkout-page .crumbs-line a { color: var(--red); border-bottom: 1px solid var(--red); }

.checkout-section {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-bottom: 16px;
}
.checkout-section h2 {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 20px; font-weight: 500;
  margin-bottom: 22px;
}
.checkout-section h2 .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--red); color: var(--cream);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 13px; font-weight: 700;
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-50); font-weight: 600;
}
.field input, .field select, .field textarea {
  border: 1px solid var(--hairline-2);
  background: var(--cream-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--brown);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,34,34,0.08);
}
.field textarea { min-height: 84px; resize: vertical; }
.field .hint { font-size: 11px; color: var(--brown-50); }

.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-options label {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--hairline-2);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream-soft);
  transition: border-color var(--transition), background var(--transition);
}
.payment-options label:hover { border-color: var(--red); }
.payment-options input[type="radio"] { accent-color: var(--red); width: 18px; height: 18px; }
.payment-options label.active { border-color: var(--red); background: rgba(201,34,34,0.04); }
.payment-options .name { font-weight: 600; flex: 1; }
.payment-options .detail { font-size: 12px; color: var(--brown-50); }
.payment-options .pill {
  background: var(--saffron); color: var(--brown);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: 999px;
}

.checkout-summary {
  position: sticky; top: 160px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}
.checkout-summary h3 {
  font-family: var(--display); font-size: 20px; font-weight: 500;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.summary-item {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 14px;
  padding: 12px 0;
  align-items: center;
  font-size: 14px;
}
.summary-item .si-img {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--cream-deep); position: relative;
}
.summary-item .si-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-item .si-img .qty-bubble {
  position: absolute; top: -6px; right: -6px;
  background: var(--brown); color: var(--cream);
  font-size: 10px; font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.summary-item h4 { font-family: var(--body); font-weight: 600; font-size: 13.5px; line-height: 1.3; }
.summary-item .variant { font-size: 11px; color: var(--brown-50); margin-top: 2px; }
.summary-item .li-p { font-weight: 600; }

.order-success {
  text-align: center; padding: 80px 24px;
}
.order-success .tick {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  background: var(--success); color: var(--cream);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ── reveal on scroll ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* skip link a11y */
.skip-link {
  position: absolute; left: -9999px;
}
.skip-link:focus {
  left: 16px; top: 16px;
  z-index: 100;
  background: var(--brown); color: var(--cream);
  padding: 10px 16px; border-radius: var(--radius-sm);
}

/* ── shared icons sizing ─────────────────────────────────── */
.i-12 { width: 12px; height: 12px; }
.i-14 { width: 14px; height: 14px; }
.i-16 { width: 16px; height: 16px; }
.i-18 { width: 18px; height: 18px; }
.i-22 { width: 22px; height: 22px; }
.i-26 { width: 26px; height: 26px; }
