/* ===== CUSTOM LUXURY DESIGN SYSTEM ===== */
:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  
  /* Brand Luxury Palette */
  --bg: #021a12;            /* Deep dark forest/emerald green */
  --surface: #042a1e;       /* Elegant dark green for cards & surfaces */
  --surface-soft: #083c2c;  /* Lighter jade green for hovers/active states */
  --text: #fdfbf7;          /* Rich warm cream/off-white */
  --muted: #a0bcae;         /* Light sage green for descriptions/muted text */
  --accent: #dfb26b;        /* Warm royal gold (extracted from logo) */
  --accent-dark: #b89154;   /* Polished bronze/gold */
  --border: rgba(223, 178, 107, 0.18); /* Luxury gold-tinted thin borders */
  --border-light: rgba(253, 251, 247, 0.08); /* White-tinted soft lines */
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 15px rgba(223, 178, 107, 0.15);
  --radius: 12px;           /* Sleek, formal corners for luxury aesthetic */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-soft);
  border: 2px solid var(--bg);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===== FIXED GLASSMORPHIC HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(2, 26, 18, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.nav-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.cart-link {
  position: relative;
  font-size: 1.05rem;
}

.badge {
  position: absolute;
  top: -8px;
  right: -12px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--accent);
  color: #021a12;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(223, 178, 107, 0.4);
}

/* ===== PREMIUM BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--accent);
  color: #021a12;
  box-shadow: 0 8px 24px rgba(223, 178, 107, 0.2);
}

.btn-primary:hover {
  background: #f5cf8e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(223, 178, 107, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(223, 178, 107, 0.06);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ===== FULL-SCREEN HERO BANNER BACKGROUND ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 8% 0;
  margin: 0;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none; /* Inactive slides should not block clicks */
  background: var(--bg); /* Keep background dark forest green when fitting images */
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto; /* Active slide should receive clicks */
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Fits the screen fully with no black borders */
  filter: brightness(0.4) contrast(1.05);
  transition: transform 6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.hero-slide.active img {
  transform: none; /* Disabled zoom scaling to prevent border cutting */
}

.hero-banner-slide img {
  filter: none !important; /* Keep full brightness for the banner slide */
}

.hero-banner-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel .slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(2, 26, 18, 0.3) 0%, rgba(2, 26, 18, 0.75) 100%);
  z-index: 3;
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 600px;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s ease;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 24px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  margin: 0 0 36px;
  max-width: 520px;
  color: #e2ede8;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-dots {
  position: absolute;
  right: 6%;
  bottom: 8%;
  z-index: 15;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 36px;
  height: 3px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot.active {
  background: var(--accent);
  width: 54px;
}

/* ===== LUXURY SECTION LAYOUTS ===== */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 28px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--text);
}

.section-head p {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* ===== PRODUCT GRID & CARDS ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.product-thumb {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.product-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.product-description {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.product-old-price {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 0.88rem;
}

/* ===== SAREE SCROLL SECTION ===== */
.product-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.product-scroll .product-card {
  min-width: 285px;
  flex: 0 0 285px;
  scroll-snap-align: start;
}

.product-scroll::-webkit-scrollbar {
  height: 4px;
}

.product-scroll::-webkit-scrollbar-track {
  background: rgba(223, 178, 107, 0.05);
}

.product-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* ===== CURATED CATEGORIES ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.category-thumb {
  width: 100%;
  height: 100%;
}

.category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.category-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 26, 18, 0.1) 0%, rgba(2, 26, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 5;
}

.category-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 6px;
  font-weight: 600;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* ===== TRUST & WHY CHOOSE US SECTION ===== */
.trust-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.trust-editorial {
  display: flex;
  flex-direction: column;
}

.trust-editorial .section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.editorial-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 20px 0;
  font-weight: 600;
}

.editorial-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  background: linear-gradient(135deg, rgba(253, 251, 247, 0.03), rgba(253, 251, 247, 0.01));
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 178, 107, 0.3);
  background: linear-gradient(135deg, rgba(223, 178, 107, 0.05), rgba(253, 251, 247, 0.02));
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.trust-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-card {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(4, 42, 30, 0.5) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px; /* Reduced from 40px 30px to match stat-item */
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(223, 178, 107, 0.4), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow), var(--shadow-glow);
  background: linear-gradient(145deg, var(--surface-soft) 0%, var(--surface) 100%);
}

.trust-card:hover::after {
  opacity: 1;
}

