/* Sri Man Sambrani — TSWORK visual clone (ported from src/index.css + components) */

:root {
  --temple-red: #c8102e;
  --temple-yellow: #ffc72c;
  --maroon-dark: #6b0f1a;
  --gold-warm: #d4af37;
  --sandal-cream: #fdf5e6;
  --text: #141414;
  --muted: #71717a;
  --white: #ffffff;
  --container: 80rem;
  --font: Georgia, Cambria, "Times New Roman", Times, serif;
  --shadow: 0 4px 24px rgba(107, 15, 26, 0.12);
  --radius: 1rem;
  --header-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--sandal-cream);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
::selection { background: var(--temple-red); color: var(--white); }

/* Animations */
@keyframes floatSmoke1 {
  0% { transform: translateY(10px) translateX(0) scale(0.8); opacity: 0; }
  15% { opacity: 0.6; }
  50% { transform: translateY(-50px) translateX(-15px) scale(1.1); opacity: 0.4; }
  100% { transform: translateY(-120px) translateX(-5px) scale(1.4); opacity: 0; }
}
@keyframes floatSmoke2 {
  0% { transform: translateY(10px) scale(0.8); opacity: 0; }
  15% { opacity: 0.7; }
  45% { transform: translateY(-60px) translateX(12px) scale(1.1); opacity: 0.5; }
  100% { transform: translateY(-140px) translateX(20px) scale(1.6); opacity: 0; }
}
@keyframes floatSmoke3 {
  0% { transform: translateY(15px) scale(0.9); opacity: 0; }
  20% { opacity: 0.55; }
  100% { transform: translateY(-160px) translateX(-25px) scale(1.7); opacity: 0; }
}
@keyframes lampGlow {
  0%, 100% { box-shadow: 0 0 15px 3px rgba(255, 199, 44, 0.4); }
  50% { box-shadow: 0 0 30px 8px rgba(255, 199, 44, 0.7); }
}
@keyframes goldShimmerSweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ping {
  75%, 100% { transform: scale(1.6); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.smoke-strand-1 { animation: floatSmoke1 7s infinite ease-out; }
.smoke-strand-2 { animation: floatSmoke2 8.5s infinite ease-in-out 2s; }
.smoke-strand-3 { animation: floatSmoke3 10s infinite ease-out 4.5s; }
.glow-lamp { animation: lampGlow 3s infinite ease-in-out; }
.gold-shimmer-sweep {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  background-size: 200% 100%;
  animation: goldShimmerSweep 4s infinite linear;
}
.animate-fade-in { animation: fadeIn 0.45s ease; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-ping { animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--maroon-dark); }
::-webkit-scrollbar-thumb { background: var(--temple-yellow); border-radius: 4px; }

/* Layout */
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.main-content { flex: 1; }
.section { padding: 5rem 0; }
.section-heading { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-heading .eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--temple-red); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
}
.section-heading .eyebrow::before,
.section-heading .eyebrow::after { content: ""; width: 2.5rem; height: 1px; background: var(--temple-red); }
.section-heading h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--temple-red); margin: 0.75rem 0 0.5rem; font-weight: 800; }
.section-heading p { font-size: 0.875rem; color: var(--muted); margin: 0; }

