/* =========================================================
   RANISAHAB — LUXURY FASHION FOR EVERY WOMAN
   Official Color Palette: Deep Velvet Maroon, Antique Gold, 
   Obsidian Stage Black, and Warm Cream Ivory.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg-black:       #080706;
  --bg-black-soft:  #110f0e;
  --bg-black-card:  #181513;
  --maroon:         #5a0b16;
  --maroon-dark:    #35050c;
  --maroon-bright:  #7d1222;
  --gold:           #c9a24b;
  --gold-light:     #e8d197;
  --gold-dark:      #8c6e2b;
  --ivory:          #fbf8f1;
  --ivory-dark:     #efe7d5;
  --charcoal:       #24201c;
  --text-muted:     #8a8175;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Cinzel', serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, sans-serif;

  --radius: 2px;
  --shadow-gold: 0 10px 30px rgba(201, 162, 75, 0.25);
  --shadow-lift: 0 20px 40px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Dark background for all PLP/dark-theme pages — removes white side gaps */
body:has(.plp-page) {
  background-color: #0a0806;
}

h1, h2, h3, h4, h5, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--bg-black);
}

.label-title {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

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

/* ---------- Utility Classes ---------- */
.bg-black { background-color: var(--bg-black) !important; }
.bg-black-soft { background-color: var(--bg-black-soft) !important; }
.bg-ivory { background-color: var(--ivory) !important; }
.bg-ivory-dark { background-color: var(--ivory-dark) !important; }
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.text-maroon { color: var(--maroon) !important; }
.text-ivory { color: var(--ivory) !important; }

/* Buttons */
.btn-gold {
  background: linear-gradient(180deg, #d8b25d 0%, #b89038 100%);
  color: #0d0a06;
  border: 1px solid var(--gold-light);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-align: center;
}
.btn-gold:hover {
  background: linear-gradient(180deg, #e8c675 0%, #ca9e44 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #000;
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-black);
}
.cout-size-btn {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  padding: 7px 14px !important;
  min-width: 44px !important;
  border-radius: 4px !important;
  text-align: center !important;
  transition: all 0.2s ease-in-out !important;
  white-space: nowrap !important;
  border: 1px solid #c5a880 !important;
  color: #c5a880 !important;
  background: transparent !important;
}
.cout-size-btn:hover {
  background: rgba(197, 168, 128, 0.15) !important;
  border-color: #c5a880 !important;
  color: #ffffff !important;
}
.btn-outline-gold.active,
.cout-size-btn.active {
  background: linear-gradient(90deg, #c5a880 0%, #b2946c 100%) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border-color: #c9a24b !important;
  box-shadow: 0 0 14px rgba(201, 162, 75, 0.45) !important;
}

.btn-maroon {
  background-color: var(--maroon);
  color: var(--ivory);
  border: 1px solid var(--maroon-bright);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  display: inline-block;
  text-align: center;
}
.btn-maroon:hover {
  background-color: var(--maroon-dark);
  color: var(--gold-light);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  background-color: #1eb956;
  color: #fff;
}

/* Section Header Divider Motif */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title-wrapper .motif {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 0.3rem;
  display: block;
}
.section-title-wrapper h2 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg-black);
  margin: 0;
}

/* =========================================================
   HEADER & NAVIGATION (ULTRA-LUXURY REGAL DESIGN)
   ========================================================= */
.top-strip {
  background: linear-gradient(90deg, #050404 0%, #1a0609 50%, #050404 100%);
  color: var(--gold-light);
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
  text-align: center;
}
.top-strip i {
  color: var(--gold);
}

.navbar-ranisahab {
  background: linear-gradient(180deg, #0c0908 0%, #050404 100%);
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
  padding: 1.2rem 0 0;
  position: relative;
  z-index: 1020;
}

.header-three-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-col-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-col-center {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header-col-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.brand-logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  /* filter: drop-shadow(0 4px 18px rgba(201, 162, 75, 0.5)); */
  transition: transform 0.35s ease;
}
.brand-logo-img:hover {
  transform: scale(1.05);
}
.brand-logo-img.logo-lg {
  max-height: 105px;
}
.brand-logo-img.logo-sm {
  max-height: 55px;
}

.header-search-bar {
  position: relative;
  width: 250px;
}
.header-search-bar input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 25px;
  padding: 0.5rem 2.4rem 0.5rem 1.1rem;
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.header-search-bar input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(201, 162, 75, 0.3);
}
.header-search-bar i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.82rem;
}

.nav-actions .action-icon {
  color: var(--ivory-dark);
  font-size: 1.05rem;
  margin-left: 1.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-actions .action-icon:hover {
  color: var(--gold-light);
}
.nav-actions .action-icon i {
  font-size: 1.1rem;
}
.badge-cart {
  background: linear-gradient(180deg, #d8b25d 0%, #b89038 100%);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Regal Luxury Navigation Bar */
.nav-menu-bar-container {
  background: linear-gradient(180deg, #120e0d 0%, #060504 100%);
  border-top: 1px solid rgba(201, 162, 75, 0.35);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8);
  margin-top: 0.9rem;
  padding: 0.2rem 0;
}
.nav-ranisahab-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-ranisahab-menu .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-ranisahab-menu .nav-item:not(:last-child)::after {
  content: '✦';
  font-size: 0.45rem;
  color: rgba(201, 162, 75, 0.4);
  margin: 0 0.5rem;
  pointer-events: none;
}
.nav-ranisahab-menu .nav-link {
  font-family: var(--font-label);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ebdcc2;
  text-transform: uppercase;
  padding: 0.6rem 0.35rem;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s ease;
}
.nav-ranisahab-menu .nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(201, 162, 75, 0.7);
}
.nav-ranisahab-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-ranisahab-menu .nav-link:hover::after,
.nav-ranisahab-menu .nav-link.active::after {
  transform: scaleX(1);
}
.nav-ranisahab-menu .nav-link.active {
  color: var(--gold-light) !important;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(201, 162, 75, 0.8);
}

@media (min-width: 992px) and (max-width: 1280px) {
  .nav-ranisahab-menu .nav-link {
    font-size: 0.66rem !important;
    letter-spacing: 0.08em !important;
    padding: 0.5rem 0.2rem !important;
  }
  .nav-ranisahab-menu .nav-item:not(:last-child)::after {
    margin: 0 0.22rem !important;
  }
}

/* =========================================================
   HOMEPAGE — HERO BANNER
   ========================================================= */
.hero-slider-section {
  background-color: var(--bg-black);
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(8, 7, 6, 0.95) 0%, rgba(8, 7, 6, 0.7) 45%, rgba(8, 7, 6, 0.2) 100%),
    radial-gradient(circle at 75% 30%, rgba(90, 11, 22, 0.35), transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
}
.hero-content-box {
  background: linear-gradient(145deg, rgba(22, 18, 14, 0.72) 0%, rgba(10, 8, 6, 0.88) 100%);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  position: relative;
}
.hero-content-box::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-radius: 9px;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--ivory);
  margin-bottom: 0;
}
.hero-main-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 0.4rem 0 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
.hero-sub-text {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--ivory-dark);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-sub-pill {
  display: inline-block;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--gold-light);
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.hero-feature-row {
  display: flex;
  gap: 1.8rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-top: 2rem;
}
.hero-feature-row i { color: var(--gold); margin-right: 0.4rem; }

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  text-align: right;
}
.hero-image-wrapper img {
  max-height: 80vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: var(--gold);
  color: #000;
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Hero Carousel Controls & Motifs */
.hero-royal-motif {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .hero-royal-motif {
    justify-content: flex-start;
  }
}
.motif-line {
  display: inline-block;
  height: 1px;
  width: 35px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.royal-stamp-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.92);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.52rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.royal-stamp-badge i {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 2px;
}

.hero-slider-pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  z-index: 3;
  position: relative;
}
.slider-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot.active,
.slider-dot:hover {
  background: var(--gold);
  width: 36px;
  box-shadow: 0 0 10px rgba(201, 162, 75, 0.6);
}

