/* Aadhi Kandhavel Crackers — Main Stylesheet */

:root {
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Plus Jakarta Sans", var(--font-body);
  --bg-deep: #12000e;
  --bg-mid: #2a0520;
  --bg-card: rgba(46, 8, 36, 0.72);
  --bg-card-hover: rgba(58, 12, 44, 0.88);
  --gold: #d4af37;
  --gold-soft: #e8c96a;
  --gold-dim: rgba(212, 175, 55, 0.4);
  --magenta: #a1005e;
  --magenta-soft: #c41a7a;
  --cream: #f5e6c8;
  --cream-dim: rgba(245, 230, 200, 0.75);
  --spark: rgba(255, 200, 120, 0.85);
  --border: rgba(212, 175, 55, 0.22);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --nav-h: 4.5rem;
  --success: #2d8a5e;
  --success-bg: rgba(45, 138, 94, 0.15);
  --error: #c94a4a;
  --error-bg: rgba(201, 74, 74, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: var(--bg-deep);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(72rem, 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 10vw, 6.5rem);
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4.5vw, 2.6rem);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--cream-dim);
  max-width: 38rem;
  line-height: 1.65;
}

.gold-rule {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-block: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8922e 100%);
  color: #1a0014;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--gold-dim);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

/* ── Sparkle background ── */
.sparkles {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, var(--spark), transparent),
    radial-gradient(1px 1px at 22% 38%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 68% 18%, var(--gold-soft), transparent),
    radial-gradient(1px 1px at 88% 52%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 42% 72%, var(--spark), transparent),
    radial-gradient(1.5px 1.5px at 75% 82%, var(--gold-soft), transparent);
  animation: twinkle 5s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: rgba(18, 0, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.nav-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--cream-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-links a.is-active {
  color: var(--gold-soft);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Banner slider (homepage) ── */
.banner-slider {
  position: relative;
  z-index: 1;
  min-height: clamp(22rem, 72vh, 36rem);
  margin-top: calc(var(--nav-h) + var(--safe-top));
  overflow: hidden;
  background: var(--bg-mid);
}

.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  pointer-events: none;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.banner-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 0, 14, 0.88) 0%, rgba(18, 0, 14, 0.45) 55%, rgba(18, 0, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 0, 14, 0.15) 0%, rgba(18, 0, 14, 0.75) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(22rem, 72vh, 36rem);
  padding-block: clamp(3rem, 8vw, 5rem);
  max-width: 40rem;
}

.banner-kicker {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.banner-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--cream-dim);
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(18, 0, 14, 0.45);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.banner-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.banner-dot.is-active,
.banner-dot:hover {
  background: var(--gold-soft);
  transform: scale(1.15);
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(18, 0, 14, 0.55);
  color: var(--gold-soft);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.banner-arrow:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.banner-arrow--prev {
  left: max(1rem, var(--safe-left));
}

.banner-arrow--next {
  right: max(1rem, var(--safe-right));
}

/* ── Page hero (inner pages) ── */
.page-hero {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--nav-h) + var(--safe-top));
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(74, 10, 58, 0.65) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(161, 0, 94, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 70%);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-lead {
  margin-inline: auto;
}

/* ── Hero (legacy homepage section) ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--safe-top) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 20%, rgba(74, 10, 58, 0.65) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(161, 0, 94, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 70%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  background: rgba(212, 175, 55, 0.06);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta-soft);
  box-shadow: 0 0 8px var(--magenta-soft);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--cream-dim);
  max-width: 30rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-logo-ring {
  position: relative;
  width: min(88vw, 22rem);
  aspect-ratio: 1;
}

.hero-logo-ring::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  animation: spin-slow 24s linear infinite;
}

.hero-logo-ring::after {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 65%);
  animation: pulse-glow 3.5s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
}

.hero-float {
  position: absolute;
  padding: 0.65rem 1rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.hero-float--1 {
  top: 8%;
  right: -4%;
  animation-delay: 0s;
}

.hero-float--2 {
  bottom: 12%;
  left: -6%;
  animation-delay: 1.5s;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Stats strip ── */
.stats {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--border);
  background: rgba(26, 4, 20, 0.75);
  backdrop-filter: blur(8px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 2.5rem;
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}

