/* =====================================================
   SAVARI SAREES - Main CSS
   Woven in Tradition, Draped in Elegance
   ===================================================== */

/* Google Fonts */
/* Google Fonts loaded via <link> in HTML for better performance */


/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  /* Colors */
  --bg-cream: #FDF6EC;
  --primary-gold: #C9973A;
  --accent-rose: #E8B4C8;
  --text-walnut: #2C1A0E;
  --border-sand: #EAD9C0;
  --white: #FFFFFF;
  --black: #000000;
  --maroon-deep: #5C1A1A;
  --success: #2E7D32;
  --error: #C62828;

  /* Color with alpha */
  --gold-glow: rgba(201, 151, 58, 0.4);
  --rose-light: rgba(232, 180, 200, 0.3);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --font-accent: 'Cinzel', 'Times New Roman', serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(44, 26, 14, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 26, 14, 0.12);
  --shadow-lg: 0 8px 24px rgba(44, 26, 14, 0.16);
  --shadow-xl: 0 16px 48px rgba(44, 26, 14, 0.2);
  --shadow-gold: 0 0 30px rgba(201, 151, 58, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-cinematic: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1400px;
  --container-padding: 1.5rem;
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: auto !important;
  -moz-osx-font-smoothing: grayscale;
}

* {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-walnut);
  background-color: var(--bg-cream);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

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

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-walnut);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
}

.text-accent {
  font-family: var(--font-accent);
}

.text-gold {
  color: var(--primary-gold);
}

.text-center {
  text-align: center;
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--text-walnut);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--white);
  border-color: var(--primary-gold);
}

.btn-primary:hover {
  background: #B8872E;
  border-color: #B8872E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-maroon {
  background: var(--maroon-deep);
  color: var(--white);
  border-color: var(--maroon-deep);
}

.btn-maroon:hover {
  background: #4A1515;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* =====================================================
   FORM ELEMENTS
   ===================================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-walnut);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--text-walnut);
  background: var(--white);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder {
  color: rgba(44, 26, 14, 0.4);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-gold {
  border: 1px solid var(--border-sand);
  position: relative;
}

.card-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-rose), var(--primary-gold));
}

/* =====================================================
   BADGES
   ===================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-gold {
  background: var(--primary-gold);
  color: var(--white);
}

.badge-rose {
  background: var(--accent-rose);
  color: var(--text-walnut);
}

.badge-maroon {
  background: var(--maroon-deep);
  color: var(--white);
}

.badge-new {
  background: var(--success);
  color: var(--white);
}

.badge-sale {
  background: var(--error);
  color: var(--white);
}

/* =====================================================
   GRID SYSTEM
   ===================================================== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =====================================================
   UTILITIES
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.pt-4xl { padding-top: var(--space-4xl); }
.pb-4xl { padding-bottom: var(--space-4xl); }

/* =====================================================
   CUSTOM SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: #B8872E;
}

/* =====================================================
   SELECTION
   ===================================================== */
::selection {
  background: var(--accent-rose);
  color: var(--text-walnut);
}

/* =====================================================
   FOCUS STATES
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

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

/* =====================================================
   PAGE HEADER & HERO (Subpages)
   ===================================================== */