.animate-fade-in {
  animation: heroFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   SHOP BY CATEGORY — LUXURY DARK 2x2 GRID
   ========================================================= */
.shop-by-category-section {
  background-color: #0a0806;
  padding: 3rem 0 0;
}

/* Section Heading */
.sbc-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.5rem 2rem;
}
.sbc-heading {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.8rem);
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}
.sbc-deco-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, transparent);
  max-width: 160px;
}
.sbc-crown-icon {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.8;
}

/* 2x2 Grid */
.sbc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: #0a0806;
}

/* Each Card */
.sbc-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 340px;
  text-decoration: none;
  cursor: pointer;
}
.sbc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  display: block;
}
.sbc-card:hover img {
  transform: scale(1.05);
}

/* Dark overlay — left-bottom gradient like reference */
.sbc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 1.4rem;
  transition: background 0.3s ease;
}
.sbc-card:hover .sbc-card-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* Text block inside card */
.sbc-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sbc-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2.1rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.sbc-shop-now {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
.sbc-card:hover .sbc-shop-now {
  opacity: 1;
  transform: translateX(4px);
}


/* =========================================================
   OUR EXCLUSIVE PROMISE — ONE DESIGN, ONE BRIDE
   ========================================================= */
.promise-section {
  background-color: var(--bg-black);
  color: var(--ivory);
  padding: 5rem 0;
  position: relative;
}
.promise-media-frame {
  position: relative;
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 8px;
}
.promise-media-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.promise-header-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.promise-main-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.promise-body-text {
  color: var(--ivory-dark);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
}
/* =========================================================
   MOBILE HEADER COMPONENTS & CONTROLS
   ========================================================= */
.mobile-nav-toggler {
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.mobile-nav-toggler:hover,
.mobile-nav-toggler:focus {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 14px rgba(201, 162, 75, 0.6);
  outline: none;
}
.mobile-nav-toggler i {
  font-size: 0.95rem;
}

.mobile-search-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.mobile-search-btn:hover,
.mobile-search-btn:focus {
  background: var(--gold);
  color: #000;
  outline: none;
}

.mobile-search-box {
  display: flex;
  align-items: center;
  background: rgba(18, 15, 14, 0.95);
  border: 1px solid var(--gold);
  border-radius: 25px;
  padding: 2px 4px 2px 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.mobile-search-box input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.4rem 0;
}
.mobile-search-box input:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
  color: #fff;
}
.mobile-search-box .btn-gold-sm {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
/* =========================================================
   HERO BANNER MOBILE ENHANCEMENTS & STYLING
   ========================================================= */
.mobile-hero-crown-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(201, 162, 75, 0.15);
  border: 1px solid rgba(201, 162, 75, 0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero-image-frame-box {
  position: relative;
  display: inline-block;
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 6px;
  background: radial-gradient(circle at 50% 30%, rgba(90, 11, 22, 0.4) 0%, rgba(8, 7, 6, 0.95) 100%);
  box-shadow: 0 15px 35px rgba(201, 162, 75, 0.35);
  max-width: 100%;
}
.hero-image-frame-box::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  pointer-events: none;
  border-radius: 4px;
}
.hero-img-top-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 7, 6, 0.95);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-main-img {
  max-height: 480px;
  width: auto;
  border-radius: 4px;
  display: block;
}

.mobile-hero-categories-bar {
  background: #0d0b09;
  z-index: 10;
}
.hero-cat-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.hero-cat-chip:hover,
.hero-cat-chip:focus {
  background: var(--gold);
  color: #000;
  border-color: var(--gold-light);
}

/* =========================================================
   COMPREHENSIVE RESPONSIVE DESIGN (MOBILE, TABLET, DESKTOP)
   ========================================================= */
@media (max-width: 991.98px) {
  /* Header & Top Bar Mobile */
  .top-strip {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.5rem;
    line-height: 1.3;
  }
  .navbar-ranisahab {
    padding: 0.6rem 0 0;
  }
  .header-three-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
  }
  .header-col-left {
    flex: 0 0 auto;
  }
  .header-col-center {
    flex: 1;
    text-align: center;
  }
  .header-col-right {
    flex: 0 0 auto;
  }
  .brand-logo-img {
    max-height: 52px !important;
  }

  .nav-menu-bar-container {
    margin-top: 0.4rem;
    padding: 0.3rem 0;
  }
  .nav-ranisahab-menu {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.4rem !important;
    padding: 1rem 0.5rem !important;
  }
  .nav-ranisahab-menu .nav-item {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }
  .nav-ranisahab-menu .nav-item:not(:last-child)::after {
    display: none !important;
  }
  .nav-ranisahab-menu .nav-item::after {
    display: none !important;
  }
  .nav-ranisahab-menu .nav-link {
    font-size: 0.8rem !important;
    padding: 0.75rem 1rem !important;
    letter-spacing: 0.12em !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(201, 162, 75, 0.18) !important;
    color: #ebdcc2 !important;
    width: 100% !important;
  }
  .nav-ranisahab-menu .nav-link.active {
    background: linear-gradient(90deg, rgba(90, 11, 22, 0.9) 0%, rgba(20, 15, 12, 0.95) 100%) !important;
    border-color: var(--gold) !important;
    color: var(--gold-light) !important;
    box-shadow: 0 4px 15px rgba(201, 162, 75, 0.25) !important;
    font-weight: 600 !important;
  }
  .nav-ranisahab-menu .nav-link i {
    color: var(--gold) !important;
    font-size: 0.9rem !important;
    width: 24px !important;
    text-align: center !important;
    margin-right: 0.8rem !important;
    display: inline-block !important;
  }

  /* Hero Banner Mobile */
  .hero-slider-section {
    min-height: auto;
    padding: 2rem 0 1.5rem;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content-box {
    padding: 1.2rem 0.85rem;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(20, 16, 13, 0.82) 0%, rgba(8, 7, 5, 0.92) 100%);
  }
  .hero-sub-pill {
    font-size: 0.6rem !important;
    letter-spacing: 0.1em !important;
    padding: 0.25rem 0.65rem !important;
    max-width: 100%;
    white-space: normal;
    display: inline-block;
  }
  .hero-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem !important;
    color: var(--gold-light) !important;
    letter-spacing: 0.08em;
    margin-top: 0.4rem !important;
    margin-bottom: 0.6rem !important;
    display: block;
    line-height: 1.4 !important;
  }
  .hero-main-title,
  h1.hero-main-title,
  .hero-content h1.hero-main-title { 
    font-family: var(--font-display);
    font-size: 1.35rem !important; 
    line-height: 1.3 !important;
    margin: 0.4rem auto 0.6rem !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.03em !important;
    max-width: 100%;
    word-wrap: break-word;
  }
  .hero-sub-text {
    font-size: 0.68rem !important;
    letter-spacing: 0.14em;
    color: var(--ivory-dark);
    margin-bottom: 1.2rem !important;
    line-height: 1.5;
  }
  .hero-content .btn-gold {
    display: inline-block;
    padding: 0.65rem 1.8rem;
    font-size: 0.72rem;
  }
  .hero-feature-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.6rem;
    margin-top: 1.2rem;
  }
  .hero-feature-row span {
    background: rgba(201, 162, 75, 0.12);
    border: 1px solid rgba(201, 162, 75, 0.35);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .hero-image-wrapper {
    text-align: center !important;
    margin-top: 1.2rem;
  }
  .hero-main-img {
    max-height: 250px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    border-radius: 4px;
  }
  .hero-img-box {
    display: inline-block;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 75, 0.4);
    box-shadow: 0 10px 30px rgba(201, 162, 75, 0.25);
  }
  .slider-arrow {
    display: none !important;
  }

  /* Inner Page Banners Mobile */
  .bg-black.py-5, .bg-black-soft.py-4 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }
  .bg-black h1, .bg-black-soft h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem) !important;
    line-height: 1.2;
  }
  .bg-black p.lead, .bg-black-soft p.lead {
    font-size: 0.88rem !important;
    line-height: 1.5;
    padding: 0 0.5rem;
  }

  /* Shop By Category — Mobile */
  .sbc-heading {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }
  .sbc-deco-line {
    max-width: 50px;
  }
  .sbc-grid {
    gap: 2px;
  }
  .sbc-card {
    height: 130px;
  }
  .sbc-card-overlay {
    padding: 0.75rem 0.65rem;
  }
  .sbc-card-title {
    font-size: 0.95rem;
  }
  .sbc-card-desc {
    display: none !important;
  }
  .sbc-shop-now {
    font-size: 0.55rem;
  }

  .promise-section {
    padding: 3rem 0;
  }
  .promise-main-title {
    font-size: 1.8rem;
  }
  .promise-media-frame img {
    height: 260px;
  }
  .promise-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Product Page Mobile */
  .product-main-view {
    height: 360px;
  }
  .price-now-large {
    font-size: 1.8rem;
  }

  .gallery-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .gallery-thumb-item {
    height: 120px;
  }

  .arrival-showcase-section {
    padding: 1.2rem 0.8rem;
  }
  .arrival-item-thumb img {
    height: 85px;
  }

  .pd-tabs-mobile-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .pd-tabs-mobile-scroll .product-tab-btn {
    width: auto;
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  /* Product Thumbnail Rail Mobile Horizontal Scroll */
  .product-thumb-rail {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 10px;
  }
  .product-thumb-rail img {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }

  /* Black Features Bar Mobile */
  .black-features-bar {
    padding: 1.2rem 0.5rem;
  }
  .feature-pill-item {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  .feature-pill-item i {
    font-size: 1.5rem;
  }
  .feature-pill-item h6 {
    font-size: 0.68rem;
  }
  .feature-pill-item p {
    font-size: 0.68rem;
  }

  /* Footer Mobile */
  .footer-ranisahab {
    padding-top: 2.5rem;
    background-color: #080706;
    text-align: left;
  }
  .footer-ranisahab h6 {
    color: var(--gold-light) !important;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    border-bottom: 1px solid rgba(201, 162, 75, 0.25);
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
  }
  .footer-ranisahab p, 
  .footer-ranisahab .text-muted,
  .footer-ranisahab .small {
    color: #ded6c8 !important;
    line-height: 1.6;
    font-size: 0.82rem;
  }
  .footer-ranisahab ul li a {
    color: #e6decb !important;
    font-size: 0.84rem;
  }
  .footer-ranisahab .social-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    margin-right: 0.4rem;
  }
  .footer-ranisahab .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  .footer-bottom-line {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
    font-size: 0.75rem;
    color: var(--gold-light);
  }
}

