/* ============================================
   TAMBAR SHINE — Traditional Premium Homepage
   ============================================ */

:root {
  --maroon: #6b1212;
  --maroon-deep: #4a0c0c;
  --maroon-bright: #8b1a1a;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-pale: #f5e6b8;
  --saffron: #d4780a;
  --cream: #faf6ee;
  --ink: #1a1210;
  --ink-soft: #3d2e28;
  --muted: #6b574c;
  --white: #ffffff;

  --font-display: "Cinzel", serif;
  --font-body: "Outfit", sans-serif;
  --font-hindi: "Noto Sans Devanagari", sans-serif;

  --nav-h: 76px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease);
}

.hindi {
  font-family: var(--font-hindi);
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 0.7rem 1.6rem;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm-ecom {
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  flex: 1;
}

.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
  box-shadow: 0 4px 20px rgba(107, 18, 18, 0.3);
}

.btn-maroon:hover {
  background: var(--maroon-bright);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 18, 18, 0.4);
}

.btn-outline-maroon {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}

.btn-outline-maroon:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-deep);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: none;
}

.btn-gold:hover {
  color: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
}

.btn-gold:hover::after {
  animation: shimmer-sweep 0.7s var(--ease);
}

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

.btn-outline-gold:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-lg-cta {
  padding: 0.9rem 2.4rem;
  font-size: 1.05rem;
}

@keyframes shimmer-sweep {
  to {
    transform: translateX(120%);
  }
}

/* ---------- TOP BAR + CART ---------- */
.top-bar {
  background: var(--maroon-deep);
  color: var(--gold-pale);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.nav-actions {
  margin-left: 0.5rem;
}

.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.55);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s;
}

.cart-btn:hover {
  background: rgba(201, 162, 39, 0.15);
  color: var(--white);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-drawer {
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.cart-drawer .offcanvas-header {
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  background: var(--maroon-deep);
  color: var(--white);
}

.cart-drawer .offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0;
}

.cart-drawer .btn-close {
  filter: invert(1);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 2.5rem 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f7edd8;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.cart-line h4 {
  font-size: 0.92rem;
  margin: 0 0 0.2rem;
  color: var(--maroon);
  font-family: var(--font-display);
}

.cart-line .line-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.qty-controls button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--maroon);
  background: transparent;
  color: var(--maroon);
  border-radius: 3px;
  line-height: 1;
  cursor: pointer;
}

.qty-controls button:hover {
  background: var(--maroon);
  color: var(--white);
}

.line-total {
  font-weight: 600;
  color: var(--maroon);
  font-size: 0.95rem;
}

.cart-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  padding-top: 1rem;
  margin-top: 1rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.cart-total-row strong {
  color: var(--maroon);
  font-family: var(--font-display);
}

.cart-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.toast-wrap {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--maroon-deep);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  border: 1px solid var(--gold);
  z-index: 1080;
  font-size: 0.9rem;
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.toast-wrap.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding: 1.25rem 0;
}

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

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--maroon);
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.trust-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- NAV ---------- */
.site-nav {
  background: linear-gradient(180deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  padding: 0.6rem 0;
  min-height: var(--nav-h);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(26, 18, 16, 0.35);
  transition: box-shadow 0.3s var(--ease);
}

.site-nav.scrolled {
  box-shadow: 0 8px 32px rgba(26, 18, 16, 0.5);
}

.nav-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  letter-spacing: 0.02em;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active {
  color: var(--gold-light);
}

.navbar-toggler {
  border: 1px solid var(--gold);
  padding: 0.45rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(201, 162, 39, 0.4);
}

.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 1px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--maroon-deep);
    margin-top: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 6px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(145deg, #2a0e0e 0%, var(--maroon-deep) 40%, #5c1810 70%, #3d1208 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  left: 10%;
  bottom: -20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 120, 10, 0.25) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 0 0 0.6rem;
  color: var(--white);
}