.trust-icon-wrapper {
  margin-bottom: 16px; /* Reduced from 24px */
  position: relative;
  display: inline-block;
}

.trust-icon {
  width: 44px; /* Reduced from 56px to match stat-item */
  height: 44px; /* Reduced from 56px to match stat-item */
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 178, 107, 0.15) 0%, rgba(223, 178, 107, 0.02) 70%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem; /* Reduced from 1.4rem */
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.trust-card:hover .trust-icon {
  transform: rotateY(180deg);
  background: radial-gradient(circle, rgba(223, 178, 107, 0.25) 0%, rgba(223, 178, 107, 0.05) 70%);
  border-color: var(--accent);
}

.trust-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; /* Reduced from 1.25rem */
  font-weight: 500;
  color: var(--text);
  margin: 0 0 8px 0; /* Reduced from 12px */
}

.trust-card p {
  color: var(--muted);
  font-size: 0.85rem; /* Reduced from 0.9rem */
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1080px) {
  .trust-container {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .editorial-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .trust-cards-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .trust-card {
    padding: 14px 10px !important;
    border-radius: 8px !important;
  }
  .trust-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.9rem !important;
  }
  .trust-card h3 {
    font-size: 0.82rem !important;
    margin-bottom: 4px !important;
  }
  .trust-card p {
    font-size: 0.7rem !important;
    line-height: 1.4 !important;
  }
}

/* ===== INSTAGRAM REELS / VIDEO CARDS ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.video-thumb img,
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 26, 18, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
  background: rgba(2, 26, 18, 0.6);
}

.video-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #021a12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.video-card:hover .video-play {
  transform: scale(1.1);
  background: #fff;
}

.video-card-body {
  padding: 20px;
}

.video-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 8px;
}

/* ===== REVIEW CARDS & MARQUEE ===== */
.review-grid {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 25s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 350px;
  width: 350px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--accent);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.review-rating {
  color: var(--accent);
  font-size: 0.85rem;
}

.review-comment {
  font-style: italic;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px)); /* 12px is half of 24px gap */
  }
}

/* ===== TOAST ALERTS ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 300;
}

.toast {
  min-width: 280px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== COHESIVE LUXURY FOOTER ===== */
.site-footer {
  background: #01120c;
  border-top: 1px solid var(--border);
  padding: 70px 0 20px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer h3,
.site-footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 18px;
}
.site-footer h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 18px;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-contact p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 40px auto 0;
  padding: 20px 28px 0;
  border-top: 1px solid rgba(223, 178, 107, 0.06);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ===== LOGIN PAGE STYLES ===== */
.login-page-section {
  min-height: 100vh;
  padding: 130px 24px 70px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 560px;
}

.dashboard-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 1200px;
}

.auth-header {
  margin-bottom: 36px;
  text-align: center;
}

.auth-header h1 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: var(--text);
}

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

.form-section {
  margin-bottom: 28px;
}