@media (max-width: 575.98px) {
  .top-strip {
    font-size: 0.52rem;
    letter-spacing: 0.05em;
  }
  .brand-logo-img {
    max-height: 44px !important;
  }
  .hero-main-title,
  h1.hero-main-title {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    letter-spacing: 0.03em !important;
  }
}

@media (max-width: 400px) {
  .hero-main-title,
  h1.hero-main-title {
    font-size: 1.1rem !important;
    letter-spacing: 0.02em !important;
  }
  .hero-eyebrow {
    font-size: 0.95rem !important;
  }
}
  .section-title-wrapper h2 {
    font-size: 1.35rem;
  }
  .package-price-tag {
    font-size: 1.5rem;
  }
  .package-card-media {
    height: 190px;
  }

  .sbc-card {
    height: 130px;
  }

  .gallery-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .gallery-thumb-item {
    height: 110px;
  }
  
  .checkout-steps-nav .checkout-step-item span {
    font-size: 0.5rem;
    letter-spacing: 0.03em;
  }
  .checkout-step-circle {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }
  .checkout-step-line {
    width: 8px;
  }
}

.promise-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.promise-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  color: var(--gold);
  font-size: 1.1rem;
}
.promise-icon-label {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--ivory-dark);
  text-transform: uppercase;
}