.page-header {
  position: relative;
  padding: 160px 0 100px 0; /* Clears navbar beautifully */
  background-color: #2C1A0E;
  color: #FDF6EC;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at center, rgba(201, 151, 58, 0.15) 0%, rgba(44, 26, 14, 0.95) 100%);
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  padding: 0 var(--container-padding);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #FDF6EC;
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #EAD9C0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =====================================================
   TESTIMONIALS STYLE RULES
   ===================================================== */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: var(--max-width);
  margin: -40px auto 60px auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 10;
}
.stat-card {
  background: var(--white);
  padding: 35px var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(44,26,14,0.06);
  border: 1px solid var(--border-sand);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-card:hover {
  transform: translateY(-5px);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-emoji {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-walnut);
  opacity: 0.8;
}

.testimonials-featured {
  max-width: 900px;
  margin: 0 auto 70px auto;
  padding: 0 var(--container-padding);
}
.featured-testimonial {
  background: var(--white);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-lg);
  padding: 45px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(201,151,58,0.08);
}
.featured-quote {
  color: var(--primary-gold);
  margin-bottom: 20px;
  opacity: 0.6;
}
.featured-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-walnut);
  margin-bottom: 25px;
  font-style: italic;
}
.featured-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 18px;
}
.author-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.author-details {
  text-align: left;
}
.author-name-lg {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-walnut);
}
.author-location {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-walnut);
  opacity: 0.6;
}
.featured-product {
  font-size: 0.85rem;
  color: var(--text-walnut);
  opacity: 0.8;
}
.featured-product a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
}
.featured-product a:hover {
  text-decoration: underline;
}

.testimonials-grid-section {
  max-width: var(--max-width);
  margin: 0 auto 70px auto;
  padding: 0 var(--container-padding);
}
.testimonials-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-sand);
  color: var(--text-walnut);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(201,151,58,0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(44,26,14,0.03);
}
.testimonial-rating {
  color: var(--primary-gold);
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-walnut);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EAD9C0;
  color: var(--text-walnut);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: bold;
}
.author-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-walnut);
}
.author-review-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-walnut);
  opacity: 0.5;
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.pagination-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-sand);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-walnut);
}
.pagination-btn:hover:not(:disabled), .pagination-btn.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonials-page {
  background: var(--bg-cream);
  padding-bottom: 60px;
}
.testimonials-cta {
  background: var(--white);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  margin: 60px auto 40px auto;
  box-shadow: 0 10px 30px rgba(44, 26, 14, 0.05);
}
.testimonials-cta h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 400;
  color: var(--text-walnut);
}
.testimonials-cta p {
  font-family: var(--font-body);
  color: var(--text-walnut);
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* =====================================================
   FAQ PAGE STYLE RULES (Elegant Static List Layout)
   ===================================================== */
.faq-page {
  padding-bottom: var(--space-4xl);
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--container-padding);
}

.faq-static-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  box-shadow: 0 20px 50px rgba(44, 26, 14, 0.05);
}

.faq-static-item {
  border-bottom: 1px solid rgba(234, 217, 192, 0.5);
  padding-bottom: var(--space-2xl);
}

.faq-static-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-static-question {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--primary-gold);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.faq-static-answer {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-walnut);
  opacity: 0.9;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-static-list {
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-2xl);
  }
  
  .faq-static-item {
    padding-bottom: var(--space-xl);
  }
}

/* Customer Videos Styling */
.customer-videos {
  background: var(--bg-cream);
  padding: 80px var(--container-padding);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-sand);
  box-shadow: 0 4px 15px rgba(44, 26, 14, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(44, 26, 14, 0.08);
}
.video-thumbnail-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--text-walnut);
  overflow: hidden;
  cursor: pointer;
}
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s ease;
}
.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}
.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.video-card:hover .play-btn-overlay {
  background: var(--primary-gold);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}
.play-icon {
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.video-info {
  padding: var(--space-lg);
  text-align: center;
}
.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-walnut);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}
.video-info p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-walnut);
  opacity: 0.7;
}

/* Heritage Timeline Styling */
.heritage-timeline {
  background: var(--white);
  padding: 100px var(--container-padding);
  border-bottom: 1px solid var(--border-sand);
}
.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}
.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
/* The vertical line in the middle */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--border-sand);
}
.timeline-item {
  display: flex;
  margin-bottom: 80px;
  position: relative;
  width: 100%;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
/* Alternating columns */
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-year {
  width: 50%;
  display: flex;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--primary-gold);
  font-weight: 600;
  padding: 0 40px;
}
.timeline-item:nth-child(odd) .timeline-year {
  justify-content: flex-start;
  text-align: left;
}
.timeline-item:nth-child(even) .timeline-year {
  justify-content: flex-end;
  text-align: right;
}
.timeline-content {
  width: 50%;
  padding: 0 40px;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-walnut);
  margin-bottom: 12px;
  font-weight: 500;
}
.timeline-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-walnut);
  opacity: 0.85;
}
/* The dot on the timeline */
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--primary-gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 151, 58, 0.3);
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 50px;
    margin-bottom: 40px;
  }
  .timeline-item::after {
    left: 20px;
    top: 20px;
    transform: translate(-50%, -50%);
  }
  .timeline-year {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    font-size: 1.75rem;
    justify-content: flex-start !important;
  }
  .timeline-content {
    width: 100%;
    padding: 0;
  }
}

