/* =========================================================
   TEJOVATH SPIRITUAL STORE - STYLESHEET
   Pure Clarity. Spiritual Balance. Timeless Energy.
   ========================================================= */

:root {
  --primary-maroon: #7B1E22;
  --primary-maroon-dark: #581215;
  --primary-maroon-light: #9E2A2B;
  --accent-gold: #C59B27;
  --accent-gold-light: #DFB748;
  --accent-gold-soft: rgba(197, 155, 39, 0.15);
  --peacock-teal: #0F4C5C;
  --peacock-teal-dark: #0A323D;
  --peacock-blue: #1A5B6D;
  
  --bg-sand: #FAF7F2;
  --bg-warm-light: #FFFDF9;
  --bg-stone: #EFECE6;
  --bg-card: #FFFFFF;
  
  --text-primary: #211E1C;
  --text-secondary: #5C554F;
  --text-muted: #877E76;
  --text-light: #FAF7F2;
  
  --border-subtle: #E8E2D8;
  --border-gold: rgba(197, 155, 39, 0.35);
  
  --shadow-sm: 0 2px 8px rgba(33, 30, 28, 0.05);
  --shadow-md: 0 6px 20px rgba(33, 30, 28, 0.08);
  --shadow-lg: 0 12px 36px rgba(33, 30, 28, 0.12);
  --shadow-gold: 0 6px 24px rgba(197, 155, 39, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Cinzel', 'Playfair Display', serif;
}

/* RESET & CORE DEFAULTS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-sand);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TOP ANNOUNCEMENT BAR */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-maroon-dark), var(--primary-maroon), var(--primary-maroon-dark));
  color: #FFF7EB;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.4);
}

.announcement-bar span.badge-pill {
  background: var(--accent-gold);
  color: #211E1C;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* NAVBAR */
.navbar {
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text h1 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary-maroon);
  line-height: 1.1;
}

.brand-text p {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-maroon);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: var(--bg-stone);
  transition: all 0.2s ease;
  position: relative;
}

.nav-btn-icon:hover {
  background: var(--accent-gold-soft);
  color: var(--primary-maroon);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary-maroon);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 30%, rgba(239, 236, 230, 0.8), var(--bg-sand) 70%);
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.sacred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFDF9;
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-maroon);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.sacred-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 6px var(--accent-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--primary-maroon-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-title span.highlight {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--peacock-teal);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '✦';
  font-size: 0.9rem;
  color: var(--accent-gold);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-maroon), var(--primary-maroon-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(123, 30, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 30, 34, 0.45);
  background: linear-gradient(135deg, var(--primary-maroon-light), var(--primary-maroon));
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--primary-maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #B3861B);
  color: #1A1505;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* HERO TRUST METRICS */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-maroon);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* HERO IMAGE STAGE */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFDF9;
  background: #FFFDF9;
  transition: transform 0.4s ease;
  width: 100%;
}

.hero-main-card:hover {
  transform: scale(1.015);
}

.hero-main-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.floating-cert-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  max-width: 300px;
}

.floating-cert-badge .icon-gold {
  color: var(--accent-gold);
  font-size: 1.6rem;
}

.floating-cert-badge p.cert-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
}

.floating-cert-badge p.cert-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* TRUST STRIP */
.trust-strip {
  background: #FFFDF9;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-sand);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-maroon);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.trust-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* SECTION HEADERS */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-warm-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 0.6rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary-maroon-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
  border: 1px solid var(--border-subtle);
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--primary-maroon);
}

.filter-btn.active {
  background: var(--primary-maroon);
  color: white;
  border-color: var(--primary-maroon);
  box-shadow: 0 4px 12px rgba(123, 30, 34, 0.25);
}