.grid-2 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3rem; align-items: center; }
  .lg-col-5 { grid-column: span 5; }
  .lg-col-6 { grid-column: span 6; }
  .lg-col-7 { grid-column: span 7; }
  .lg-col-8 { grid-column: span 8; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 0.5rem; font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; transition: 0.25s ease;
}
.btn-primary {
  background: var(--temple-red); color: var(--white); border: 2px solid transparent;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #000; color: var(--temple-yellow); }
.btn-outline {
  background: rgba(255, 255, 255, 0.4); color: var(--temple-red);
  border: 2px solid var(--temple-red);
}
.btn-outline:hover { background: var(--temple-red); color: var(--white); }
.btn-yellow { background: var(--temple-yellow); color: var(--maroon-dark); font-weight: 800; }
.btn-yellow:hover { background: var(--white); color: var(--temple-red); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 2px solid var(--temple-yellow);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.marquee-bar {
  background: var(--temple-red); color: var(--white);
  padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 600;
  border-bottom: 1px solid var(--temple-yellow);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.marquee-text { display: flex; align-items: center; gap: 0.5rem; }
.marquee-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--temple-yellow); display: inline-block;
}
.marquee-links { display: none; gap: 1.5rem; font-size: 0.7rem; }
.marquee-links a:hover { color: var(--temple-yellow); }
@media (min-width: 768px) { .marquee-links { display: flex; } }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  position: relative; width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--temple-yellow); border: 2px solid var(--temple-red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--temple-red); font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.brand-mark .mark-badge {
  position: absolute; bottom: -0.2rem; right: -0.2rem;
  background: var(--temple-red); color: var(--white); font-size: 0.55rem;
  padding: 0.1rem 0.25rem; border-radius: 0.2rem; border: 1px solid var(--temple-yellow);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.brand-title { font-size: 1.15rem; font-weight: 800; color: var(--temple-red); line-height: 1.1; margin: 0; }
.brand-sub { font-size: 0.65rem; color: rgba(20, 20, 20, 0.7); text-transform: uppercase; letter-spacing: 0.12em; margin: 0; }

.main-nav { display: none; gap: 1.25rem; }
.main-nav a {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text); padding-bottom: 0.25rem; border-bottom: 2px solid transparent;
}
.main-nav a.is-active,
.main-nav a:hover { color: var(--temple-red); border-bottom-color: var(--temple-red); }
@media (min-width: 1024px) { .main-nav { display: flex; } }