/* ── About ── */
.about {
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(42, 5, 32, 0.4) 50%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  backdrop-filter: blur(8px);
}

.about-card p + p {
  margin-top: 1rem;
  color: var(--cream-dim);
}

.about-features {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  font-size: 1.1rem;
}

.about-feature h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 1rem;
  color: var(--cream-dim);
}

/* ── Categories ── */
.categories {
  z-index: 1;
}

.categories-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.categories-header .section-lead {
  margin-inline: auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.cat-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.35);
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.cat-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.cat-card p {
  font-size: 0.98rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ── Products page ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
  gap: 1.25rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  background: var(--bg-card-hover);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: rgba(18, 0, 14, 0.5);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-save-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c41a7a, #a1005e);
  border: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.product-card-category {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1.3;
}

.product-card-unit {
  font-size: 0.95rem;
  color: var(--cream-dim);
}

.product-card-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.product-card-mrp {
  font-size: 0.95rem;
  color: rgba(245, 230, 200, 0.45);
  text-decoration: line-through;
}

.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.product-card-save {
  font-size: 0.85rem;
  color: var(--magenta-soft);
}

/* ── Why us ── */
.why {
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(74, 10, 58, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, transparent, rgba(18, 0, 14, 0.5));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.98rem;
  color: var(--cream-dim);
}

/* ── Safety ── */
.safety {
  z-index: 1;
}

.safety-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(161, 0, 94, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.safety-box::after {
  content: "🛡️";
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  font-size: 8rem;
  opacity: 0.06;
  pointer-events: none;
}

.safety-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
}

.safety-list li::before {
  content: "✦";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.safety-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.safety-emblem img {
  width: min(12rem, 60vw);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.safety-emblem blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  font-style: normal;
}

.safety-emblem cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream-dim);
}

/* ── Occasions ── */
.occasions {
  z-index: 1;
  text-align: center;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.occasion-tag {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: var(--bg-card);
  transition: all 0.25s;
}

.occasion-tag:hover,
.occasion-tag.is-filter-active {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.08);
}

/* ── Order page ── */
.page-hero--compact {
  padding-bottom: 1rem;
}

.page-hero--compact .page-hero-inner {
  padding-block: clamp(2rem, 5vw, 3rem);
}

.order-section {
  padding-top: 1rem;
}

.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.order-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream-dim);
  font-size: 0.92rem;
}

.order-step.is-active {
  color: var(--gold-soft);
  font-weight: 600;
}

.order-step-num {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.order-step.is-active .order-step-num {
  background: var(--gold);
  color: #1a0014;
  border-color: var(--gold);
}

.order-step-line {
  width: 2rem;
  height: 1px;
  background: var(--border);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
  gap: 1.5rem;
  align-items: start;
}

.order-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.order-search input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(18, 0, 14, 0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23d4af37' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") no-repeat 0.9rem center;
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
}

.order-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.order-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-cat-btn {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--cream-dim);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.order-cat-btn:hover,
.order-cat-btn.is-active {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.1);
}

.order-help-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.order-category-block {
  margin-bottom: 1.75rem;
}

.order-category-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.order-cards {
  display: grid;
  gap: 0.85rem;
}

.order-card {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.order-card.has-qty {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.06);
}

.order-card-media img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.order-card-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 0.15rem;
}

.order-card-unit {
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin-bottom: 0.35rem;
}

.order-card-prices {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.order-card-mrp {
  font-size: 0.88rem;
  color: rgba(245, 230, 200, 0.45);
  text-decoration: line-through;
}

.order-card-price {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.order-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(18, 0, 14, 0.5);
}

.qty-stepper-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: var(--gold-soft);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qty-stepper-btn:hover {
  background: rgba(212, 175, 55, 0.12);
}

.qty-stepper-input {
  width: 2.75rem;
  padding: 0.35rem 0.2rem;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}

.qty-stepper-input::-webkit-outer-spin-button,
.qty-stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-stepper-input:focus {
  outline: none;
  background: rgba(212, 175, 55, 0.08);
}

.qty-stepper-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.35rem 0.2rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.order-card-total {
  text-align: right;
  min-width: 5.5rem;
}

.order-card-total-label {
  display: block;
  font-size: 0.72rem;
  color: var(--cream-dim);
  margin-bottom: 0.1rem;
}

.order-card-total strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--cream);
}