.form-section h3 {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.input-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-form input {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: rgba(2, 26, 18, 0.4);
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-soft);
  box-shadow: 0 0 0 2px rgba(223, 178, 107, 0.1);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.dashboard-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.dashboard-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.dashboard-item label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.dashboard-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.order-history-section {
  margin-top: 32px;
}

.order-history-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0 0 16px;
  font-weight: 500;
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */
.product-detail-page {
  background: var(--bg);
  padding: 130px 28px 70px;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-main-image:hover img {
  transform: scale(1.04);
}

.detail-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumbnail-btn {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  aspect-ratio: 3/4;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.thumbnail-btn:hover,
.thumbnail-btn.active {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-title {
  margin: 0;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.25;
}

.detail-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

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

.detail-price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0 12px;
  border-bottom: 1px solid var(--border-light);
}

.detail-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.detail-old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.2rem;
}

.discount-badge {
  background: rgba(223, 178, 107, 0.12);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.detail-description {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.section-subtitle {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.size-section,
.quantity-section {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.size-options {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.size-btn {
  padding: 10px 0;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.size-btn:hover {
  border-color: var(--accent);
  background: var(--surface-soft);
}

.size-btn.active {
  background: var(--accent);
  color: #021a12;
  border-color: var(--accent);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  max-width: 130px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

#qtyInput {
  width: 50px;
  border: none;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  background: rgba(2, 26, 18, 0.4);
  color: var(--text);
  text-align: center;
  font-size: 0.95rem;
}

#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 10px 0;
}

.product-actions .btn-primary {
  flex: 1;
}

.btn-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--accent);
  border-radius: 30px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.btn-wishlist:hover {
  background: rgba(223, 178, 107, 0.08);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-wishlist.active {
  background: var(--accent);
  color: #021a12;
  border-color: var(--accent);
}

.detail-note {
  padding: 16px;
  background: rgba(223, 178, 107, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.detail-note p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Delivery Options & Product Details Styles */
.delivery-options-box,
.product-details-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.delivery-options-title,
.product-details-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.pincode-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.pincode-input-group input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: rgba(2, 26, 18, 0.5);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.25s ease;
}

.pincode-input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(223, 178, 107, 0.25);
}

.pincode-input-group button {
  padding: 12px 24px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.05em;
}

.pincode-input-group button:hover {
  background: var(--accent);
  color: #021a12;
}

.delivery-status-msg {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  color: #81c784;
  display: flex;
  align-items: center;
  gap: 8px;
}

.delivery-status-msg.error {
  background: rgba(255, 82, 82, 0.08);
  border: 1px solid rgba(255, 82, 82, 0.2);
  color: #ff8a80;
}

.delivery-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.delivery-bullets li i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Product Details Styles */
.product-details-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}

.product-details-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-details-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  list-style-type: disc;
}

.product-details-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* Chat for Styling Button */
.btn-chat {
  background: #b5894b; /* Bronze/gold matching attached image */
  color: var(--text);
  border: 1px solid #b5894b;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.btn-chat:hover {
  background: #cba265;
  border-color: #cba265;
  transform: translateY(-2px);
}

/* ===== CART PAGE STYLES ===== */
.cart-page {
  padding: 130px 28px 70px;
  background: var(--bg);
}

.cart-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: start;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr 130px;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  align-items: center;
}

.cart-thumb {
  width: 90px;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 6px;
}

.cart-body p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 14px;
}

.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  max-width: 100px;
  overflow: hidden;
  height: 32px;
}

.cart-qty button {
  width: 30px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-qty button:hover {
  background: var(--surface-soft);
  color: var(--accent);
}

.cart-qty span {
  flex: 1;
  text-align: center;
  font-size: 0.88rem;
}

.cart-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cart-price span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.text-button {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s ease;
}

.text-button:hover {
  color: #ff5c5c;
}

.cart-summary {
  position: sticky;
  top: 110px;
}

.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.summary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.total-row {
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--text);
  font-size: 1.15rem;
}

.total-row span:last-child {
  color: var(--accent);
}

.checkout-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

.login-notice {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
  text-align: center;
}

.login-notice p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 6px;
}

.login-notice .text-button {
  color: var(--accent);
  font-weight: 600;
}

.empty-state {
  text-align: center;
  padding: 70px 20px;
}

.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ===== RESPONSIVE STYLING ===== */
@media (max-width: 1080px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cart-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    display: grid !important;
    grid-template-columns: 50px 1fr auto !important;
    align-items: center !important;
    padding: 8px 16px !important;
    width: 100% !important;
  }

  .nav-toggle {
    grid-column: 1 !important;
    order: 1 !important;
    display: inline-flex !important;
    margin: 0 !important;
  }

  .brand {
    grid-column: 2 !important;
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }

  .brand-logo {
    width: 36px !important;
    height: 36px !important;
  }

  .brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .brand-name {
    font-size: 1.05rem !important;
    line-height: 1.1 !important;
  }

  .brand-subtitle {
    font-size: 0.55rem !important;
    letter-spacing: 0.05em !important;
  }

  .header-actions {
    grid-column: 3 !important;
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
  }

  .auth-nav-link {
    display: none !important; /* Hide user account profile icon from mobile header */
  }

  .nav-links {
    display: none !important; /* Disable default desktop dropdown overlay */
  }

  .hero {
    height: auto !important;
    aspect-ratio: 506 / 393 !important; /* Fits portrait/square banners perfectly with no black border gaps */
    margin-top: 68px !important; /* Offsets fixed header on mobile */
    padding: 0 !important;
  }

  .hero-slide {
    background: transparent !important;
  }

  .hero-slide img {
    object-fit: contain !important; /* Fills aspect ratio grid */
    filter: none !important; /* Maintain original brand asset colors */
  }

  .hero-carousel .slide-overlay {
    display: none !important; /* Remove overlay to ensure banner graphic text is bright and legible */
  }

  .hero-copy {
    display: none !important; /* Hide HTML overlay texts on mobile view */
  }

  .hero-dots {
    right: 5% !important;
    bottom: 5% !important;
  }

  .section {
    padding: 60px 20px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .category-card-body {
    padding: 16px;
  }
  
  .category-title {
    font-size: 1.15rem;
  }
  
  .category-subtitle {
    font-size: 0.65rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .hero-dots {
    right: 5%;
    bottom: 6%;
  }

  .section-head {
    align-items: flex-start;
  }

  .header-inner {
    padding: 12px 20px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 1.15rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }
  
  .cart-thumb {
    width: 70px;
  }
  
  .cart-price {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: 4px;
  }

  .detail-main-image {
    min-height: auto;
  }

  .detail-title {
    font-size: 1.6rem;
  }

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

  .review-track .review-card {
    flex: 0 0 280px;
    width: 280px;
    padding: 20px;
  }
}

/* ===== LOGIN/SIGNUP TOGGLE TABS ===== */
.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
.auth-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.auth-toggle-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}
.auth-toggle-hint p {
  margin: 0;
}
.auth-toggle-hint a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== HEADER ACTION BUTTONS & TEXT BRANDING ===== */
.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-top: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.action-btn {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}
.action-btn:hover {
  color: var(--accent);
}
.auth-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.auth-text {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
.action-btn:hover .auth-text {
  color: var(--accent);
}
.search-container {
  position: relative;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: -10px;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 250;
}
.search-dropdown.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.search-dropdown input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: rgba(2, 26, 18, 0.4);
  color: var(--text);
  font-size: 0.85rem;
}
.search-dropdown input:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===== LIGHT THEME SYSTEM OVERRIDES ===== */
.light-theme {
  --bg: #eae7e1;            /* Soft warm grey/beige top & bottom gradient */
  --surface: #ffffff;       /* Pure white cards (matches image 2) */
  --surface-soft: #f4f2eb;
  --text: #021a12;          /* Deep dark forest green text */
  --muted: #5e756c;         /* Sage muted text */
  --border: rgba(184, 145, 84, 0.28);
  --border-light: rgba(2, 26, 18, 0.08);
  --shadow: 0 16px 40px rgba(2, 26, 18, 0.05);
}
.light-theme .site-header {
  background: rgba(234, 231, 225, 0.85);
}
.light-theme .order-timeline-line {
  background: #e2dfd8;
}
.light-theme .step-dot {
  background: #d8d5ce;
  border-color: #d8d5ce;
}
.light-theme .dashboard-sidebar,
.light-theme .dashboard-main,
.light-theme .dashboard-menu-sidebar,
.light-theme .filter-card {
  background: #ffffff;
  border-color: var(--border);
}
.light-theme .dashboard-tab-btn.active {
  background: #fdf0f2;
}

/* ===== LOGIN/SIGNUP TOGGLE TABS ===== */
.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
.auth-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.auth-toggle-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}
.auth-toggle-hint p {
  margin: 0;
}
.auth-toggle-hint a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== SPLIT CUSTOMER DASHBOARD LAYOUT (IMAGE 2) ===== */
.my-account-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 32px;
  color: var(--text);
}
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.dashboard-menu-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}
.dashboard-tab-btn,
.dashboard-logout-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}
.dashboard-tab-btn:hover {
  background: var(--surface-soft);
  color: var(--accent);
}
.dashboard-tab-btn.active {
  background: #fdf0f2; /* Soft pinkish/rose gold tint */
  color: var(--accent-dark);
  font-weight: 600;
}
.dashboard-logout-btn {
  color: #ff3b30;
  font-weight: 600;
  border-top: 1px solid var(--border-light);
  border-radius: 0;
  margin-top: 8px;
  padding-top: 18px;
}
.dashboard-logout-btn:hover {
  color: #e02d22;
  background: transparent;
}
.dashboard-content-area {
  min-height: 500px;
}
.dashboard-panel {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}
.dashboard-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