.shine-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    100deg,
    #fff 0%,
    #fff 40%,
    var(--gold-light) 50%,
    #fff 60%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shine 4s ease-in-out infinite;
}

@keyframes text-shine {
  0%,
  100% {
    background-position: 100% center;
  }
  50% {
    background-position: 0% center;
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36ch;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Image + back animation share one centered stack */
.hero-visual {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin-inline: auto;
  animation: float-y 6s ease-in-out infinite;
}

.hero-mandala {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 108%;
  height: 108%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 22%, rgba(201, 162, 39, 0.1) 23%, transparent 24%),
    radial-gradient(circle at center, transparent 36%, rgba(201, 162, 39, 0.08) 37%, transparent 38%),
    radial-gradient(circle at center, transparent 50%, rgba(201, 162, 39, 0.07) 51%, transparent 52%),
    radial-gradient(circle at center, transparent 64%, rgba(201, 162, 39, 0.06) 65%, transparent 66%),
    repeating-conic-gradient(from 0deg, rgba(201, 162, 39, 0.055) 0deg 6deg, transparent 6deg 12deg);
  animation: mandala-spin 80s linear infinite;
}

@keyframes mandala-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-ring {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 92%;
  height: 92%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow:
    0 0 0 10px rgba(201, 162, 39, 0.05),
    inset 0 0 50px rgba(201, 162, 39, 0.07);
  animation: ring-pulse 5s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
    opacity: 1;
  }
}

.hero-product {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

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

.hero-ornament {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--gold) 0,
      var(--gold) 8px,
      transparent 8px,
      transparent 16px,
      var(--gold-light) 16px,
      var(--gold-light) 20px,
      transparent 20px,
      transparent 28px
    );
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

/* ---------- Sections common ---------- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 3rem;
}

/* ---------- ABOUT ---------- */
.about {
  background: linear-gradient(180deg, #fff9f0 0%, var(--cream) 55%, #fff 100%);
  overflow: hidden;
}

.about-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='18' fill='none' stroke='%236b1212' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='8' fill='none' stroke='%23c9a227' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px;
}

.about-brand {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 39, 0.12) 0%, transparent 65%),
    linear-gradient(160deg, var(--maroon-deep), var(--maroon));
  box-shadow: 0 16px 40px rgba(74, 12, 12, 0.18);
}

.about-logo {
  width: min(100%, 320px);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.about-brand-tagline {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.about-brand-hindi {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.about-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
}

.about-pills span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  position: relative;
  padding-left: 0.9rem;
}

.about-pills span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
}

/* ---------- PRODUCTS ---------- */
.products {
  background:
    linear-gradient(180deg, #fff9f0 0%, var(--cream) 100%);
}

.products-grid {
  align-items: stretch;
}

.products-grid > [class*="col-"] {
  display: flex;
}

.product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74, 12, 12, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  opacity: 1;
  visibility: visible;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(74, 12, 12, 0.12);
}

.product-body h3 a {
  color: inherit;
}

.product-body h3 a:hover {
  color: var(--saffron);
}

.product-media {
  position: relative;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: none;
  background:
    radial-gradient(ellipse at 50% 40%, #fffef9 0%, #f7edd8 70%, #efe0c4 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  text-decoration: none;
  color: inherit;
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--maroon);
  color: var(--gold-pale);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
}

.product-media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
  filter: drop-shadow(0 8px 16px rgba(74, 12, 12, 0.18));
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  padding: 1.1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.25rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 0.1rem;
  letter-spacing: 0.04em;
}

.product-hindi {
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.product-weight {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  flex: 1;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.price-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.35rem;
}

.price-now {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon);
  margin-right: 0.4rem;
}