/* =====================================================
   ABOUT PAGE VALUES GRID
   ===================================================== */
.about-values {
  background-color: var(--bg-cream);
  padding: var(--space-4xl) 0;
}
.values-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}
.value-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  border: 1px solid var(--border-sand);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-walnut);
}
.value-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-walnut);
  opacity: 0.85;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .value-card {
    padding: var(--space-xl);
  }
}

/* =====================================================
   REUSABLE ELEGANT CTA SECTIONS
   ===================================================== */
.about-cta,
.faq-contact {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-cream);
  text-align: center;
}

.about-cta .cta-content,
.faq-contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.about-cta h2,
.faq-contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-walnut);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.about-cta p,
.faq-contact p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-walnut);
  opacity: 0.85;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .cta-buttons,
.faq-contact-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .about-cta .cta-buttons,
  .faq-contact-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =====================================================
   PREMIUM IMAGE LIGHTBOX (Zoom In / Zoom Out)
   ===================================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(44, 26, 14, 0.95); /* Walnut deep background with transparency */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
}

.lightbox-image-wrapper {
  overflow: auto;
  max-width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201, 151, 58, 0.2); /* Subtle gold border */
}

.lightbox-image {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}

.lightbox-image.zoomed {
  transform: scale(1.6);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-caption {
  margin-top: var(--space-lg);
  color: #EAD9C0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 0.05em;
  animation: fadeIn 0.5s ease forwards;
}

.lightbox-hint {
  margin-top: var(--space-sm);
  color: var(--white);
  opacity: 0.6;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

/* Custom Scrollbar for Lightbox wrapper when zoomed */
.lightbox-image-wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.lightbox-image-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: var(--radius-full);
}

/* =====================================================
   COLLECTION HIGHLIGHT CARDS (Homepage)
   ===================================================== */

.collections-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.collection-highlight-card {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.collection-highlight-img-wrap {
  position: absolute;
  inset: 0;
}

.collection-highlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-highlight-card:hover .collection-highlight-img-wrap img {
  transform: scale(1.07);
}

.collection-highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,5,0.88) 0%, rgba(20,10,5,0.2) 60%, transparent 100%);
}

.collection-highlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl) var(--space-xl);
  color: var(--white);
}

.collection-highlight-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.collection-highlight-price {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: var(--space-md);
}

.collection-highlight-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: var(--space-lg);
}

.collection-highlight-cta {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-gold);
  border-bottom: 1px solid var(--primary-gold);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.collection-highlight-card:hover .collection-highlight-cta {
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .collections-highlight-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .collection-highlight-card {
    aspect-ratio: 3/4;
  }
}

/* =====================================================
   WHY VISIT ASAVARI (Trust Section)
   ===================================================== */

.why-asavari-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.why-asavari-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-asavari-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(201,151,58,0.12);
}

.why-asavari-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: block;
  line-height: 1;
}

.why-asavari-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-walnut);
  margin-bottom: var(--space-md);
}

.why-asavari-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-walnut);
  opacity: 0.75;
}

@media (max-width: 1024px) {
  .why-asavari-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-asavari-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   IMAGE LAZY-LOAD FADE-IN (Scoped to Product Cards Only)
   ===================================================== */
.product-card-image img,
.saree-carousel-card-img {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.product-card-image img.loaded,
.saree-carousel-card-img.loaded {
  opacity: 1;
}
