/* =========================================================
   NARUMUGAI PREMIUM AGARBATTI — Stylesheet
   Design tokens: deep oxblood maroon + antique gold + warm ivory
   Display type: Cormorant Garamond | Body type: Jost
   Signature element: rising incense-smoke wisp motif
   ========================================================= */

:root {
  --maroon-deep: #4A1017;
  --maroon: #6B1B24;
  --maroon-light: #8C2C36;
  --gold: #C69A4A;
  --gold-light: #E4CD98;
  --gold-soft: #F1E4C4;
  --ivory: #F6EFE1;
  --ivory-soft: #FBF7EE;
  --ink: #2B211B;
  --ink-soft: #5A4E44;
  --sandalwood: #DFC9A0;
  --smoke: #C9C2B6;
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --radius: 2px;
  --shadow-soft: 0 12px 40px rgba(74, 16, 23, 0.12);
  --shadow-card: 0 8px 24px rgba(43, 33, 27, 0.08);

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-deep);
  font-weight: 600;
  line-height: 1.12;
}

h2.section-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-lead {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 48px;
}

.section-head { text-align: center; }
.section-head .section-lead { margin-left: auto; margin-right: auto; }

section { padding: 100px 0; position: relative; }
.section-alt { background: var(--ivory); }

/* incense-smoke divider used between sections */
.smoke-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 0 auto 10px;
  width: fit-content;
}
.smoke-divider .stick { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.smoke-divider .stick.right { background: linear-gradient(90deg, var(--gold), transparent); }
.smoke-divider .ember { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px 2px rgba(198,154,74,0.6); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--maroon); color: var(--ivory-soft); }
.btn-primary:hover { background: var(--maroon-deep); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-gold { background: var(--gold); color: var(--maroon-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--maroon-deep); }
.btn-outline:hover { background: var(--gold-soft); }
.btn-sm { padding: 10px 20px; font-size: 0.72rem; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5b; }
.btn-call { background: var(--maroon); color: var(--ivory-soft); }

/* ============ SCROLLING ANNOUNCEMENT BAR ============ */
.marquee-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 501;
  height: 34px;
  background: var(--maroon-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0 40px;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 500;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198,154,74,0.25);
  transition: all 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1500px;
  margin: 0 auto;
  gap: 16px;
  flex-wrap: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--maroon-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo .logo-mark { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.logo .logo-sub { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; font-weight: 500; }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.nav-cta .btn-sm { padding: 8px 14px; font-size: 0.68rem; white-space: nowrap; }
.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--maroon-deep);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.cart-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--maroon); color: #fff;
  font-size: 0.65rem; font-weight: 600;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--ivory-soft);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--maroon-deep); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  background: radial-gradient(ellipse at 75% 20%, rgba(198,154,74,0.14), transparent 55%), var(--ivory-soft);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--maroon-deep);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-copy .tagline em { color: var(--gold); font-style: italic; }