.price-mrp {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.stock {
  font-size: 0.75rem;
  font-weight: 600;
}

.stock.in-stock {
  color: #2d6a3e;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.product-actions .btn {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.pdp {
  padding: 2rem 0 4rem;
  background: linear-gradient(180deg, #fff9f0 0%, var(--cream) 100%);
  min-height: 70vh;
}

.pdp-breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.pdp-breadcrumb a {
  color: var(--maroon);
}

.pdp-breadcrumb a:hover {
  color: var(--saffron);
}

.pdp-gallery {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 40%, #fffef9 0%, #f7edd8 70%, #efe0c4 100%);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 12px 36px rgba(74, 12, 12, 0.08);
}

.pdp-gallery img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(74, 12, 12, 0.2));
}

.pdp-path {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.pdp-path a {
  color: var(--maroon);
}

.pdp-metals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 1rem;
}

.pdp-metals span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--maroon);
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
}

.pdp-tax {
  font-size: 0.82rem;
  color: var(--muted);
  margin: -0.5rem 0 1rem;
}

.pdp-size {
  margin-bottom: 1.25rem;
}

.pdp-size label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--maroon);
  margin-bottom: 0.55rem;
}

.pdp-size .req {
  color: #b00020;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.size-opt {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 96px;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.size-opt span {
  font-size: 0.78rem;
  color: var(--saffron);
  font-weight: 700;
  margin-top: 0.15rem;
}

.size-opt:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.size-opt.is-active {
  border-color: var(--maroon);
  background: rgba(107, 18, 18, 0.06);
  box-shadow: inset 0 0 0 1px var(--maroon);
}

.size-selected {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.pdp-tabs {
  margin-top: 2.5rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.pdp-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  background: var(--cream);
}

.pdp-tab {
  border: none;
  background: transparent;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.pdp-tab.is-active {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
  background: #fff;
}

.pdp-tab-panel {
  padding: 1.5rem 1.35rem 1.75rem;
}

.pdp-rich h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.1rem;
  margin: 1.35rem 0 0.65rem;
  letter-spacing: 0.03em;
}

.pdp-rich p {
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

.pdp-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.pdp-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.pdp-steps span {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-pale);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pdp-specs-block {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 6px;
}

.pdp-specs-block p {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.pdp-table {
  width: 100%;
  border-collapse: collapse;
}

.pdp-table th,
.pdp-table td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  font-size: 0.95rem;
}

.pdp-table th {
  width: 40%;
  color: var(--maroon);
  font-weight: 600;
}

.pdp-table td {
  color: var(--ink-soft);
}

.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  color: var(--maroon);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.pdp-weight {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pdp-price {
  margin: 0.5rem 0 1.25rem;
}

.pdp-desc {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 1.25rem;
}

.pdp-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pdp-highlights li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pdp-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.pdp-qty {
  margin-bottom: 1.25rem;
}

.pdp-qty label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--maroon);
  margin-bottom: 0.45rem;
}

.pdp-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pdp-qty-controls input {
  width: 52px;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 3px;
  padding: 0.35rem;
  font-weight: 600;
  color: var(--maroon);
  background: #fff;
}

.pdp-qty-controls input:focus {
  outline: none;
  border-color: var(--gold);
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pdp-actions .btn {
  min-width: 150px;
}

.pdp-ship {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.pdp-related {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.pdp-related .section-title {
  margin-bottom: 1.25rem;
}

.related-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  padding: 0.85rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(74, 12, 12, 0.1);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: radial-gradient(ellipse at 50% 40%, #fffef9 0%, #f7edd8 100%);
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.related-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--maroon);
  margin: 0 0 0.25rem;
}

.related-card span {
  font-weight: 700;
  color: var(--saffron);
  font-size: 0.95rem;
}

/* Order modal */
.order-modal {
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--cream);
}

.order-modal .modal-header {
  background: var(--maroon-deep);
  color: var(--white);
  border-bottom: 1px solid var(--gold);
}

.order-modal .modal-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.order-modal .btn-close {
  filter: invert(1);
}

.order-summary {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.order-modal .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--maroon);
}

.order-modal .form-control,
.order-modal .form-select {
  border-color: rgba(201, 162, 39, 0.45);
  background: #fff;
}

.order-modal .form-control:focus,
.order-modal .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.2);
}