/* Certificate Card Frame */
.certificate-card-frame {
  border: 2px solid var(--gold);
  background: radial-gradient(circle at 50% 30%, #201810 0%, #0d0a08 100%);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.certificate-card-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 162, 75, 0.3);
  pointer-events: none;
}
.certificate-card-frame .cert-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  letter-spacing: 0.15em;
}
.certificate-card-frame h4 {
  font-family: var(--font-label);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  margin: 1rem 0 0.8rem;
  text-transform: uppercase;
}
.certificate-card-frame p {
  font-size: 0.78rem;
  color: var(--ivory-dark);
  line-height: 1.5;
}

/* =========================================================
   BRIDAL PACKAGES
   ========================================================= */
.packages-section {
  background-color: #0a0806;
  padding: 2rem 0 4rem;
}
.package-card {
  background-color: #181412;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(201, 162, 75, 0.15);
}
.package-card-media {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.package-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-card-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.package-card-title {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.package-price-tag {
  font-family: var(--font-label);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.package-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  flex-grow: 1;
}
.package-feature-list li {
  font-size: 0.84rem;
  padding: 0.35rem 0;
  color: #c5bbb1;
}
.package-feature-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

/* Trust Strip */
.trust-strip-banner {
  background-color: #000000;
  color: var(--ivory);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
}
.trust-item-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-item-col i {
  color: var(--gold);
  font-size: 1.3rem;
}
.trust-item-col span small {
  display: block;
  color: var(--text-muted);
  font-size: 0.58rem;
  text-transform: none;
  margin-top: 1px;
}

/* =========================================================
   REAL BRIDES & TESTIMONIALS
   ========================================================= */
.gallery-testimonials-section {
  background-color: #0a0806;
  padding: 5rem 0;
}
.gallery-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-thumb-item {
  height: 140px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}

.testimonial-card-box {
  background: #181412;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ivory-dark);
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Black Feature Bar */
.black-features-bar {
  background-color: #0b0a09;
  color: var(--ivory);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}
.feature-pill-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.feature-pill-item i {
  color: var(--gold);
  font-size: 1.4rem;
}
.feature-pill-item h6 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin: 0;
  text-transform: uppercase;
}
.feature-pill-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   FOOTER (HIGH CONTRAST & LUXURY DESIGN)
   ========================================================= */
.footer-ranisahab {
  background-color: #080706;
  color: #e5ded0;
  padding-top: 4rem;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
}
.footer-ranisahab p,
.footer-ranisahab .text-muted,
.footer-ranisahab .small {
  color: #c4bcae !important;
  line-height: 1.6;
}
.footer-ranisahab h6 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-light) !important;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.footer-ranisahab ul li a {
  color: #e5ded0;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-ranisahab ul li a:hover {
  color: var(--gold-light) !important;
  padding-left: 4px;
}
.footer-ranisahab .social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: all 0.25s ease;
}
.footer-ranisahab .social-icon-btn:hover {
  background: var(--gold);
  color: #000;
}
.footer-bottom-line {
  border-top: 1px solid rgba(201, 162, 75, 0.2);
  margin-top: 3rem;
  padding: 1.2rem 0;
  font-size: 0.78rem;
  color: #a89f90;
}