.header-actions { display: flex; align-items: center; gap: 0.35rem; }
.icon-btn {
  padding: 0.5rem; border-radius: 50%; color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn:hover { color: var(--temple-red); background: #f4f4f5; }
.cart-badge {
  position: absolute; top: -0.15rem; right: -0.15rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--temple-red); color: var(--white); font-size: 0.6rem; font-weight: 800;
  border: 1px solid var(--temple-yellow); display: flex; align-items: center; justify-content: center;
}
.cart-badge:empty, .cart-badge[data-count="0"] { display: none; }
.menu-toggle { display: flex; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.search-form {
  display: flex; align-items: center; background: var(--sandal-cream);
  border: 1px solid var(--temple-red); border-radius: 0.375rem; padding: 0.2rem;
}
.search-form input {
  border: none; background: transparent; padding: 0.35rem 0.5rem;
  font-size: 0.75rem; width: 9rem; outline: none; font-weight: 700;
}
.search-form.is-hidden { display: none; }

.mobile-nav {
  display: none; background: var(--white); border-top: 1px solid rgba(255, 199, 44, 0.3);
  padding: 1rem; box-shadow: var(--shadow);
}
.mobile-nav.is-open { display: block; animation: slideDown 0.25s ease; }
.mobile-nav a {
  display: block; padding: 0.75rem 1rem; border-radius: 0.375rem;
  font-size: 0.875rem; font-weight: 600;
}
.mobile-nav a.is-active {
  background: var(--sandal-cream); color: var(--temple-red);
  border-left: 4px solid var(--temple-red);
}

/* Hero */
.hero {
  position: relative; overflow: hidden; min-height: 85vh;
  display: flex; align-items: center; background: var(--sandal-cream);
  border-bottom: 4px solid var(--temple-yellow);
}
.hero-bg { position: absolute; inset: 0; opacity: 0.15; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--sandal-cream), transparent);
}
.hero-smoke { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.hero-smoke div { position: absolute; border-radius: 999px; filter: blur(24px); }
.hero-smoke .s1 { bottom: 20%; left: 65%; width: 4rem; height: 12rem; background: rgba(255, 199, 44, 0.1); }
.hero-smoke .s2 { bottom: 25%; left: 70%; width: 6rem; height: 16rem; background: rgba(200, 16, 46, 0.05); filter: blur(32px); }
.hero-smoke .s3 { bottom: 18%; left: 58%; width: 3rem; height: 11rem; background: rgba(255, 255, 255, 0.2); }
.hero-bells {
  position: absolute; top: 0; left: 0; right: 0; height: 2.5rem;
  display: flex; justify-content: space-around; opacity: 0.3; z-index: 2;
}
.hero-bell { display: flex; flex-direction: column; align-items: center; }
.hero-bell .line { width: 2px; height: 1.5rem; background: var(--temple-red); }
.hero-bell .dot {
  width: 1rem; height: 1rem; border-radius: 50%; background: rgba(200, 16, 46, 0.8);
  display: flex; align-items: center; justify-content: center;
}
.hero-bell .dot span { width: 4px; height: 4px; border-radius: 50%; background: var(--temple-yellow); }

.hero-inner { position: relative; z-index: 3; padding: 4rem 0; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  background: var(--temple-red); border: 1px solid var(--temple-yellow);
  color: var(--temple-yellow); font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.hero h1 {
  font-size: clamp(1.85rem, 5vw, 3.5rem); color: var(--temple-red);
  line-height: 1.15; margin: 1rem 0; font-weight: 800;
}
.hero h1 .highlight {
  color: var(--text); text-transform: uppercase; position: relative; display: inline-block;
}
.hero h1 .highlight::after {
  content: ""; position: absolute; left: 0; bottom: 0.15rem; width: 100%; height: 3px; background: var(--temple-red);
}
.hero-lead { max-width: 36rem; font-size: 1rem; color: rgba(20, 20, 20, 0.9); font-weight: 500; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 24rem; margin: 1.5rem 0; }
.stat-card {
  background: rgba(255, 255, 255, 0.95); border: 2px solid rgba(255, 199, 44, 0.4);
  border-radius: 0.5rem; padding: 0.75rem; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.stat-card strong { display: block; font-size: 1.25rem; color: var(--temple-red); }
.stat-card span { font-size: 0.6rem; text-transform: uppercase; font-weight: 700; color: rgba(20,20,20,0.7); letter-spacing: 0.06em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }

.hero-showcase { position: relative; display: flex; justify-content: center; margin-top: 2rem; }
@media (min-width: 1024px) { .hero-showcase { margin-top: 0; } }
.hero-frame {
  position: absolute; border-radius: 0.75rem; pointer-events: none;
}
.hero-frame.outer { width: min(340px, 90vw); height: 450px; border: 12px solid var(--temple-red); opacity: 0.05; transform: rotate(3deg); }
.hero-frame.inner { width: min(340px, 90vw); height: 450px; border: 1px solid var(--temple-yellow); opacity: 0.5; transform: rotate(1deg); }
.hero-product-card {
  position: relative; z-index: 2; max-width: 22rem; width: 100%;
  background: #8b0000; padding: 1.5rem; border-radius: 1rem;
  border: 2px solid var(--temple-yellow); box-shadow: var(--shadow);
}
.hero-product-card .inner-border {
  position: absolute; inset: 0.5rem; border: 1px solid rgba(255, 199, 44, 0.2); border-radius: 0.75rem; pointer-events: none;
}
.hero-product-img {
  position: relative; aspect-ratio: 1; border-radius: 0.75rem; overflow: hidden;
  border: 1px solid rgba(255, 199, 44, 0.4); margin-bottom: 1rem; background: rgba(0,0,0,0.25);
}
.hero-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hero-product-card:hover .hero-product-img img { transform: scale(1.08); }
.product-tag {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: var(--temple-red); color: var(--white); font-size: 0.6rem; font-weight: 800;
  padding: 0.2rem 0.5rem; border-radius: 0.25rem; border: 1px solid var(--temple-yellow);
  text-transform: uppercase;
}
.hero-lamp-widget {
  position: absolute; bottom: -1rem; right: -0.5rem;
  background: var(--temple-red); border: 1px solid var(--temple-yellow);
  padding: 0.5rem 0.75rem; border-radius: 0.75rem; display: flex; gap: 0.5rem; align-items: center;
  box-shadow: var(--shadow);
}
.stars { color: var(--temple-yellow); display: flex; gap: 0.1rem; justify-content: center; font-size: 0.9rem; }
.price-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 0.5rem; }
.price-final { font-size: 1.15rem; font-weight: 800; color: var(--temple-yellow); }
.price-old { font-size: 0.75rem; color: rgba(253, 245, 230, 0.6); text-decoration: line-through; }
.discount-pill {
  font-size: 0.6rem; background: rgba(16, 185, 129, 0.25); color: #6ee7b7;
  padding: 0.15rem 0.4rem; border-radius: 0.2rem; font-weight: 800;
}

/* Product cards */
.product-card {
  background: var(--white); border: 1px solid #e4e4e7; border-radius: 1rem;
  overflow: hidden; display: flex; flex-direction: column;
  transition: 0.3s ease; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-card:hover { border-color: var(--temple-yellow); box-shadow: var(--shadow); transform: translateY(-2px); }
.product-card .thumb {
  position: relative; aspect-ratio: 1; background: var(--sandal-cream); overflow: hidden;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .badges {
  position: absolute; top: 0.6rem; left: 0.6rem; right: 0.6rem;
  display: flex; justify-content: space-between; pointer-events: none;
}
.badge-red {
  background: var(--temple-red); color: var(--white); font-size: 0.55rem; font-weight: 800;
  padding: 0.15rem 0.45rem; border-radius: 0.25rem; border: 1px solid var(--temple-yellow); text-transform: uppercase;
}
.badge-green {
  background: #10b981; color: var(--white); font-size: 0.55rem; font-weight: 800;
  padding: 0.15rem 0.4rem; border-radius: 0.25rem; text-transform: uppercase;
}
.product-card .body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.product-card h3 { font-size: 0.9rem; color: var(--maroon-dark); margin: 0; font-weight: 800; }
.product-card .tagline { font-size: 0.7rem; color: var(--muted); margin: 0; }
.product-card .rating { font-size: 0.7rem; color: #f59e0b; font-weight: 700; }
.product-card .actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 0.75rem; }
.product-card .actions .btn { flex: 1; padding: 0.6rem; font-size: 0.65rem; }
.category-tabs {
  display: flex; flex-wrap: wrap; gap: 0.35rem; background: var(--white);
  padding: 0.35rem; border-radius: 0.5rem; border: 2px solid rgba(255, 199, 44, 0.4);
}
.category-tabs button {
  padding: 0.4rem 0.75rem; font-size: 0.7rem; font-weight: 800; border-radius: 0.35rem;
}
.category-tabs button.is-active { background: var(--temple-red); color: var(--white); }
.category-tabs button:not(.is-active):hover { color: var(--temple-red); }

/* Why us */
.why-bento { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .why-bento { grid-template-columns: 5fr 7fr; } }
.why-feature {
  background: var(--white); border-radius: 1.5rem; padding: 1.5rem;
  border: 2px solid rgba(255, 199, 44, 0.4); box-shadow: var(--shadow);
}
.why-pillars { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .why-pillars { grid-template-columns: 1fr 1fr; } }
.pillar-card {
  background: var(--white); border: 1px solid #e4e4e7; border-radius: 1rem;
  padding: 1.25rem; transition: 0.3s;
}
.pillar-card:hover { border-color: var(--temple-yellow); box-shadow: var(--shadow); }
.pillar-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--temple-red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 0.75rem;
}
.trust-banner {
  margin-top: 3rem; background: var(--temple-red); color: var(--white);
  border: 2px solid var(--temple-yellow); border-radius: 1rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .trust-banner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* Experience */
.experience-panel {
  background: #18181b; border-radius: 1.5rem; border: 2px solid rgba(255, 199, 44, 0.4);
  aspect-ratio: 16/10; position: relative; overflow: hidden;
}
.experience-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.experience-panel .overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,0.35), transparent);
}
.experience-panel .copy { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: var(--white); z-index: 2; }
.experience-step {
  padding: 1rem; border-radius: 0.75rem; border: 1px solid #f4f4f5; cursor: pointer; transition: 0.3s;
  background: rgba(255,255,255,0.5);
}
.experience-step.is-active {
  background: var(--white); border-color: var(--temple-red); box-shadow: var(--shadow); transform: translateX(4px);
}
.experience-step h4 { margin: 0 0 0.35rem; font-size: 0.85rem; color: var(--maroon-dark); }
.experience-step p { margin: 0; font-size: 0.7rem; color: var(--muted); }

/* Testimonials */
.testimonial-card {
  background: rgba(253, 245, 230, 0.5); border: 2px solid rgba(245, 158, 11, 0.1);
  border-radius: 1.5rem; padding: 2rem; position: relative; box-shadow: var(--shadow);
}
.testimonial-dots { display: flex; justify-content: center; gap: 0.35rem; margin-top: 1rem; }
.testimonial-dots button {
  width: 0.6rem; height: 0.6rem; border-radius: 999px; background: #e4e4e7; padding: 0;
}
.testimonial-dots button.is-active { width: 1.5rem; background: var(--temple-red); }

/* Wholesale band */
.wholesale-band {
  padding: 3rem 0; text-align: center; color: var(--white);
  background: linear-gradient(to right, var(--maroon-dark), var(--temple-red));
  border-block: 2px solid rgba(255, 199, 44, 0.45); position: relative; overflow: hidden;
}

/* FAQ */
.faq-item { background: var(--white); border: 2px solid rgba(255, 199, 44, 0.3); border-radius: 1rem; overflow: hidden; margin-bottom: 1rem; }
.faq-trigger {
  width: 100%; text-align: left; padding: 1.25rem; display: flex;
  justify-content: space-between; gap: 1rem; font-weight: 800; color: var(--temple-red); font-size: 0.95rem;
}
.faq-body {
  display: none; padding: 0 1.25rem 1.25rem; font-size: 0.85rem; color: #52525b;
  border-top: 1px dashed #e4e4e7; padding-top: 0.75rem; font-weight: 600; line-height: 1.6;
}
.faq-item.is-open .faq-body { display: block; animation: slideDown 0.25s ease; }

/* Heritage */
.heritage-years { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; }
@media (min-width: 1024px) { .heritage-years { flex-direction: column; overflow: visible; } }
.heritage-year-btn {
  padding: 1rem 1.25rem; border-radius: 0.75rem; border: 1px solid #e4e4e7;
  text-align: left; font-weight: 800; white-space: nowrap; flex-shrink: 0; min-width: 10rem;
}
.heritage-year-btn.is-active {
  background: var(--temple-red); color: var(--temple-yellow); border-color: var(--temple-yellow);
  box-shadow: var(--shadow); transform: translateX(4px);
}
.heritage-panel {
  background: rgba(253, 245, 230, 0.6); border: 2px solid rgba(255, 199, 44, 0.4);
  border-radius: 1.5rem; padding: 2.5rem; position: relative; overflow: hidden; min-height: 18rem;
}
.heritage-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 12rem; font-weight: 800; color: rgba(255, 199, 44, 0.05); pointer-events: none;
}