/* ===== PROGRESS STEPPER TIMELINE (IMAGE 2) ===== */
.order-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.order-card-meta strong {
  font-size: 0.95rem;
  color: var(--text);
}
.order-date {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}
.order-status-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.order-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.order-product-thumb {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--surface-soft);
}
.order-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-product-info h4 {
  margin: 0 0 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
}
.order-product-info p.qty {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Timeline Track & Stepper */
.order-timeline-container {
  position: relative;
  margin: 32px 0 24px;
  padding: 0 10px;
}
.order-timeline-line {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
  transform: translateY(-50%);
}
.order-timeline-progress {
  height: 100%;
  background: var(--accent);
  z-index: 2;
  transition: width 0.3s ease;
}
.order-timeline-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dcd9d0;
  border: 2px solid #dcd9d0;
  transition: all 0.3s ease;
}
.timeline-step.active .step-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(223, 178, 107, 0.4);
}
.step-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.timeline-step.active .step-label {
  color: var(--text);
  font-weight: 600;
}

.order-card-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: 16px;
}
.order-total-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

/* ===== COLLECTIONS LAYOUT & SIDEBAR FILTER ===== */
.collections-page {
  padding-top: 130px;
}
.collections-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.collections-sidebar {
  position: sticky;
  top: 110px;
}
.filter-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
}
.filter-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  text-align: left;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.filter-btn.active {
  background: var(--accent);
  color: #021a12;
  font-weight: 600;
}
.collections-grid-wrapper {
  min-height: 500px;
}