.order-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-h) + var(--safe-top) + 1rem);
}

.order-cart,
.order-checkout {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.order-cart-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.order-cart-meta {
  font-size: 0.92rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.order-summary-grid {
  display: grid;
  gap: 0.65rem;
}

.order-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  background: rgba(18, 0, 14, 0.35);
}

.order-summary-item--highlight {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

.order-summary-label {
  font-size: 0.88rem;
  color: var(--cream-dim);
}

.order-summary-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.order-summary-value.is-save {
  color: #7dd3a8;
}

.order-min-notice {
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(201, 74, 74, 0.12);
  border: 1px solid rgba(201, 74, 74, 0.25);
  color: #f0b4b4;
  font-size: 0.88rem;
  line-height: 1.45;
}

.order-min-notice.is-met {
  background: var(--success-bg);
  border-color: rgba(45, 138, 94, 0.35);
  color: #9ee0bc;
}

.order-scroll-btn {
  width: 100%;
  margin-top: 1rem;
}

.order-submit-btn {
  width: 100%;
  margin-top: 1.25rem;
  padding-block: 1rem;
  font-size: 1rem;
}

.order-submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.order-submit-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--cream-dim);
  text-align: center;
  line-height: 1.45;
}

.order-empty-search.is-hidden {
  display: none;
}

.order-empty-search {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--cream-dim);
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: 14px;
}

.order-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, var(--safe-left)) max(0.85rem, var(--safe-bottom)) max(1rem, var(--safe-right));
  background: rgba(18, 0, 14, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.order-mobile-bar.is-visible {
  transform: translateY(0);
}

.order-mobile-bar-info {
  display: grid;
  gap: 0.1rem;
}

.order-mobile-bar-label {
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.order-mobile-bar strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Legacy table styles kept for compatibility */
.order-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

/* ── Estimate / order form ── */
.estimate-container {
  width: min(78rem, 100% - 1.5rem);
  max-width: 100%;
}

.estimate-notice {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.5;
}

.estimate-sticky-bar {
  position: sticky;
  top: calc(var(--nav-h) + var(--safe-top));
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(18, 0, 14, 0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.estimate-sticky-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 6.5rem;
}

.estimate-sticky-item span {
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.estimate-sticky-item strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.estimate-sticky-item strong.is-save,
.estimate-total-pill .is-save {
  color: #7dd3a8;
}

.estimate-sticky-item--net strong {
  color: var(--cream);
  font-size: 1.15rem;
}

.estimate-cart-btn {
  margin-left: auto;
  white-space: nowrap;
}

.estimate-table-wrap {
  margin-bottom: 1rem;
  width: 100%;
  overflow-x: visible;
}

.estimate-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  font-size: 0.95rem;
}

.estimate-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #1e0a18;
  text-align: center;
}

.estimate-table .col-image { width: 6rem; }
.estimate-table .col-name { width: auto; }
.estimate-table .col-mrp { width: 8rem; }
.estimate-table .col-price { width: 8rem; }
.estimate-table .col-qty { width: 9rem; }
.estimate-table .col-total { width: 8rem; }

.estimate-table .col-name {
  text-align: left;
}

.estimate-table tbody td {
  text-align: center;
  vertical-align: middle;
}

.estimate-table tbody td.col-name {
  text-align: left;
  word-break: break-word;
}

.estimate-table .order-category-row td {
  text-align: center;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(161, 0, 94, 0.35), rgba(212, 175, 55, 0.2));
  color: var(--gold-soft) !important;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.estimate-product-row.has-qty {
  background: rgba(212, 175, 55, 0.08);
}

.estimate-product-row.is-focus-flash {
  position: relative;
  z-index: 2;
  animation: product-focus-flash 2s ease-in-out 1;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.85), 0 0 28px rgba(196, 26, 122, 0.55);
  background: rgba(212, 175, 55, 0.22) !important;
}

@keyframes product-focus-flash {
  0%,
  100% {
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
  15%,
  45%,
  75% {
    background: rgba(232, 201, 106, 0.35);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.95), 0 0 34px rgba(196, 26, 122, 0.7);
  }
  30%,
  60%,
  90% {
    background: rgba(196, 26, 122, 0.28);
    box-shadow: 0 0 0 3px rgba(232, 201, 106, 0.9), 0 0 28px rgba(212, 175, 55, 0.55);
  }
}

.estimate-thumb-wrap {
  position: relative;
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  margin-inline: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.estimate-thumb-wrap:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 8px;
}

.estimate-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
  pointer-events: none;
}