.hero-copy p.intro {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gold-light);
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.smoke-wisp {
  position: absolute;
  top: -160px;
  right: 18%;
  width: 90px;
  height: 220px;
  pointer-events: none;
  opacity: 0.55;
}
.smoke-wisp path {
  fill: none;
  stroke: var(--smoke);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: smokeRise 7s ease-in-out infinite;
}
@keyframes smokeRise {
  0% { stroke-dashoffset: 400; opacity: 0; }
  20% { opacity: 0.6; }
  70% { stroke-dashoffset: 40; opacity: 0.35; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(198,154,74,0.3);
}
.hero-stats .stat b { font-family: var(--font-display); font-size: 1.8rem; color: var(--maroon-deep); display: block; }
.hero-stats .stat span { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ============ ABOUT (home teaser) ============ */
.about-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-teaser .ph { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.about-teaser p { color: var(--ink-soft); margin-bottom: 18px; max-width: 560px; }

/* ============ PRODUCT CARDS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(198,154,74,0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(43,33,27,0.06);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(74,16,23,0.14); }
.product-card .ph { aspect-ratio: 1/1; overflow: hidden; background: var(--gold-soft); }
.product-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .ph img { transform: scale(1.06); }
.product-card .pc-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.product-card .fragrance-tag {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 10px;
  font-weight: 600;
}
.product-card p.desc { color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 14px; flex: 1; }
.product-card .meta { display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--ink-soft); margin-bottom: 6px; }
.product-card .price-row { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 14px; }
.product-card .price-now { font-family: var(--font-body); font-size: 1.25rem; font-weight: 600; color: var(--maroon-deep); }
.product-card .price-mrp { font-size: 1rem; color: var(--ink-soft); text-decoration: line-through; opacity: 0.7; }
.product-card .price-was { font-size: 0.85rem; color: var(--ink-soft); text-decoration: line-through; opacity: 0.7; }
.product-card .pc-actions { display: flex; gap: 8px; margin-bottom: 10px; }
.product-card .pc-actions .btn { flex: 1; justify-content: center; padding: 10px 12px; font-size: 0.66rem; }

/* Add-to-cart control: button collapses into a quantity stepper once item is in the cart */
.add-cart-zone { margin-top: auto; }
.btn-add-cart {
  width: 100%;
  justify-content: center;
  background: var(--maroon);
  color: var(--ivory-soft);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s ease;
}
.btn-add-cart:hover { background: var(--maroon-deep); }
.qty-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--maroon);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.qty-stepper button {
  flex: 0 0 40px;
  height: 40px;
  background: var(--gold-soft);
  color: var(--maroon-deep);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.qty-stepper button:hover { background: var(--gold-light); }
.qty-stepper .qty-num { flex: 1; text-align: center; font-weight: 600; color: var(--maroon-deep); font-size: 0.95rem; }

/* ============ WHY CHOOSE ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(198,154,74,0.25);
  border: 1px solid rgba(198,154,74,0.25);
}
.why-item {
  background: var(--ivory-soft);
  padding: 44px 32px;
  transition: background 0.3s ease;
}
.why-item:hover { background: var(--gold-soft); }
.why-item .num { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold); margin-bottom: 18px; letter-spacing: 0.1em; }
.why-item h3 { font-size: 1.3rem; margin-bottom: 10px; }
.why-item p { color: var(--ink-soft); font-size: 0.92rem; }

/* ============ GALLERY ============ */
.gallery-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-tabs button {
  padding: 9px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 20px;
  color: var(--maroon-deep);
  transition: all 0.25s ease;
}
.gallery-tabs button.active, .gallery-tabs button:hover { background: var(--maroon); color: var(--ivory-soft); border-color: var(--maroon); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-grid .g-item { border-radius: var(--radius); overflow: hidden; cursor: zoom-in; position: relative; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item.wide { grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(43,33,27,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox .lb-close { position: absolute; top: 28px; right: 36px; color: var(--ivory-soft); font-size: 2rem; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info .info-row { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .info-row .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--maroon); }
.contact-info .info-row h4 { font-size: 1.02rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.contact-info .info-row p, .contact-info .info-row a { color: var(--ink-soft); font-size: 0.92rem; }
.contact-actions { display: flex; gap: 12px; margin: 28px 0; flex-wrap: wrap; }
.social-links { display: flex; gap: 14px; margin-top: 20px; }
.social-links a { width: 38px; height: 38px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--maroon-deep); transition: all 0.25s ease; }
.social-links a:hover { background: var(--maroon); color: var(--ivory-soft); border-color: var(--maroon); }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 24px; border: 1px solid rgba(198,154,74,0.3); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { background: var(--ivory-soft); border: 1px solid rgba(198,154,74,0.25); padding: 36px; border-radius: var(--radius); }

.contact-product-image { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(198,154,74,0.25); box-shadow: 0 20px 45px rgba(0,0,0,0.18); }
.contact-product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.form-row { margin-bottom: 20px; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 13px 14px; border: 1px solid rgba(198,154,74,0.4);
  background: var(--white); border-radius: var(--radius); font-family: inherit; font-size: 0.92rem; color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.form-msg { margin-top: 14px; font-size: 0.85rem; }
.form-msg.ok { color: #2f7a3d; }
.form-msg.err { color: var(--maroon); }

/* ============ FOOTER ============ */
.site-footer { background: var(--maroon-deep); color: var(--gold-soft); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo { color: var(--ivory-soft); }
.footer-brand p { color: rgba(246,239,225,0.7); margin-top: 16px; max-width: 320px; font-size: 0.9rem; }
.footer-col h4 { color: var(--ivory-soft); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: rgba(246,239,225,0.7); font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(198,154,74,0.25); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(246,239,225,0.6); }
.footer-bottom a { color: rgba(246,239,225,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ============ FLOATING BUTTONS ============ */
.floating-actions { position: fixed; right: 22px; bottom: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 400; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.22); color: #fff; font-size: 1.3rem; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--maroon); }

/* ============ MODAL (Privacy / Terms) ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(43,33,27,0.6); display: none; align-items: center; justify-content: center; z-index: 900; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--ivory-soft); max-width: 640px; max-height: 78vh; overflow-y: auto; padding: 40px; border-radius: var(--radius); position: relative; }
.modal-box h3 { margin-bottom: 16px; }
.modal-box p { color: var(--ink-soft); margin-bottom: 14px; font-size: 0.92rem; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 22px; border-bottom: 1px solid rgba(198,154,74,0.3); }
.auth-tab { flex: 1; padding: 10px 0; background: none; border: none; font-family: inherit; font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; border-bottom: 2px solid transparent; }
.auth-tab.active { color: var(--maroon); border-bottom-color: var(--maroon); }
.modal-close { position: absolute; top: 18px; right: 22px; font-size: 1.4rem; color: var(--ink-soft); }

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(43,33,27,0.55);
  z-index: 800; display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 400px;
  background: var(--ivory-soft);
  z-index: 850;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -12px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid rgba(198,154,74,0.25);
}
.cart-drawer-head h3 { margin: 0; font-size: 1.3rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { color: var(--ink-soft); text-align: center; margin-top: 40px; font-size: 0.92rem; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(198,154,74,0.18); }
.cart-item img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.cart-item-info .cart-item-price { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 8px; }
.cart-item-remove { font-size: 0.72rem; color: var(--maroon); text-decoration: underline; margin-top: 6px; display: inline-block; }
.cart-drawer-foot { padding: 20px 24px 26px; border-top: 1px solid rgba(198,154,74,0.25); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.05rem; margin-bottom: 16px; }
.cart-total-row strong { font-family: var(--font-display); color: var(--maroon-deep); font-size: 1.3rem; }

.checkout-summary { background: var(--ivory); border-radius: 10px; padding: 16px 18px; margin-bottom: 6px; }
.checkout-summary .cs-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--ink-soft); padding: 5px 0; }
.checkout-summary .cs-total { display: flex; justify-content: space-between; font-weight: 700; color: var(--maroon-deep); font-size: 1rem; padding-top: 10px; margin-top: 6px; border-top: 1px solid rgba(198,154,74,0.3); }

/* ============ ADMIN ============ */
#adminView { display: none; min-height: 100vh; background: var(--ivory-soft); padding: 120px 0 80px; }
#adminView.open { display: block; }
.admin-login { max-width: 380px; margin: 60px auto; background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.admin-login h2 { margin-bottom: 22px; font-size: 1.6rem; }
.admin-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow-card); }
.admin-table th, .admin-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--gold-soft); font-size: 0.88rem; }
.admin-table th { background: var(--maroon-deep); color: var(--ivory-soft); font-weight: 500; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; }
.admin-table img { width: 46px; height: 46px; object-fit: cover; border-radius: 4px; }
.admin-actions-cell { display: flex; gap: 8px; }
.admin-form { background: var(--white); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-card); margin-top: 30px; }
.admin-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-table select { padding: 6px 10px; border-radius: 6px; border: 1px solid var(--gold-soft); font-family: inherit; font-size: 0.85rem; background: var(--ivory-soft); }

/* ============ ORDER TRACKING (customer "My Orders") ============ */
.order-card { background: var(--white); border: 1px solid var(--gold-soft); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.oc-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gold-soft); }
.oc-items { margin-bottom: 18px; }
.oc-item { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--ink-soft); padding: 3px 0; }
.order-tracker { display: flex; align-items: flex-start; }
.ot-step { flex: 1; text-align: center; position: relative; }
.ot-step::before { content: ""; position: absolute; top: 8px; left: -50%; width: 100%; height: 2px; background: var(--gold-soft); z-index: 0; }
.ot-step:first-child::before { display: none; }
.ot-step.done::before { background: var(--maroon); }
.ot-dot { position: relative; z-index: 1; display: block; width: 18px; height: 18px; margin: 0 auto 8px; border-radius: 50%; background: var(--gold-soft); border: 2px solid var(--white); }
.ot-step.done .ot-dot { background: var(--maroon); }
.ot-step.current .ot-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(198,154,74,0.25); }
.ot-label { font-size: 0.72rem; color: var(--ink-soft); display: block; }
.ot-step.done .ot-label, .ot-step.current .ot-label { color: var(--maroon); font-weight: 600; }


/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid, .about-teaser, .contact-grid { grid-template-columns: 1fr; }
  .about-teaser .ph { order: -1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; top: 68px; left: 0; right: 0; background: var(--ivory-soft); flex-direction: column; padding: 24px 28px; gap: 20px; border-bottom: 1px solid rgba(198,154,74,0.25); transform: translateY(-130%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta .btn span.label { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .admin-form .grid2 { grid-template-columns: 1fr; }
}