/* ===== OTHER UI FIXES ===== */
.section-actions {
  margin-top: 36px;
  text-align: center;
}

/* ===== ADDITIONAL RESPONSIVENESS ===== */
@media (max-width: 820px) {
  .dashboard-layout,
  .collections-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .collections-sidebar {
    position: static;
  }
  .filter-options {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .filter-btn {
    flex: 1 0 calc(50% - 10px);
    text-align: center;
  }
}

/* ===== LUXURY DUAL-PANE CHECKOUT FORM STYLES ===== */
.cart-left-pane {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.checkout-shipping-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.panel-subtitle-luxury {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group-luxury {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-form input {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: rgba(2, 26, 18, 0.4);
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.checkout-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-soft);
  box-shadow: 0 0 0 2px rgba(223, 178, 107, 0.1);
}

/* ===== CUSTOMER DASHBOARD STATS GRID (LATEST VISION) ===== */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(223, 178, 107, 0.08);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-value {
  margin: 2px 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .form-row-luxury {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .stat-card {
    padding: 12px 10px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }
  .stat-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
  }
  .stat-value {
    font-size: 1.05rem !important;
  }
  .stat-label {
    font-size: 0.62rem !important;
  }
}

/* ===== PAYMENT METHOD TABS ===== */
.payment-section {
  margin-top: 20px;
}
.section-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}
.payment-method-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.pay-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 8px;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}
.pay-tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pay-tab-btn.active {
  background: rgba(223, 178, 107, 0.12);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 2px rgba(223, 178, 107, 0.1);
}

/* ===== PAYMENT DETAIL PANELS ===== */
.pay-detail-panel {
  background: rgba(2, 26, 18, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 22px 20px;
  margin-top: 4px;
  animation: fadeInPanel 0.25s ease;
}
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pay-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(223, 178, 107, 0.1);
  border: 1px solid rgba(223, 178, 107, 0.25);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}
.pay-panel-icon.cod {
  background: rgba(100, 200, 120, 0.08);
  border-color: rgba(100, 200, 120, 0.25);
  color: #5cb85c;
}
.pay-panel-info {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}

/* UPI Input Row */
.pay-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pay-input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  background: rgba(2, 26, 18, 0.6);
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pay-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(223, 178, 107, 0.1);
}
.pay-verify-btn {
  padding: 11px 20px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.pay-verify-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pay-verify-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* UPI Verified Badge */
.upi-verified-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(92, 184, 92, 0.1);
  border: 1px solid rgba(92, 184, 92, 0.3);
  border-radius: 8px;
  color: #5cb85c;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Card Form */
.card-form {
  margin-top: 4px;
}
.card-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.77rem;
  color: var(--muted);
}
.card-secure-badge i {
  color: #5cb85c;
}

/* COD Info Note */
.cod-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 200, 80, 0.06);
  border: 1px solid rgba(255, 200, 80, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text);
}
.cod-note i {
  color: #f0ad4e;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Shipping free badge in summary */
#cartShipping[data-free="true"] {
  color: #5cb85c;
  font-weight: 700;
}

/* ===== SOLD OUT BADGE & CARD STYLING ===== */
.product-thumb {
  position: relative;
}
.product-card-soldout {
  opacity: 0.85;
}
.product-card-soldout img {
  filter: grayscale(40%);
}
.sold-out-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(220, 53, 69, 0.9);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cart-item-soldout {
  opacity: 0.75;
  border-color: rgba(220, 53, 69, 0.2) !important;
}
.cart-item-soldout img {
  filter: grayscale(50%);
}