.estimate-off-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.45rem;
  z-index: 1;
  padding: 0.18rem 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c41a7a, #a1005e);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* Image lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 0, 6, 0.88);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(36rem, 100%);
  max-height: calc(100dvh - 2.5rem);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #1a0614;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
  overflow: auto;
}

.image-lightbox-dialog img {
  width: 100%;
  max-height: min(70dvh, 32rem);
  object-fit: contain;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
}

.image-lightbox-title {
  margin-top: 0.85rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.image-lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(18, 0, 14, 0.9);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.product-card-image.js-image-preview {
  cursor: zoom-in;
}

.estimate-product-name {
  display: block;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
}

.estimate-product-unit {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.estimate-table .col-mrp {
  color: rgba(245, 230, 200, 0.55);
  text-decoration: line-through;
}

.estimate-table .col-price {
  color: var(--gold-soft);
  font-weight: 700;
}

.estimate-price-was {
  display: none;
}

.estimate-table .col-total strong {
  color: var(--cream);
  font-family: var(--font-heading);
}

.estimate-totals-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.25rem 0 2rem;
}

.estimate-total-pill {
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  font-size: 0.95rem;
  color: var(--cream-dim);
}

.estimate-total-pill strong {
  color: var(--gold-soft);
  margin-left: 0.25rem;
}

.estimate-total-pill--net {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
}

.estimate-total-pill--net strong {
  color: var(--cream);
  font-size: 1.05rem;
}

.estimate-details {
  max-width: 48rem;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.estimate-details-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
  text-align: center;
}

.estimate-form-grid {
  margin-bottom: 1.5rem;
}

.estimate-terms {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(18, 0, 14, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.estimate-terms h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 0.65rem;
}

.estimate-terms ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.estimate-terms li + li {
  margin-top: 0.35rem;
}

.estimate-submit-wrap {
  text-align: center;
}

.estimate-submit-wrap .order-min-notice {
  margin-bottom: 1rem;
  text-align: left;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #1a0614;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.cart-drawer-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-drawer-empty {
  color: var(--cream-dim);
  text-align: center;
  padding: 2rem 1rem;
}

.cart-drawer-item {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-size: 0.92rem;
}

.cart-drawer-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.cart-drawer-item-name {
  color: var(--cream);
  font-weight: 500;
  line-height: 1.35;
}

.cart-drawer-item-total {
  color: var(--gold-soft);
  font-weight: 700;
  white-space: nowrap;
}

.cart-drawer-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-drawer-stepper {
  flex-shrink: 0;
}

.cart-drawer-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(220, 53, 69, 0.55);
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.12);
  color: #ff6b7a;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cart-drawer-delete:hover {
  background: rgba(220, 53, 69, 0.24);
  border-color: rgba(255, 107, 122, 0.85);
  color: #ff8a95;
}

.cart-drawer-footer {
  padding: 1rem 1.15rem max(1rem, var(--safe-bottom));
  border-top: 1px solid var(--border);
}

.cart-drawer-net {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  color: var(--cream-dim);
}