/* =========================================================
   PRODUCT DETAIL PAGE SPECIFICS
   ========================================================= */
.product-thumb-rail img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border: 1px solid transparent;
  cursor: pointer;
  margin-bottom: 8px;
}
.product-thumb-rail img.active {
  border-color: var(--gold);
}
.product-main-view {
  position: relative;
  height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
}
.product-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-360 {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--ivory);
  border: 1px solid var(--gold);
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  font-family: var(--font-label);
  border-radius: 20px;
}

.price-now-large {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--maroon);
}
.price-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-left: 0.6rem;
}
.price-discount-tag {
  background: #e6f4ea;
  color: #1e7e34;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.6rem;
}

.swatch-item {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ccc;
  cursor: pointer;
  display: inline-block;
}
.swatch-item.active {
  box-shadow: 0 0 0 2px var(--maroon);
}

.qty-control-box {
  display: inline-flex;
  border: 1px solid #d5c9b1;
  border-radius: var(--radius);
  align-items: center;
}
.qty-control-box button {
  background: none;
  border: none;
  width: 36px;
  height: 38px;
  font-size: 1.1rem;
  color: var(--charcoal);
  cursor: pointer;
}
.qty-control-box input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
  background: transparent;
}

.product-tab-btn {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-left: 3px solid transparent;
  padding: 0.8rem 1.2rem;
  width: 100%;
  text-align: left;
  background: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.product-tab-btn.active {
  border-left-color: var(--maroon);
  background-color: var(--ivory-dark);
  color: var(--maroon);
  font-weight: 600;
}

/* =========================================================
   CHECKOUT SHOWCASE STRIP
   ========================================================= */
.checkout-arrival-showcase {
  background: var(--bg-black-soft);
  color: var(--ivory);
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201, 162, 75, 0.3);
  margin-top: 3rem;
}
.showcase-thumb-box {
  text-align: center;
}
.showcase-thumb-box img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border: 1px solid var(--gold-dark);
  margin-bottom: 0.5rem;
}
.showcase-thumb-box p {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin: 0;
  text-transform: uppercase;
}

/* =========================================================
   CHECKOUT PAGE DESIGN (MATCHING REFERENCE DESIGN 3)
   ========================================================= */
.checkout-steps-nav {
  background-color: var(--ivory-dark);
  border-bottom: 1px solid #e0d5be;
  padding: 1rem 0;
}
.checkout-step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.checkout-step-item.active {
  color: var(--maroon);
  font-weight: 700;
}
.checkout-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #d8ceb8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.checkout-step-item.active .checkout-step-circle {
  background-color: var(--gold-dark);
  color: #fff;
  box-shadow: 0 0 10px rgba(201, 162, 75, 0.4);
}
.checkout-step-item.done .checkout-step-circle {
  background-color: var(--bg-black);
  color: var(--gold);
}
.checkout-step-line {
  height: 1px;
  width: 40px;
  background-color: #d5c8ab;
}