/* ===== LUXURY MOBILE DRAWER MENU & REELS MODAL ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 26, 18, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-drawer.active {
  transform: translateX(0);
}
.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-soft);
}
.drawer-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer-avatar {
  font-size: 1.8rem;
  color: var(--accent);
}
.drawer-username {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}
.drawer-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.25s ease;
}
.drawer-close:hover {
  color: var(--accent);
}
.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 0;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
}
.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
.drawer-nav-item i {
  width: 20px;
  font-size: 1.1rem;
  color: var(--muted);
  transition: color 0.25s ease;
}
.drawer-nav-item:hover {
  background: rgba(223, 178, 107, 0.05);
  color: var(--accent);
  border-left-color: var(--accent);
}
.drawer-nav-item:hover i {
  color: var(--accent);
}
.drawer-divider {
  padding: 16px 24px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.8;
}
.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--surface-soft);
}
.drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.drawer-btn-login {
  background: var(--accent);
  color: var(--bg);
}
.drawer-btn-login:hover {
  background: #f5cf8e;
}
.drawer-btn-logout {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.drawer-btn-logout:hover {
  background: rgba(223, 178, 107, 0.05);
}

/* ===== LUXURY VIDEO LIGHTBOX MODAL ===== */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(2, 26, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal-overlay.active {
  opacity: 1;
}
.video-modal-container {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  width: 100%;
  max-width: 800px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-modal-overlay.active .video-modal-container {
  transform: scale(1);
}
.video-modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-soft);
}
.video-modal-header h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--accent);
}
.video-modal-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.25s ease;
}
.video-modal-close:hover {
  color: var(--accent);
}
.video-modal-body {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.video-title-overlay {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  margin-top: 8px;
}

/* ===== LUXURY EXPERIENCE SECTION ===== */
.experience-section {
  background: var(--bg-soft);
  position: relative;
  padding: 80px 8%;
  overflow: hidden;
}
.experience-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Row */
.experience-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: end;
}
.experience-header-left {
  position: relative;
}
.cursive-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.experience-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 16px;
}
.accent-line {
  width: 50px;
  height: 2px;
  background: var(--accent);
}
.experience-header-right p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Bottom Grid Row */
.experience-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 30px;
  align-items: center;
}

/* Watermark Text */
.bg-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.experience-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 3;
}
.experience-col-left {
  text-align: right;
  align-items: flex-end;
}
.experience-col-right {
  text-align: left;
  align-items: flex-start;
}

/* Cards */
.exp-card {
  max-width: 380px;
  transition: transform 0.3s ease;
}
.exp-card:hover {
  transform: translateY(-5px);
}
.exp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(223, 178, 107, 0.08);
  border: 1px solid rgba(223, 178, 107, 0.25);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.experience-col-left .exp-icon {
  margin-left: auto;
}
.exp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 10px;
}
.exp-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* Center Image Column */
.experience-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.experience-model-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s ease;
}
.experience-model-img:hover {
  transform: scale(1.03);
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .experience-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .experience-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .experience-col-center {
    grid-column: 1 / -1;
    order: 3;
    margin-top: 20px;
  }
  .experience-col-left {
    text-align: left;
    align-items: flex-start;
  }
  .experience-col-left .exp-icon {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .experience-section {
    padding: 60px 20px;
  }
  .experience-main-title {
    font-size: 2rem;
  }
  .experience-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .experience-col-left, .experience-col-right {
    text-align: center;
    align-items: center;
  }
  .exp-icon {
    margin: 0 auto 12px;
  }
  .experience-col-center {
    order: 2; /* Place image in the middle between left and right features! */
    margin: 20px 0;
  }
  .bg-watermark {
    font-size: 4rem;
    bottom: -10px;
  }
}

/* ===== PROCESS FLOW BANNER ===== */
.process-flow-banner-container {
  width: 100%;
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
  border: 1px solid var(--border-light);
  line-height: 0;
}
.process-flow-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.process-flow-banner-img:hover {
  transform: scale(1.01);
}

@media (max-width: 820px) {
  .process-flow-banner-container {
    margin-top: 24px;
    border-radius: 8px;
  }
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  background-color: #20ba5a;
  color: #fff;
}

@media (max-width: 768px) {
  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