.cart-drawer-net strong {
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.cart-drawer-footer .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .estimate-container {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .page-order .container.estimate-container {
    width: 100%;
    max-width: 100%;
    padding-inline: 0.75rem;
    box-sizing: border-box;
  }

  .estimate-sticky-bar {
    position: static;
    gap: 0.5rem;
  }

  .estimate-table-wrap {
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .estimate-table {
    min-width: 0 !important;
    width: 100%;
    table-layout: auto;
  }

  .estimate-table.order-table {
    min-width: 0 !important;
  }

  .estimate-table thead {
    display: none;
  }

  .estimate-table,
  .estimate-table tbody {
    display: block;
    width: 100%;
  }

  .estimate-table .order-category-row {
    display: block;
    width: 100%;
    margin: 0.75rem 0 0.5rem;
  }

  .estimate-table .order-category-row td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  /* Mobile card:
     name full width
     image left | prices + qty center | total right */
  .estimate-product-row {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    gap: 0.35rem 0.65rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 0.65rem;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
  }

  .estimate-product-row td {
    display: block;
    width: auto;
    padding: 0;
    border: none;
    text-align: left;
  }

  .estimate-product-row td::before {
    display: none !important;
    content: none !important;
  }

  .estimate-product-row .col-name {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    min-width: 0;
    padding: 0 0 0.45rem !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12) !important;
  }

  .estimate-product-row .col-image {
    grid-column: 1;
    grid-row: 2 / 4;
    display: block !important;
    align-self: center;
  }

  .estimate-product-row .col-price {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
    font-size: 0.92rem;
    color: var(--gold-soft);
    font-weight: 700;
  }

  .estimate-product-row .col-qty {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
  }

  .estimate-product-row .col-total {
    grid-column: 3;
    grid-row: 2 / 4;
    justify-self: end;
    align-self: center;
    text-align: right;
  }

  .estimate-price-was {
    display: inline;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(245, 230, 200, 0.45);
    text-decoration: line-through;
  }

  /* Hide MRP column on mobile; offer % shows on image badge */
  .estimate-product-row .col-mrp {
    display: none !important;
  }

  .estimate-thumb-wrap {
    width: 3.25rem;
    height: 3.25rem;
    margin-inline: 0;
  }

  .estimate-off-badge {
    top: -0.3rem;
    right: -0.35rem;
    font-size: 0.52rem;
    padding: 0.15rem 0.3rem;
  }

  .estimate-product-name {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .estimate-product-unit {
    font-size: 0.75rem;
    margin-top: 0.1rem;
  }

  .estimate-product-row .col-total strong {
    font-size: 0.95rem;
    color: var(--gold-soft);
  }

  .qty-stepper-btn {
    width: 2rem;
    height: 2rem;
  }

  .qty-stepper-input {
    width: 2.25rem;
    font-size: 0.92rem;
  }

  .estimate-sticky-item {
    min-width: calc(50% - 0.5rem);
  }

  .estimate-cart-btn {
    width: 100%;
    margin-left: 0;
  }

  .estimate-totals-bar {
    gap: 0.5rem;
  }

  .estimate-total-pill {
    flex: 1 1 100%;
    text-align: center;
    border-radius: 12px;
  }
}

.order-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: 1rem;
}

.order-table thead th {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(18, 0, 14, 0.35);
  white-space: nowrap;
}

.order-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--cream-dim);
  vertical-align: middle;
}

.order-table tbody tr:last-child td {
  border-bottom: none;
}

.order-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.order-category-row td {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft) !important;
  background: rgba(212, 175, 55, 0.08);
  text-align: center;
}

.order-table .product-name {
  color: var(--cream);
  font-weight: 500;
}

.order-table .strike {
  text-decoration: line-through;
  opacity: 0.55;
}

.order-table .price-offer {
  color: var(--magenta-soft);
}

.order-table .price-net {
  color: var(--gold-soft);
  font-weight: 600;
}

.order-table input[type="number"] {
  width: 4rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(18, 0, 14, 0.6);
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  text-align: center;
}

.order-table input[type="number"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.order-summary {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.order-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.order-summary-item {
  text-align: center;
  padding: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  background: rgba(18, 0, 14, 0.35);
}

.order-summary-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.order-summary-value {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--gold-soft);
}

.order-summary-value.is-save {
  color: var(--magenta-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(18, 0, 14, 0.55);
  color: var(--cream);
  font-family: inherit;
  font-size: 1.05rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 230, 200, 0.35);
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  font-size: 1.25rem;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 1.05rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--gold-soft);
}

/* ── Alerts (flash messages) ── */
.alert-success,
.alert-error {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  border: 1px solid transparent;
}

.alert-success {
  background: var(--success-bg);
  border-color: rgba(45, 138, 94, 0.35);
  color: #8fd4b0;
}

.alert-error {
  background: var(--error-bg);
  border-color: rgba(201, 74, 74, 0.35);
  color: #f0a0a0;
}