/* Footer */
.site-footer {
  background: var(--temple-red); color: var(--white); border-top: 4px solid var(--temple-yellow);
  padding-top: 4rem; margin-top: auto;
}
.footer-grid { display: grid; gap: 2rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1.5fr; } }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }
.social-tile {
  aspect-ratio: 1; border-radius: 0.75rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.social-tile img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: 0.5s; }
.social-tile:hover img { transform: scale(1.05); }
.footer-sub {
  background: rgba(0,0,0,0.25); padding: 1.5rem 0; font-size: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.05); color: rgba(253,245,230,0.6);
}
.newsletter input {
  width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.25rem; padding: 0.6rem; color: var(--white); margin-bottom: 0.5rem;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter button {
  width: 100%; background: #000; color: var(--temple-yellow); padding: 0.65rem;
  border-radius: 0.25rem; font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
}
.newsletter button:hover { background: var(--white); color: #000; }

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(100%, 28rem);
  background: var(--white); z-index: 201; display: flex; flex-direction: column;
  border-left: 2px solid var(--temple-yellow); box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  transform: translateX(100%); transition: transform 0.35s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-header {
  padding: 1.25rem; border-bottom: 1px solid #f4f4f5;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-body { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-footer { padding: 1rem; border-top: 1px solid #f4f4f5; background: #fafafa; }
.cart-item {
  display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px dashed #e4e4e7;
}
.cart-item img { width: 4rem; height: 4rem; object-fit: cover; border-radius: 0.5rem; }
.qty-control { display: flex; align-items: center; gap: 0.5rem; }
.qty-control button {
  width: 1.75rem; height: 1.75rem; border: 1px solid #e4e4e7; border-radius: 0.25rem;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.cart-step { display: none; }
.cart-step.is-active { display: block; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.form-field { margin-bottom: 0.75rem; }
.form-field label { display: block; font-size: 0.7rem; font-weight: 800; margin-bottom: 0.25rem; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.6rem; border: 1px solid #e4e4e7; border-radius: 0.375rem; font-size: 0.85rem;
}
.form-field input:focus { outline: 2px solid rgba(200, 16, 46, 0.25); border-color: var(--temple-red); }
.form-field input.is-invalid { border-color: #c8102e; }
.field-error { font-size: 0.7rem; color: #c8102e; font-weight: 700; margin: 0.25rem 0 0; min-height: 0.9rem; }

/* Product detail */
.product-detail-hero {
  background: rgba(253, 245, 230, 0.2); padding: 2.5rem 0 4rem;
}
.product-detail-card {
  background: var(--white); border-radius: 1.5rem; padding: 2rem;
  border: 1px solid rgba(200, 16, 46, 0.1); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.product-detail-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--temple-red), var(--temple-yellow), var(--temple-red));
}
.gallery-main {
  aspect-ratio: 1; border-radius: 1rem; overflow: hidden; background: var(--sandal-cream);
  border: 1px solid #f4f4f5; position: relative;
}
.gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 4rem; height: 4rem; border-radius: 0.5rem; overflow: hidden;
  border: 2px solid transparent; padding: 0;
}
.gallery-thumbs button.is-active { border-color: var(--temple-yellow); }
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.5rem 0 1rem; }
.tabs button {
  padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 800; border-radius: 0.5rem;
  border: 1px solid #e4e4e7;
}
.tabs button.is-active { background: var(--temple-red); color: var(--white); border-color: var(--temple-red); }
.mobile-buy-bar {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--maroon-dark); border-top: 1px solid var(--temple-yellow);
  padding: 0.75rem 1rem; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
@media (min-width: 1024px) { .mobile-buy-bar { display: none; } }

/* Tracking stepper */
.stepper { display: flex; justify-content: space-between; margin: 2rem 0; position: relative; }
.stepper::before {
  content: ""; position: absolute; top: 1rem; left: 10%; right: 10%; height: 2px; background: #e4e4e7; z-index: 0;
}
.step {
  flex: 1; text-align: center; position: relative; z-index: 1;
}
.step-circle {
  width: 2rem; height: 2rem; border-radius: 50%; margin: 0 auto 0.5rem;
  background: #e4e4e7; color: var(--muted); font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; border: 2px solid #e4e4e7;
}
.step.is-done .step-circle,
.step.is-current .step-circle {
  background: #10b981; border-color: #34d399; color: var(--white);
}
.step.is-current .step-circle { animation: pulse 2s infinite; }
.step span { font-size: 0.65rem; font-weight: 700; color: var(--muted); display: block; }

/* Utility */
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.border-section { border-bottom: 2px solid rgba(255, 199, 44, 0.2); }
.bg-white-section { background: var(--white); }
.bg-cream { background: var(--sandal-cream); }
.page-banner { padding: 4rem 0 2rem; text-align: center; }
.page-banner h1 { color: var(--maroon-dark); font-size: clamp(1.5rem, 4vw, 2rem); margin: 0.5rem 0; }
.success-box {
  background: rgba(16, 185, 129, 0.1); color: #047857; padding: 1rem;
  border-radius: 0.75rem; border: 1px solid rgba(16, 185, 129, 0.2); text-align: center;
}