/* PRODUCT CATALOG GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-maroon);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.product-card-badge.gold {
  background: var(--accent-gold);
  color: #1A1505;
}

.product-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-top: 85%;
  background: #F3EFEA;
  overflow: hidden;
}

.product-thumb-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb-wrapper img {
  transform: scale(1.06);
}

.product-quick-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  color: var(--primary-maroon);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid var(--border-gold);
}

.product-card:hover .product-quick-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.product-rating span.review-count {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary-maroon-dark);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.product-specs-pill {
  font-size: 0.75rem;
  color: var(--peacock-teal);
  background: rgba(15, 76, 92, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.product-desc-snippet {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.price-current {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-maroon);
}

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

.price-discount {
  font-size: 0.75rem;
  font-weight: 700;
  color: #198754;
  background: #E8F5E9;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.btn-add-cart {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--primary-maroon);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-add-cart:hover {
  background: var(--primary-maroon-light);
  box-shadow: 0 4px 12px rgba(123, 30, 34, 0.3);
}

/* CRAFTSMANSHIP SHOWCASE SECTION (IMAGE 5) */
.craftsmanship-section {
  background: linear-gradient(180deg, var(--bg-warm-light) 0%, var(--bg-sand) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.craft-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.craft-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.craft-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.craft-card {
  display: flex;
  gap: 1.25rem;
  background: white;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.craft-card:hover {
  border-color: var(--accent-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.craft-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.craft-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-maroon-dark);
  margin-bottom: 0.3rem;
}

.craft-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* DIVINE BENEFITS & RUDHRAYANI SIGNIFICANCE (IMAGE 2) */
.significance-banner {
  background: radial-gradient(circle at 10% 20%, rgba(123, 30, 34, 0.04), transparent 60%), white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  padding: 3rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.significance-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--bg-sand);
}

.significance-content h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--primary-maroon-dark);
  margin-bottom: 0.75rem;
}

.significance-content p {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.significance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sig-tag {
  background: var(--bg-sand);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-maroon);
}

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

.benefit-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.benefit-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--primary-maroon-dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* WHO CAN WEAR */
.who-wear-section {
  margin-top: 3.5rem;
  background: #FFFDF9;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
}

.who-wear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.who-icon {
  background: var(--bg-stone);
  color: var(--primary-maroon);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.who-item h5 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.who-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CARE GUIDE SECTION (IMAGE 2 PANEL 7) */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.care-card {
  background: white;
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.care-card:hover {
  background: #FFFDF9;
  border-style: solid;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.care-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-maroon);
}

.care-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
  margin-bottom: 0.4rem;
}

.care-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* TESTIMONIALS SECTION */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-info h5 {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 600;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: #198754;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--primary-maroon-dark);
  color: #E8DFD8;
  padding: 4.5rem 0 2rem;
  border-top: 2px solid var(--accent-gold);
}

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

.footer-brand h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #FFF7EB;
  margin-bottom: 0.5rem;
}

.footer-brand p.tagline {
  color: var(--accent-gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-brand p.desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #D6C8BE;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFF7EB;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #D6C8BE;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #D6C8BE;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #B5A496;
}

/* =========================================================
   INTERACTIVE COMPONENTS (DRAWER, MODAL, TOAST)
   ========================================================= */

/* CART DRAWER */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #FFFDF9;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary-maroon);
}

.cart-close-btn {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.cart-close-btn:hover {
  color: var(--primary-maroon);
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

.cart-empty-state .icon {
  font-size: 3rem;
  color: var(--border-gold);
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  align-items: center;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-maroon);
}

.cart-qty-ctrls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--bg-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--accent-gold-soft);
  color: var(--primary-maroon);
}

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.25rem;
  margin-left: auto;
}

.cart-item-remove:hover {
  color: #DC3545;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: white;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
}

.cart-coupon-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.coupon-input {
  flex-grow: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: inherit;
  text-transform: uppercase;
}

.coupon-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.coupon-btn {
  padding: 0.55rem 1rem;
  background: var(--bg-stone);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.coupon-btn:hover {
  background: var(--accent-gold);
  color: white;
}

/* QUICK VIEW / DETAIL MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #FFFDF9;
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: var(--primary-maroon);
  color: white;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
}

.modal-gallery-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  max-height: 420px;
  box-shadow: var(--shadow-md);
}

.modal-details h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--primary-maroon-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.modal-tag {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.modal-specs-table {
  width: 100%;
  margin: 1.25rem 0;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.modal-specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.modal-specs-table td {
  padding: 0.5rem 0;
}

.modal-specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.modal-specs-table td:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* ORDER SUCCESS MODAL */
.checkout-modal {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 480px;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* TOAST NOTIFICATION */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #211E1C;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
  font-weight: 500;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-metrics {
    justify-content: center;
  }
  .hero-description {
    margin: 0 auto 2rem;
  }
  .hero-tagline {
    justify-content: center;
  }
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .significance-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .benefits-grid,
  .who-wear-grid,
  .care-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .modal-body {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid,
  .who-wear-grid,
  .care-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .announcement-bar {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 0.3rem;
  }
}