/* ── CTA ── */
.cta {
  z-index: 1;
  padding-bottom: clamp(5rem, 12vw, 7rem);
}

.cta-box {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(161, 0, 94, 0.25) 0%, transparent 55%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.cta-box .section-title {
  margin-bottom: 0.75rem;
}

.cta-box .section-lead {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(10, 0, 8, 0.9);
  padding-top: 3rem;
  padding-bottom: max(1.5rem, var(--safe-bottom));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: 4.5rem;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  margin-bottom: 1rem;
}

.footer-brand h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 22rem;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-col a,
.footer-col li {
  font-size: 1rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(212, 175, 55, 0.45);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Order form is very tall — never hide it behind reveal opacity on any device */
#orderForm,
.page-order #orderForm.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .safety-box,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-ring {
    width: min(70vw, 16rem);
    margin-inline: auto;
  }

  .hero-float {
    display: none;
  }

  .safety-emblem {
    order: -1;
  }

  .banner-content {
    max-width: none;
  }

  .banner-arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + var(--safe-top));
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(18, 0, 14, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
  }

  .nav-links a.is-active::after {
    display: none;
  }

  .nav-links a.is-active {
    background: rgba(212, 175, 55, 0.08);
    border-left: 2px solid var(--gold);
  }

  .cat-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-actions,
  .banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .banner-slider {
    min-height: clamp(20rem, 65vh, 28rem);
  }

  .banner-content {
    min-height: clamp(20rem, 65vh, 28rem);
    padding-block: 2.5rem 4rem;
  }

  .banner-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .banner-dots {
    bottom: 1rem;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-sidebar {
    position: static;
  }

  .order-card {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .order-card-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
  }

  .order-mobile-bar {
    display: flex;
  }

  .page-order .footer {
    padding-bottom: calc(5rem + var(--safe-bottom));
  }

  .order-table {
    min-width: 36rem;
    font-size: 0.95rem;
  }

  .estimate-table.order-table {
    min-width: 0 !important;
  }
}

/* ── Thank you / order receipt ── */
.thankyou-receipt {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  padding: 2rem;
}

.thankyou-receipt-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px dashed var(--gold-dim);
}

.thankyou-receipt-head img {
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
}

.thankyou-receipt-head h2 {
  color: var(--gold-soft);
  font-size: 1.35rem;
  margin: 0;
}

.thankyou-receipt-head p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.thankyou-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.9rem 1.25rem;
  margin-bottom: 1.5rem;
}

.thankyou-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.thankyou-meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

.thankyou-meta strong {
  color: var(--gold-soft);
  font-size: 0.98rem;
  word-break: break-word;
}

.thankyou-meta-wide {
  grid-column: 1 / -1;
}

.thankyou-table {
  width: 100%;
  min-width: 0;
}

.thankyou-table th,
.thankyou-table td {
  padding: 0.65rem 0.75rem;
}

.thankyou-total-row td {
  border-top: 1px solid var(--gold-dim);
  font-size: 1.05rem;
  color: var(--gold-soft);
}

.thankyou-total-row--muted td {
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.7;
  border-top: 1px dashed var(--gold-dim);
}

.thankyou-note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.6;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ── Print styles (receipt only) ── */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
  }

  .nav,
  .footer,
  .sparkles,
  .image-lightbox,
  .no-print {
    display: none !important;
  }

  main {
    padding: 0 !important;
  }

  .section {
    padding: 0 !important;
  }

  .thankyou-receipt {
    border: 1px solid #999;
    border-radius: 0;
    background: #fff;
    color: #000;
    padding: 1.25rem;
  }

  .thankyou-receipt-head h2,
  .thankyou-meta strong,
  .thankyou-total-row td {
    color: #000 !important;
  }

  .thankyou-receipt-head,
  .thankyou-meta span {
    color: #333;
  }

  .thankyou-table th,
  .thankyou-table td {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #bbb !important;
  }

  .thankyou-note {
    color: #333;
    opacity: 1;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sparkles,
  .hero-logo-ring::before,
  .hero-logo-ring::after,
  .hero-float,
  .reveal,
  .banner-slide {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .banner-slide {
    opacity: 0;
    visibility: hidden;
  }

  .banner-slide.is-active {
    opacity: 1;
    visibility: visible;
  }
}