.checkout-card-box {
  background: #ffffff;
  border: 1px solid #e6dcc5;
  border-radius: 3px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.checkout-card-box h5 {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--maroon);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.payment-method-row {
  border: 1px solid #e6dcc5;
  border-radius: 3px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-method-row:hover,
.payment-method-row.selected {
  border-color: var(--gold);
  background-color: #fdfaf3;
}

.arrival-showcase-section {
  background-color: #0b0a09;
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 2.5rem 1.5rem;
  color: var(--ivory);
  margin-top: 3rem;
  border-radius: 3px;
}
.arrival-item-thumb {
  text-align: center;
}
.arrival-item-thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border: 1px solid var(--gold-dark);
  margin-bottom: 0.5rem;
  border-radius: 2px;
}
.arrival-item-thumb p {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin: 0;
  text-transform: uppercase;
}

.royal-customer-box {
  border: 1px solid var(--gold-dark);
  background: radial-gradient(circle at 50% 30%, #1e1710 0%, #0d0a08 100%);
  padding: 1.5rem;
  text-align: center;
  color: var(--ivory);
  height: 100%;
}

.need-help-box {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #14110f;
  padding: 1.5rem;
  color: var(--ivory);
  height: 100%;
}

/* =========================================================
   DARK LUXURY PRODUCT LISTING PAGE (PLP)
   ========================================================= */

.plp-page {
  background-color: #0a0806;
  min-height: 100vh;
  padding-bottom: 3rem;
  color: var(--ivory);
}

.plp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.2rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #8a8175;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plp-breadcrumb a { color: var(--gold); text-decoration: none; }
.plp-bc-sep { opacity: 0.4; }

.plp-header {
  text-align: center;
  padding: 2rem 1.5rem 1.2rem;
}
.plp-header-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.plp-deco-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.plp-deco-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.plp-deco-icon { color: var(--gold); font-size: 0.85rem; }
.plp-page-title {
  font-family: var(--font-label);
  font-size: clamp(1.6rem, 6vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.plp-page-subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #ded6c8;
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

.plp-filter-bar {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem 1rem;
}
.plp-filter-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.plp-filter-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,75,0.07); }
.plp-filter-btn i { color: var(--gold); font-size: 0.85rem; }

.plp-filter-drawer {
  display: none;
  background: linear-gradient(145deg, #181310 0%, #0d0a08 100%);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.plp-filter-drawer.open { display: block; }
.plp-filter-section { display: flex; flex-direction: column; gap: 0.4rem; }
.plp-filter-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #c9a24b !important;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}
.plp-filter-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #e6decb !important;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.plp-filter-check:hover { color: #ffffff !important; }
.plp-filter-check input[type="checkbox"],
.plp-filter-check input[type="radio"] {
  accent-color: #c9a24b;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.plp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}

.plp-card {
  background: #181412;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.55); }

.plp-card-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: #0d0b09;
}
.plp-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.plp-card:hover .plp-card-img { transform: scale(1.04); }

.plp-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-label);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.badge-new { background: #b5922a; color: #fff; }
.badge-best { background: #7d5a1c; color: #f5e6b8; }
.badge-excl { background: rgba(201,162,75,0.15); border: 1px solid var(--gold); color: var(--gold); }

.plp-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(20,16,12,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  color: #c5bbb1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.plp-wishlist-btn:hover { border-color: var(--gold); color: var(--gold); }

.plp-card-body { padding: 0.85rem 0.9rem 0.8rem; }
.plp-card-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--ivory);
  margin: 0 0 0.35rem;
  line-height: 1.35;
  font-weight: 500;
}
.plp-card-price {
  font-family: var(--font-label);
  font-size: 0.95rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plp-rating {
  font-size: 0.78rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.plp-rating i { font-size: 0.75rem; }
.plp-rating-count { color: rgba(255, 255, 255, 0.55) !important; font-size: 0.72rem; }

.plp-cart-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201,162,75,0.45);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.plp-cart-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.plp-load-more {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 1rem;
}
.plp-load-more-btn {
  background: transparent;
  border: 1px solid rgba(201,162,75,0.45);
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.plp-load-more-btn:hover { background: rgba(201,162,75,0.1); border-color: var(--gold); }

@media (min-width: 992px) {
  .plp-page { padding: 0 0 4rem; width: 100%; }
  .plp-breadcrumb { padding: 1rem 3rem; }
  .plp-header { padding: 2.5rem 3rem 1.5rem; }
  .plp-filter-bar { padding: 1rem 3rem; gap: 1rem; max-width: none; }
  .plp-filter-btn { flex: none; min-width: 160px; }
  .plp-filter-drawer { flex-direction: row; padding: 1.5rem 3rem; border: none; background: transparent; }
  .plp-filter-drawer.open { flex-direction: row; }
  .plp-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; padding: 1rem 3rem; }
  .plp-card-img-wrap { height: 320px; }
  .plp-page-title { font-size: 3.2rem; }
  .plp-load-more { padding: 2rem 3rem 1rem; }
}



/* =========================================================
   BRIDAL PACKAGES PAGE - DARK LUXURY THEME
   ========================================================= */
.bp-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.75rem 1rem 1.5rem;
}
.bp-card {
  background: #181412;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.55); }
.bp-card-featured { border: 1px solid rgba(201,162,75,0.5); box-shadow: 0 0 30px rgba(201,162,75,0.1); }
.bp-popular-badge {
  position: absolute;
  top: 16px;
  right: 0;
  background: var(--gold);
  color: #0a0806;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem 0.3rem 0.7rem;
  font-weight: 700;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 8px 100%, 0% 50%);
  z-index: 4;
}
.bp-card-img-wrap { position: relative; height: 240px; overflow: hidden; }
.bp-card-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; display: block; }
.bp-card:hover .bp-card-img { transform: scale(1.04); }
.bp-tier-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-weight: 700;
  z-index: 2;
}
.bp-silver { background: rgba(180,190,200,0.2); border: 1px solid #a8b0ba; color: #d0d8e0; }
.bp-gold { background: rgba(201,162,75,0.2); border: 1px solid var(--gold); color: var(--gold); }
.bp-royal { background: rgba(130,80,180,0.2); border: 1px solid #c49de0; color: #d4b8f0; }
.bp-card-body { padding: 1.2rem 1.1rem 1rem; }
.bp-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 0.5rem; }
.bp-card-name { font-family: var(--font-label); font-size: 0.82rem; letter-spacing: 0.08em; color: var(--ivory); margin: 0 0 0.2rem; text-transform: uppercase; }
.bp-card-tagline { font-family: var(--font-display); font-size: 0.8rem; color: #8a8175; font-style: italic; margin: 0; }
.bp-card-price { font-family: var(--font-label); font-size: 1.1rem; color: var(--gold); font-weight: 700; margin: 0; white-space: nowrap; }
.bp-feature-list { list-style: none; padding: 0; margin: 0 0 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.bp-feature-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: #c5bbb1; }
.bp-feature-list li .fa-check { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.bp-cross { color: #4a4540 !important; }
.bp-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,162,75,0.5);
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-bottom: 0.6rem;
}
.bp-book-btn:hover { background: var(--gold); color: #0a0806; border-color: var(--gold); }
.bp-book-featured { background: var(--gold); color: #0a0806; border-color: var(--gold); }
.bp-book-featured:hover { background: var(--gold-light); border-color: var(--gold-light); }
.bp-whatsapp-link { text-align: center; margin: 0; }
.bp-whatsapp-link a { font-size: 0.75rem; color: #4caf75; text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.bp-whatsapp-link a:hover { opacity: 1; }
.bp-trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; padding: 1rem 1rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 0.5rem; }
.bp-trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; color: #8a8175; }
.bp-trust-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
@media (min-width: 992px) {
  .bp-grid { flex-direction: row; align-items: flex-start; padding: 1rem 0 2rem; gap: 1.5rem; }
  .bp-card { flex: 1; }
  .bp-card-featured { transform: scale(1.025); }
  .bp-card-featured:hover { transform: scale(1.025) translateY(-4px); }
  .bp-card-img-wrap { height: 280px; }
  .bp-trust-strip { grid-template-columns: repeat(4, 1fr); padding: 1.5rem 0 2.5rem; }
}

/* =========================================================
   SHARED DARK LUXURY PAGE COMPONENTS
   ========================================================= */

/* --- Dark Split Hero (makeup, custom-lehenga, about) --- */
.dark-split-hero {
  background: #080605;
  background-image: radial-gradient(circle at 50% 50%, #15100d 0%, #080605 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.dark-split-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1.5-3 3.5s1 3.5 3 3.5 3-1.5 3-3.5-1-3.5-3-3.5zm-48 0c-2 0-3 1.5-3 3.5S4 55 6 55s3-1.5 3-3.5-1-3.5-3-3.5zM30 18c-2 0-3 1.5-3 3.5s1 3.5 3 3.5 3-1.5 3-3.5-1-3.5-3-3.5zm24-30c-2 0-3 1.5-3 3.5S52 15 54 15s3-1.5 3-3.5-1-3.5-3-3.5zm-48 0c-2 0-3 1.5-3 3.5S4 15 6 15s3-1.5 3-3.5-1-3.5-3-3.5zM30 48c-2 0-3 1.5-3 3.5s1 3.5 3 3.5 3-1.5 3-3.5-1-3.5-3-3.5z' fill='%23c9a24b' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.dark-split-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dark-split-content {
  padding: 1rem 0;
}
.dark-split-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.dark-split-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.dark-split-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #a89e94;
  line-height: 1.8;
  margin: 0 0 1.5rem;
  font-weight: 300;
  max-width: 540px;
}
.dark-split-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.dark-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #4caf75;
  border: 1px solid rgba(76,175,117,0.4);
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
}
.dark-wa-btn:hover { background: rgba(76,175,117,0.1); color: #4caf75; }
.dark-split-img-wrap {
  position: relative;
  padding: 10px;
}
.dark-split-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 75, 0.3);
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.dark-split-hero:hover .dark-split-img-wrap::after {
  border-color: var(--gold);
}
.dark-split-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.dark-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}
.dark-split-hero:hover .dark-split-img img {
  transform: scale(1.03);
}

/* --- Section Title --- */
.dark-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.2rem 1.25rem;
}
.dark-section-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Steps / Pillars Grid --- */
.dark-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 1rem 1.5rem;
}
.dark-step-card {
  background: #181412;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.dark-step-number {
  font-family: var(--font-label);
  font-size: 1.8rem;
  color: rgba(201,162,75,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.dark-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0 auto 0.75rem;
}
.dark-step-title {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.dark-step-text {
  font-size: 0.78rem;
  color: #8a8175;
  line-height: 1.55;
  margin: 0;
}

/* --- Package Icon (makeup page) --- */
.dark-pkg-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,162,75,0.08);
  border: 1px solid rgba(201,162,75,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.dark-pkg-icon-gold { background: rgba(201,162,75,0.18); border-color: var(--gold); }
.dark-pkg-icon-purple { background: rgba(130,80,180,0.15); border-color: #c49de0; color: #c49de0; }

/* --- Dark Form --- */
.dark-form-wrap {
  background: #130f0c;
  border-top: 1px solid rgba(201,162,75,0.15);
  border-bottom: 1px solid rgba(201,162,75,0.15);
  padding: 1.75rem 1.2rem;
  margin-top: 0.5rem;
}
.dark-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.dark-form-icon {
  color: var(--gold);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.5rem;
}
.dark-form-title {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}
.dark-form-subtitle {
  font-size: 0.8rem;
  color: #7a736b;
  font-family: var(--font-display);
  font-style: italic;
  margin: 0;
}
.dark-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.dark-form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.dark-form-full { grid-column: 1 / -1; }
.dark-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.dark-input {
  background: #1c1815;
  border: 1px solid rgba(201,162,75,0.25);
  color: var(--ivory);
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  font-size: 0.83rem;
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.dark-input:focus { border-color: var(--gold); }
.dark-input::placeholder { color: #888078; }
.dark-select {
  background-color: #1c1815 !important;
  color: #ffffff !important;
}
.dark-select option,
select option {
  background-color: #1c1815 !important;
  color: #ffffff !important;
  padding: 8px 12px;
}
.dark-select option:checked,
select option:checked {
  background-color: var(--gold) !important;
  color: #000000 !important;
}
.dark-textarea { resize: vertical; min-height: 90px; }

/* --- Gallery Dark Grid --- */
.gallery-tab-bar {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-tab-bar::-webkit-scrollbar { display: none; }
.gallery-tab {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 1rem;
  background: transparent;
  border: 1px solid rgba(201,162,75,0.3);
  color: #8a8175;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0806;
}
.gallery-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 0 0 0.5rem;
}
.gallery-dark-item {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-dark-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-dark-item:hover img { transform: scale(1.06); }
.gallery-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 0.6rem 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-dark-item:hover .gallery-dark-overlay { opacity: 1; }
.gallery-dark-tag {
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40px;
  height: 40px;
  background: rgba(201,162,75,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0806;
  font-size: 0.9rem;
  padding-left: 3px;
}

/* --- About Stats --- */
.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,162,75,0.15);
  border-top: 1px solid rgba(201,162,75,0.15);
  border-bottom: 1px solid rgba(201,162,75,0.15);
  margin: 0.5rem 0;
}
.about-stat-item {
  background: #0e0b09;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-stat-number {
  font-family: var(--font-label);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}
.about-stat-label {
  font-size: 0.72rem;
  color: #8a8175;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-label);
}

/* --- Contact Dark Layout --- */
.contact-dark-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 1rem 2rem;
}
.contact-dark-card {
  background: #181412;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.25rem;
}
.contact-dark-card-title {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: #6a6260;
  margin: 0;
  text-transform: uppercase;
}
.contact-info-value {
  font-size: 0.88rem;
  color: var(--ivory);
  margin: 0.15rem 0 0;
  font-weight: 500;
}
.contact-info-sub { font-size: 0.72rem; color: #6a6260; margin: 0; }
.contact-boutique-item {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-boutique-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.contact-boutique-name {
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0 0 0.2rem;
}
.contact-boutique-addr { font-size: 0.78rem; color: #8a8175; margin: 0; line-height: 1.45; }

/* ===== DESKTOP OVERRIDES ===== */
@media (min-width: 992px) {
  /* Split Hero */
  .dark-split-hero { padding: 5rem 0; }
  .dark-split-container {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
  .dark-split-hero.reverse .dark-split-container {
    grid-template-columns: 1fr 1fr;
  }
  .dark-split-hero.reverse .dark-split-content {
    order: 2;
  }
  .dark-split-hero.reverse .dark-split-img-wrap {
    order: 1;
  }
  .dark-split-img {
    aspect-ratio: 16/11;
  }

  /* Section title + steps horizontal padding */
  .dark-section-title { padding: 2.5rem 3rem 1.5rem; }
  .dark-steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; padding: 0 3rem 2.5rem; }

  /* Form */
  .dark-form-wrap {
    margin: 0;
    padding: 2.5rem 3rem;
    border-top: 1px solid rgba(201,162,75,0.15);
    border-bottom: 1px solid rgba(201,162,75,0.15);
    border-radius: 0;
  }
  .dark-form-grid { gap: 1.1rem; }

  /* Gallery */
  .gallery-tab-bar { padding: 0.5rem 3rem 1rem; }
  .gallery-dark-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-dark-item { height: 280px; }

  /* About stats */
  .about-stats-row { grid-template-columns: repeat(4, 1fr); }

  /* Contact */
  .contact-dark-layout { flex-direction: row; gap: 1.5rem; padding: 1.5rem 3rem 3rem; }
  .contact-dark-left { width: 360px; flex-shrink: 0; }
  .contact-dark-right { flex: 1; }

  /* BP grid (packages) */
  .bp-grid { flex-direction: row; }
}

/* Makeup packages grid mobile + desktop padding */
.makeup-pkg-grid { padding: 0 1rem 1.5rem; }
@media (min-width: 992px) {
  .makeup-pkg-grid { padding: 0 3rem 2rem; flex-direction: row; }
}

/* ==========================================================================
   UNIVERSAL MOBILE RESPONSIVE ENHANCEMENTS (Smartphones & Tablets)
   ========================================================================== */
@media (max-width: 767.98px) {
  /* Prevent automatic iOS browser zoom on input focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Container padding tune */
  .container, .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Product Catalog Grid 2 Columns on Mobile */
  .plp-grid, .product-grid-mobile {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .plp-card {
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  .plp-card-img-wrap {
    height: 220px !important;
  }

  .plp-card-body {
    padding: 8px 10px !important;
  }

  .plp-card-name {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
    height: 2.6em !important;
    overflow: hidden !important;
  }

  .plp-card-price {
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
  }

  /* Product Details Page Mobile CTA & Image */
  .product-main-image-wrap {
    height: 380px !important;
  }

  .btn-checkout-action,
  .btn-gold,
  .btn-maroon {
    min-height: 46px !important;
  }

  /* Stepper Bar Mobile Compact */
  .stepper-wrapper {
    padding: 0.5rem 0 !important;
  }

  .step-number {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
  }

  .step-label {
    font-size: 0.65rem !important;
    letter-spacing: 0.05em !important;
  }

  /* Modal Dialog Mobile Viewport Fit */
  .modal-dialog {
    margin: 10px !important;
  }

  .modal-body {
    padding: 1rem !important;
  }

  /* Shop By Category & Spacing overrides for mobile */
  .shop-by-category-section {
    padding: 2rem 0 0 !important;
  }
  .sbc-heading-wrapper {
    padding: 0 1rem 0.5rem !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  .sbc-heading-wrapper .sbc-deco-line,
  .sbc-heading-wrapper .sbc-crown-icon {
    display: none !important;
  }
  .sbc-heading {
    text-align: center !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.15em !important;
    white-space: normal !important;
    width: 100% !important;
  }
  .sbc-subheading {
    text-align: center !important;
    font-size: 0.65rem !important;
    margin-bottom: 1.5rem !important;
    width: 100% !important;
  }

  .promise-section {
    padding: 3rem 0 1rem !important;
  }
  .promise-section .row {
    --bs-gutter-y: 2rem !important;
  }
  .promise-main-title {
    font-size: 1.8rem !important;
  }
  .promise-media-frame img {
    height: 260px !important;
  }
  .promise-icon-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #home-infinite-products {
    padding-top: 1.5rem !important;
  }
}

/* =========================================================
   LUXURY ACCORDION OVERRIDES FOR PRODUCT DETAILS
   ========================================================= */
.luxury-accordion .accordion-item {
  background: rgba(24, 20, 18, 0.7) !important;
  border: 1px solid rgba(201, 162, 75, 0.3) !important;
  border-radius: 8px !important;
  margin-bottom: 0.75rem !important;
  overflow: hidden;
}

.luxury-accordion .accordion-button {
  background: rgba(30, 24, 20, 0.85) !important;
  color: #f3dfb2 !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 1rem 1.25rem;
  box-shadow: none !important;
}

.luxury-accordion .accordion-button:not(.collapsed) {
  background: rgba(75, 12, 22, 0.6) !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(201, 162, 75, 0.35) !important;
}

.luxury-accordion .accordion-button::after {
  filter: invert(80%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(110%);
}

.luxury-accordion .accordion-body {
  background: rgba(12, 10, 8, 0.95) !important;
  color: #ece3d3 !important;
  font-size: 0.88rem;
  line-height: 1.75;
  padding: 1.1rem 1.25rem;
}