/* ---------- METALS ---------- */
.metals {
  background: linear-gradient(160deg, var(--maroon-deep) 0%, #5a1510 50%, var(--maroon) 100%);
  color: var(--white);
  overflow: hidden;
}

.metals .section-title {
  color: var(--white);
}

.metals .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.metals .section-label {
  color: var(--gold-light);
}

.metals-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 22 L52 22 L38 32 L43 50 L30 40 L17 50 L22 32 L8 22 L25 22 Z' fill='%23c9a227' fill-opacity='0.5'/%3E%3C/svg%3E");
  background-size: 60px;
  pointer-events: none;
}

.metals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1rem;
  max-width: 820px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .metals-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}

.metal-item {
  text-align: center;
  animation: fade-rise 0.7s var(--ease) both;
  animation-delay: calc(var(--i) * 0.08s);
}

.metal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.metal-icon svg {
  width: 36px;
  height: 36px;
}

.metal-item:hover .metal-icon {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.55), 0 8px 20px rgba(0, 0, 0, 0.25);
}

.metal-item span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-pale);
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- HOW TO USE ---------- */
.how-to {
  background: var(--cream);
}

.step {
  position: relative;
  padding: 1.5rem 0 0.5rem;
  border-top: 2px solid var(--gold);
  height: 100%;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(107, 18, 18, 0.12);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- FEATURES ---------- */
.features {
  background: linear-gradient(180deg, #fff 0%, #fff5e8 100%);
}

.features-lead {
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

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

.feature-mark {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.feature-list strong {
  display: block;
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.features-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .features-visual {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .features-visual {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fv-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  box-shadow: 0 12px 28px rgba(74, 12, 12, 0.12);
  background:
    radial-gradient(ellipse at 50% 40%, #fffef9 0%, #f7edd8 70%, #efe0c4 100%);
  padding: 0.65rem;
}

.fv-1 {
  animation: float-y 7s ease-in-out infinite;
}

.fv-2 {
  animation: float-y 7s ease-in-out infinite reverse;
}

.fv-3 {
  animation: float-y 6.5s ease-in-out infinite;
}

.fv-4 {
  animation: float-y 6.8s ease-in-out infinite reverse;
}

.fv-5 {
  animation: float-y 7.2s ease-in-out infinite;
}

.fv-6 {
  animation: float-y 6.6s ease-in-out infinite reverse;
}

/* ---------- CAUTION ---------- */
.caution {
  padding: 3.5rem 0;
  background: var(--cream);
}

.caution-panel {
  background: linear-gradient(135deg, #fff8ec, #f5e8d0);
  border: 2px solid var(--gold);
  border-left: 6px solid var(--maroon);
  padding: 2rem 2.25rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 28px rgba(74, 12, 12, 0.08);
}

.caution-panel h2 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 0.15rem;
  letter-spacing: 0.06em;
}

.caution-hindi {
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 1rem;
}

.caution-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.caution-panel li {
  margin-bottom: 0.4rem;
}

.caution-panel li:last-child {
  margin-bottom: 0;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(120deg, var(--maroon-deep), #7a1c10 45%, #9a3a0a);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 0;
  border-top: 3px solid var(--gold);
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 0.85rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.footer-hindi {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.footer-contact strong {
  color: var(--gold-pale);
  font-weight: 600;
}

.small-note {
  opacity: 0.65;
  font-size: 0.82rem !important;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-badges {
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-lead {
    max-width: none;
  }

  .hero-visual {
    width: min(100%, 380px);
  }

  .metal-icon {
    width: 64px;
    height: 64px;
  }

  .features-visual {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .caution-panel {
    padding: 1.5rem 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
