/**
 * THE SNIFF STORY - Component Styles (Pure White Luxury Theme)
 * Mega Menus, Product Cards, Carousels, Cart Drawer, Search Overlay, Mobile Navigation & Toasts
 */

/* ==========================================================
   1. MEGA MENU & FULL-WIDTH DROPDOWNS
   ========================================================== */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  z-index: 99;
}

.nav-item.has-mega:hover .mega-menu-wrapper,
.nav-item.has-mega:focus-within .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-container {
  padding: 36px 24px 42px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 280px;
  gap: 36px;
  align-items: start;
}

.mega-column-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-item-link {
  font-size: 0.86rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.mega-item-link:hover {
  color: var(--gold-deep);
  transform: translateX(4px);
}

.mega-item-icon {
  font-size: 1rem;
}

.mega-featured-card {
  background: #FAFAFA;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 20px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.mega-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-primary);
}

.mega-featured-badge {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.mega-featured-img {
  height: 110px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
}

.mega-featured-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.mega-featured-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.4;
}

/* ==========================================================
   2. PRODUCT CARD (Haute Parfumerie Styling)
   ========================================================== */
.product-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
  border-radius: 4px;
  overflow: hidden;
}

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

.product-card-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 115%;
  /* Tall elegant ratio */
  background: #FAFAFA;
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Badges */
.product-badge-group {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge-luxury {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 600;
  border-radius: var(--radius-xs);
  line-height: 1;
}

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

.badge-new {
  background-color: var(--text-primary);
  color: #FFFFFF;
}

.badge-discount {
  background-color: #A33A3A;
  color: #FFFFFF;
}

/* Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wishlist-btn:hover,
.wishlist-btn.active {
  background: #FFFFFF;
  color: #C0392B;
  border-color: #C0392B;
  transform: scale(1.1);
}

/* Quick Add Overlay on Hover */
.product-quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85));
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.product-card-brand {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 4px;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-card-name a:hover {
  color: var(--gold-deep);
}

.product-card-type {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-style: italic;
}

.product-card-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 6px;
}

.product-card-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-card-mrp {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ==========================================================
   3. NEW ARRIVALS SHOWCASE & 5-CARD CAROUSEL
   ========================================================== */
.new-arrivals-showcase-section,
.bestsellers-showcase-section {
  background-color: #FDFBF7 !important;
  background-image: none;
  padding: 64px 0 76px;
  position: relative;
}

.new-arrivals-header-wrap {
  position: relative;
  margin-bottom: 36px;
  text-align: center;
}

.new-arrivals-title-center {
  max-width: 720px;
  margin: 0 auto;
}

.new-arrivals-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9C7A3C;
  font-weight: 600;
  margin-bottom: 8px;
}

.new-arrivals-heading {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #141E28;
  margin: 0 0 10px 0;
  line-height: 1.15;
}

.new-arrivals-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 10px auto;
}

.na-divider-line {
  width: 44px;
  height: 1px;
  background: #C9A96A;
  opacity: 0.75;
}

.na-divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C9A96A;
}

.new-arrivals-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #635E56;
  margin: 0;
}

.new-arrivals-view-all {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8C6D3B;
  text-decoration: none;
  border-bottom: 1px solid #C4A77D;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.new-arrivals-view-all:hover {
  color: #553E1B;
  border-color: #553E1B;
}

.na-carousel-wrapper {
  position: relative;
  width: 100%;
}

.na-product-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px 20px;
}

.na-product-carousel::-webkit-scrollbar {
  display: none;
}

.na-item-col {
  flex: 0 0 calc(20% - 12.8px);
  min-width: 220px;
  scroll-snap-align: start;
}

.na-btn-prev {
  left: -18px;
}

.na-btn-next {
  right: -18px;
}

/* Luxury Card Anatomy */
.product-card-luxury {
  background: #FFFFFF;
  border: 1px solid #EAE3D6;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card-luxury:hover {
  border-color: #C4A77D;
  box-shadow: 0 12px 30px rgba(156, 122, 60, 0.16);
  transform: translateY(-4px);
}

.product-badges-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 4;
  pointer-events: none;
}

.product-badges-wrap .badge-new-pill {
  position: static;
  margin: 0;
}

.badge-new-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1A1A;
  z-index: 4;
  pointer-events: none;
  line-height: 1.2;
}

.badge-new-pill.badge-bestseller {
  color: #8C6D3B;
  border-color: #D6C29E;
  background: #FFFDF9;
}

.badge-new-pill.badge-new {
  color: #1A1A1A;
  border-color: #E5DFD5;
  background: #FFFFFF;
}

.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #EAE3D6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  cursor: pointer;
  z-index: 4;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.card-wishlist-btn:hover,
.card-wishlist-btn.active {
  background: #FFFFFF;
  border-color: #C0392B;
  color: #C0392B;
  transform: scale(1.08);
}

.product-img-box {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #F8F5EE;
}

.product-img-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

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

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

.product-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 60%, rgba(255, 255, 255, 0) 100%);
}

.product-card-luxury:hover .product-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-quick-view {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #141E28;
  color: #141E28;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-quick-view:hover {
  background: #FAF5EB;
  border-color: #9C7A3C;
  color: #9C7A3C;
}

.btn-add-bag {
  width: 100%;
  background: #141E28;
  border: 1px solid #141E28;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-bag:hover {
  background: #9C7A3C;
  border-color: #9C7A3C;
  color: #FFFFFF;
}

.product-info-box {
  padding: 16px 12px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: #FFFFFF;
}

.product-brand-tag {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8C7352;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.product-title-wrap {
  margin: 0 0 2px 0;
  line-height: 1.25;
  width: 100%;
}

.product-title-link {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.product-title-link:hover {
  color: #9C7A3C;
}

.product-conc-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: #7A7268;
  margin-bottom: 8px;
  display: block;
}

.product-rating-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #C9A96A;
  margin-bottom: 8px;
}

.product-rating-box .reviews-count-num {
  font-size: 0.72rem;
  color: #888888;
  margin-left: 2px;
}

.product-price-box {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.price-mrp {
  font-size: 0.86rem;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 400;
}

@media (max-width: 1280px) {
  .na-item-col {
    flex: 0 0 calc(25% - 12px);
  }
}

@media (max-width: 992px) {
  .na-item-col {
    flex: 0 0 calc(33.333% - 11px);
  }

  .new-arrivals-view-all {
    position: static;
    display: inline-block;
    margin-top: 14px;
  }
}

@media (max-width: 600px) {
  .na-item-col {
    flex: 0 0 calc(50% - 8px);
    min-width: 165px;
  }

  .new-arrivals-heading {
    font-size: 2.1rem;
  }
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.product-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 20px;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item-col {
  flex: 0 0 calc(20% - 19.2px);
  min-width: 230px;
  scroll-snap-align: start;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #FFFFFF;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

/* ==========================================================
   4. CHOOSE YOUR PATH - THE FOUR REALMS GALLERY CARDS
   ========================================================== */
.galleries-showcase-section {
  background-color: #FAF8F5;
  background-image: radial-gradient(circle at 10% 20%, rgba(240, 235, 225, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(245, 238, 226, 0.4) 0%, transparent 50%);
  padding: 95px 0 105px;
  position: relative;
}

.gallery-section-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #A88648;
  font-weight: 500;
  margin-bottom: 0;
}

.gallery-eyebrow-divider {
  width: 52px;
  height: 1px;
  background-color: #C9A96A;
  margin: 12px auto 18px;
  opacity: 0.75;
}

.gallery-section-heading {
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #1A1A1A;
  font-family: var(--font-serif);
  margin: 0;
  line-height: 1.2;
}

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

.realm-box-card {
  background: #FFFFFF;
  border: 1px solid #EAE3D6;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.realm-box-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #D4AF37;
}

.realm-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #F8F5EE;
}

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

.realm-box-card:hover .realm-img {
  transform: scale(1.04);
}

.realm-emblem-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF7F2;
  border: 1px solid #EAE3D6;
  color: #B59358;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -22px auto 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.realm-box-card:hover .realm-emblem-badge {
  transform: scale(1.08);
  background: #FFFDF9;
  color: #8C6A2E;
}

.realm-card-body {
  padding: 22px 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: #FFFFFF;
}

.realm-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1A1A;
  line-height: 1.25;
  margin: 0 0 6px 0;
  min-height: auto;
  display: block;
}

.realm-card-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #4A4A4A;
  margin: 0 0 14px 0;
  line-height: 1.4;
  text-transform: none;
}

.realm-card-divider {
  width: 38px;
  height: 1px;
  background-color: #D8C39A;
  margin: 0 auto 16px;
  opacity: 0.85;
}

.realm-enter-btn {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A88648;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.realm-box-card:hover .realm-enter-btn {
  color: #6D501E;
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .realms-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .realms-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .realm-img-wrap {
    height: 240px;
  }

  .gallery-section-heading {
    font-size: 1.7rem;
  }
}

.gallery-card:hover .gallery-card-btn::after {
  transform: translateX(4px);
}

/* ==========================================================
   5. DISCOVERY SHOWCASE SECTION (Moments, Smells, Personalities)
   ========================================================== */
.discover-showcase-section {
  position: relative;
  background-color: #FAF8F5;
  background-image: linear-gradient(to bottom, rgba(250, 248, 245, 0.15) 0%, rgba(250, 248, 245, 0.25) 100%), url('../images/discovery/bg-clean-scene.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 85px 0 95px;
  overflow: hidden;
  transition: background-image 0.4s ease-in-out;
}

.discover-showcase-section.tab-moment,
.discover-showcase-section.tab-smell,
.discover-showcase-section.tab-personality {
  background-image: linear-gradient(to bottom, rgba(250, 248, 245, 0.15) 0%, rgba(250, 248, 245, 0.25) 100%), url('../images/discovery/bg-clean-scene.jpg');
}

.discovery-header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  text-align: center;
}

.discovery-side-tag {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #9C7A3C;
  line-height: 1.35;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.discovery-side-tag.side-tag-left {
  left: 0;
  text-align: left;
  padding-left: 14px;
  border-left: 1px solid rgba(156, 122, 60, 0.45);
}

.discovery-side-tag.side-tag-right {
  right: 0;
  text-align: right;
  padding-right: 14px;
  border-right: 1px solid rgba(156, 122, 60, 0.45);
}

.discovery-center-header {
  text-align: center;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.discovery-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.eyebrow-line {
  width: 44px;
  height: 1px;
  background-color: #C9A96A;
  opacity: 0.8;
}

.eyebrow-text {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #A88648;
  font-weight: 600;
}

.discovery-main-title {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 400;
  color: #111827;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
  line-height: 1.15;
}

.discovery-main-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: #B59358;
  font-weight: 400;
}

.discovery-subtitle {
  font-size: 0.94rem;
  color: #555555;
  margin: 0;
}

.discovery-nav-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 26px auto 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.discovery-tab-btn {
  padding: 10px 28px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid #C4A77D;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  color: #6E5327;
  cursor: pointer;
  transition: all 0.25s ease;
}

.discovery-tab-btn:hover {
  background: #FAF3E7;
  border-color: #8C6F42;
  color: #4A3416;
}

.discovery-tab-btn.active {
  background: #825F36;
  border-color: #825F36;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(130, 95, 54, 0.3);
}

.discovery-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.discovery-split-card {
  display: flex;
  flex-direction: row;
  height: 154px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #E7DFC9;
  background: #FAF7F2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.discovery-split-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(156, 122, 60, 0.16);
  border-color: #B59358;
}

.discovery-card-info {
  flex: 1 1 54%;
  padding: 14px 12px 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  z-index: 2;
  background: #FAF7F2;
}

.discovery-card-icon {
  display: flex;
  align-items: center;
  color: #9C7A3C;
}

.discovery-card-icon svg {
  stroke: #9C7A3C;
  width: 20px;
  height: 20px;
}

.discovery-card-title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discovery-card-desc {
  font-size: 0.72rem;
  color: #726A5E;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.discovery-card-link {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9C7A3C;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.discovery-split-card:hover .discovery-card-link {
  color: #6E5018;
  transform: translateX(2px);
}

.discovery-card-photo-wrap {
  flex: 0 0 46%;
  position: relative;
  overflow: hidden;
  background: #EDE6D8;
}

.discovery-card-photo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 22px;
  background: linear-gradient(to right, #FAF7F2 0%, rgba(250, 247, 242, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.discovery-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.discovery-split-card:hover .discovery-card-photo {
  transform: scale(1.08);
}

/* Quote Card in Personality */
.discovery-quote-split-card {
  background: #FAF7F2;
}

.discovery-quote-info {
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
}

.persona-quote-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.persona-quote-line {
  font-family: 'Alex Brush', 'Playfair Display', cursive, serif;
  font-size: 1.55rem;
  line-height: 1.15;
  color: #8C6F42;
}

.persona-quote-underline {
  width: 38px;
  height: 1px;
  background-color: #C4A77D;
  margin-top: 8px;
}

/* Bottom Bar */
.discovery-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-top: 16px;
  padding-top: 4px;
}

.discovery-signature-script {
  font-family: 'Alex Brush', 'Playfair Display', cursive, serif;
  font-size: 2.2rem;
  color: #8C6F42;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Smell tab 3rd row layout */
.grid-smell-layout {
  grid-template-columns: repeat(4, 1fr);
}

.smell-flourish-span {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: relative;
  min-height: 154px;
}

.smell-flourish-art {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.smell-script-text {
  font-family: 'Alex Brush', 'Playfair Display', cursive, serif;
  font-size: 2.4rem;
  color: #8C6F42;
  line-height: 1.15;
}

@media (max-width: 1024px) {
  .discovery-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .smell-flourish-span {
    grid-column: span 2;
  }

  .discovery-signature-script {
    position: static;
    transform: none;
    margin-top: 12px;
  }

  .discovery-bottom-bar.moment-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .discovery-side-tag {
    display: none;
  }
}

@media (max-width: 600px) {
  .discovery-cards-grid {
    grid-template-columns: 1fr;
  }

  .smell-flourish-span {
    grid-column: span 1;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .discovery-main-title {
    font-size: 2.1rem;
  }

  .smell-script-text {
    font-size: 1.8rem;
  }

  .discovery-nav-tabs {
    gap: 8px;
  }

  .discovery-tab-btn {
    padding: 8px 16px;
    font-size: 0.68rem;
  }
}

/* ==========================================================
   5B. CATEGORY SHOWCASE BAR & ICON TILES
   ========================================================== */
.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

@media (min-width: 992px) {
  .category-showcase-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.category-showcase-card {
  background: #FFFFFF;
  border: 1px solid #EAE5DC;
  border-radius: 6px;
  padding: 18px 10px 14px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.category-showcase-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.category-showcase-img-wrap {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #EDE7DE;
  background: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s ease;
}

.category-showcase-card:hover .category-showcase-img-wrap {
  border-color: var(--gold-primary);
  transform: scale(1.06);
}

.category-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-showcase-icon-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #FFFFFF;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: 1px solid #EDE7DE;
}

.category-showcase-title {
  font-family: var(--font-serif);
  font-size: 0.86rem;
  font-weight: 600;
  color: #1A1816;
  line-height: 1.25;
  margin: 0;
}

/* ==========================================================
   6. CART SLIDE-OVER DRAWER
   ========================================================== */
.cart-drawer-overlay,
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 95vw;
  height: 100%;
  background: #FFFFFF;
  box-shadow: var(--shadow-drawer);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0);
}

.mobile-drawer-overlay.open .cart-drawer {
  transform: translateX(0) !important;
}

.cart-drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8F9FA;
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 4px;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.cart-item-img {
  width: 75px;
  height: 90px;
  object-fit: contain;
  background: #FAFAFA;
  border: 1px solid var(--border-light);
  padding: 6px;
  border-radius: var(--radius-xs);
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.2;
}

.cart-item-size {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-item-price {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.qty-btn:hover {
  background: #F3F4F6;
}

.qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.cart-drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border-light);
  background: #F8F9FA;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.cart-summary-row.total {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  border-top: 1px solid var(--border-gold);
  padding-top: 12px;
  margin-top: 4px;
}

/* ==========================================================
   7. SEARCH OVERLAY MODAL
   ========================================================== */
.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.search-modal-card {
  max-width: 780px;
  margin: 60px auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: var(--shadow-modal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-modal-header {
  padding: 24px 32px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-modal-input {
  flex: 1;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  background: transparent;
}

.search-modal-results {
  padding: 28px 32px;
  max-height: 60vh;
  overflow-y: auto;
}

.search-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.search-tag {
  padding: 6px 14px;
  background: #F8F9FA;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-tag:hover {
  border-color: var(--gold-primary);
  color: var(--text-primary);
  background: #FFFFFF;
}

/* ==========================================================
/* ==========================================================
   8. MOBILE DRAWER, ACCORDIONS & DRAWER USER BOX
   ========================================================== */
.mobile-drawer-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  max-width: 88vw;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 8px 0 35px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-drawer-overlay.open .mobile-drawer-inner {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-drawer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.mobile-brand-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  line-height: 1.1;
}

.mobile-brand-sub {
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  display: block;
}

.mobile-drawer-close {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
}

.mobile-drawer-search-wrap {
  padding: 12px 18px;
  background: #F9FAFB;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}

.mobile-drawer-search-input {
  flex: 1;
  border: none;
  font-size: 0.82rem;
  background: transparent;
  color: var(--text-primary);
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #F8F9FA;
  color: var(--gold-deep);
}

.mobile-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.mobile-badge-new {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  background: #111827;
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.mobile-badge-gold {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  background: var(--gold-primary);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* Mobile Accordions */
.mobile-accordion-item {
  border-top: 1px solid var(--border-light);
  margin-top: 4px;
  padding-top: 4px;
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
}

.accordion-chevron {
  font-size: 0.8rem;
  color: var(--gold-deep);
  transition: transform 0.25s ease;
}

.mobile-accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding: 6px 14px 14px;
}

.mobile-accordion-item.open .mobile-accordion-content {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.mobile-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-pill-tag {
  padding: 6px 12px;
  background: #F8F9FA;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-pill-tag:hover,
.mobile-pill-tag:active {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  color: var(--text-primary);
}

/* Patron User Box in Drawer */
.mobile-drawer-user-box {
  background: #F8F9FA;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 16px;
  margin-top: 8px;
}

.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mobile-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111827;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.mobile-user-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.mobile-user-email {
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-user-actions {
  display: flex;
  gap: 8px;
}

.mobile-wa-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E8F8F0;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 6px;
  padding: 12px 14px;
  text-decoration: none;
  margin-top: 6px;
}

/* ==========================================================
   9. FIXED MOBILE BOTTOM NAVIGATION BAR
   ========================================================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  z-index: 900;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.05);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  gap: 3px;
  position: relative;
  flex: 1;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s ease;
}

.mobile-nav-item svg {
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.mobile-nav-item.active {
  color: var(--gold-deep);
  font-weight: 600;
}

.mobile-nav-item.active svg {
  stroke: var(--gold-deep);
  transform: translateY(-1px);
}

.mobile-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-text {
  line-height: 1;
}

/* Floating WhatsApp Concierge */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 850;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

/* Toast Notifications (Floating Top-Center Dynamic Island Style) */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  width: auto;
  max-width: 92vw;
}

.toast {
  pointer-events: auto;
  background: rgba(17, 24, 39, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #FFFFFF;
  border: 1px solid rgba(201, 169, 106, 0.5);
  border-left: 3px solid var(--gold-primary);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: toastDropIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 100%;
}

@keyframes toastDropIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ==========================================================
   10. MOBILE PDP STICKY BUY BAR
   ========================================================== */
.sticky-mobile-buy-bar {
  display: none;
  position: fixed;
  bottom: 60px;
  /* Above bottom nav */
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  z-index: 890;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  animation: slideUpBar 0.25s ease forwards;
}

@keyframes slideUpBar {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.sticky-buy-thumb {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #F9FAFB;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2px;
}

.sticky-buy-title {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.sticky-buy-price {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-deep);
}

/* Media Query Rules */
@media (max-width: 1024px) {
  .carousel-item-col {
    flex: 0 0 calc(33.333% - 16px);
  }

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

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }

  .floating-whatsapp {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .carousel-item-col {
    flex: 0 0 calc(62% - 12px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .search-modal-card {
    margin: 20px 16px;
  }

  .search-modal-header {
    padding: 16px 20px;
  }

  .search-modal-input {
    font-size: 1.1rem;
  }

  .search-modal-results {
    padding: 20px;
  }

  .toast-container {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90vw;
  }
}

/* ==========================================================
   11. TESTIMONIALS SHOWCASE SECTION (Exact Reference Mockup)
   ========================================================== */
.testimonial-showcase-section {
  position: relative;
  background-color: #F8F4EE;
  background-image: linear-gradient(to right, #F8F4EE 0%, rgba(248, 244, 238, 0.98) 42%, rgba(248, 244, 238, 0.35) 60%, rgba(248, 244, 238, 0) 100%),
    url('../images/testimonials/testimonial-showcase-scene.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 46px 0 52px;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 2;
}

.testimonial-layout-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 36px;
  min-height: 330px;
}

.testimonial-content-side {
  max-width: 640px;
  padding-right: 20px;
}

.testimonial-header-wrap {
  margin-bottom: 18px;
}

.testimonial-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9C7A3C;
  margin-bottom: 6px;
}

.testimonial-heading {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #141E28;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.testimonial-divider {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.t-divider-line {
  width: 40px;
  height: 1px;
  background: #C9A96A;
  opacity: 0.75;
}

.t-divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C9A96A;
}

.testimonial-subtitle {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: #555555;
  margin: 0;
  line-height: 1.4;
}

.testimonial-slider-wrap {
  position: relative;
  margin-top: 10px;
}

.testimonial-slides-container {
  position: relative;
  min-height: 155px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-quote-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 0.85;
  color: #C9A96A;
  flex-shrink: 0;
  user-select: none;
}

.testimonial-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.testimonial-author-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.testimonial-avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  background: #EDE5D8;
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-name {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: #141E28;
  margin: 0;
  font-style: italic;
}

.testimonial-product-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9C7A3C;
}

.testimonial-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #FAF5EC;
  border: 1px solid #D8C8B0;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7A5E38;
  margin-left: 8px;
}

.testimonial-badge-verified svg {
  color: #8C6D3B;
}

.testimonial-nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 2px;
}

.testimonial-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #8C6D3B;
  background: rgba(255, 255, 255, 0.6);
  color: #8C6D3B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-nav-btn:hover {
  background: #8C6D3B;
  color: #FFFFFF;
  transform: scale(1.05);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D8C8B0;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: #8C6D3B;
  width: 10px;
  height: 10px;
}

@media (max-width: 991px) {
  .testimonial-showcase-section {
    background-image: linear-gradient(to bottom, #F8F4EE 0%, rgba(248, 244, 238, 0.95) 70%, rgba(248, 244, 238, 0.8) 100%),
      url('../images/testimonials/testimonial-showcase-scene.jpg');
    background-position: center bottom;
    padding: 70px 0 80px;
  }

  .testimonial-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-heading {
    font-size: 2.2rem;
  }

  .testimonial-quote-text {
    font-size: 1.15rem;
  }

  .testimonial-content-side {
    max-width: 100%;
    padding-right: 0;
  }
}

/* ==========================================================
   26. EXPLORE BY NOTES (The Fragrance Library Showcase)
   ========================================================== */
.notes-showcase-section {
  background-color: #FAF8F5;
  padding: 36px 0 42px;
  position: relative;
  overflow: hidden;
}

.notes-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.notes-header-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.notes-eyebrow {
  display: block;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9C7A3C;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.notes-heading {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 2.15rem;
  font-weight: 800;
  color: #141E28;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.2;
}

.notes-subtitle {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: start;
}

.note-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 0 4px;
  position: relative;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.note-card-item:hover {
  background: none !important;
  box-shadow: none !important;
}

.note-img-wrap {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  background: none !important;
}

.note-img {
  max-height: 115px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.05));
  mix-blend-mode: multiply;
}

.note-card-item:hover .note-img {
  transform: translateY(-5px) scale(1.08);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.12));
}

.note-card-title {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #141E28;
  margin: 0 0 3px;
  transition: color 0.25s ease;
}

.note-card-item:hover .note-card-title {
  color: #9C7A3C;
}

.note-card-desc {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.8rem;
  color: #717D8A;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .notes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 14px;
  }

  .notes-heading {
    font-size: 1.95rem;
  }
}

@media (max-width: 580px) {
  .notes-showcase-section {
    padding: 28px 0 34px;
  }

  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }

  .notes-heading {
    font-size: 1.65rem;
  }

  .notes-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .note-img-wrap {
    height: 100px;
  }

  .note-img {
    max-height: 90px;
  }
}

/* ==========================================================
   27. WHATSAPP CONCIERGE BANNER (Exact Reference Mockup)
   ========================================================== */
.whatsapp-cta-section {
  background-color: #FAF8F5;
  padding: 30px 0 40px;
}

.whatsapp-banner-card {
  position: relative;
  background-color: #E8EDE4;
  background-image: url('../images/banners/whatsapp-banner-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  padding: 46px 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 36px;
  overflow: hidden;
}

.wa-banner-left {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-left: 55px;
}

.wa-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #8C6D3B;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wa-banner-heading {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: #141E28;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
}

.wa-banner-subtitle {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.94rem;
  color: #556575;
  line-height: 1.5;
  margin: 0;
}

.wa-banner-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
}

.wa-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.94rem;
  font-weight: 600;
  color: #1B2B25;
}

.wa-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #235443;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.wa-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1B3E33;
  color: #FFFFFF !important;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(27, 62, 51, 0.2);
}

.wa-chat-btn:hover {
  background: #143027;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 62, 51, 0.32);
}

.wa-chat-btn svg {
  flex-shrink: 0;
}

.wa-btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.wa-chat-btn:hover .wa-btn-arrow {
  transform: translateX(3px);
}

.wa-disclaimer {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.76rem;
  color: #718092;
  margin-left: 2px;
}

@media (max-width: 991px) {
  .whatsapp-banner-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
    background-position: left center;
  }

  .wa-banner-left {
    padding-left: 10px;
  }

  .wa-banner-right {
    padding-left: 0;
  }

  .wa-banner-heading {
    font-size: 1.9rem;
  }
}

@media (max-width: 580px) {
  .whatsapp-cta-section {
    padding: 20px 0 30px;
  }

  .whatsapp-banner-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .wa-banner-left {
    padding-left: 0;
  }

  .wa-banner-heading {
    font-size: 1.6rem;
  }

  .wa-chat-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================
   28. THE ART OF GIFTING (Exact Reference Showcase Layout)
   ========================================================== */
.gifting-showcase-section {
  background-color: #F2EFEE;
  padding: 55px 0 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gifting-showcase-grid {
  display: grid;
  grid-template-columns: 280px 1fr 340px;
  align-items: center;
  gap: 36px;
}

.gifting-left-col {
  padding-right: 10px;
}

.gifting-eyebrow {
  display: block;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9C7A3C;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gifting-heading {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: 2.35rem;
  font-weight: 800;
  color: #141E28;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.gifting-desc {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.94rem;
  color: #556575;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.gifting-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9C7A3C;
  text-decoration: none;
  transition: all 0.25s ease;
}

.gifting-cta-link:hover {
  color: #7D612F;
}

.gifting-cta-link .g-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.gifting-cta-link:hover .g-arrow {
  transform: translateX(4px);
}

.gifting-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gifting-center-img {
  max-height: 320px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.06));
  transition: transform 0.35s ease;
}

.gifting-center-col:hover .gifting-center-img {
  transform: scale(1.03);
}

.gifting-right-col {
  border-left: 1px solid rgba(197, 168, 128, 0.45);
  padding-left: 36px;
}

.gifting-features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.g-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.g-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #C4A77D;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9C7A3C;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.g-feature-item:hover .g-icon-circle {
  border-color: #9C7A3C;
  background: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(156, 122, 60, 0.15);
}

.g-feature-text {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #141E28;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .gifting-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gifting-right-col {
    border-left: none;
    border-top: 1px solid rgba(197, 168, 128, 0.45);
    padding-left: 0;
    padding-top: 28px;
  }

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

@media (max-width: 580px) {
  .gifting-showcase-section {
    padding: 36px 0 42px;
  }

  .gifting-heading {
    font-size: 1.95rem;
  }

  .gifting-features-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================
   29. INFLUENCER REVIEWS (Real Voices Video Showcase)
   ========================================================== */
.influencer-reviews-section {
  background-color: #FAF8F5;
  padding: 65px 0 75px;
  position: relative;
}

.influencer-header-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.influencer-eyebrow {
  display: block;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9C7A3C;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.influencer-heading {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 2.35rem;
  font-weight: 800;
  color: #141E28;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

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

.influencer-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #EAE5DE;
  box-shadow: 0 8px 24px rgba(20, 30, 40, 0.04);
  padding: 12px 12px 18px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.influencer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(20, 30, 40, 0.08);
  border-color: #D6C7B2;
}

.influencer-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #141E28;
}

.influencer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.influencer-card:hover .influencer-img {
  transform: scale(1.05);
}

.influencer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(20, 30, 40, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.influencer-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141E28;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  padding-left: 2px;
}

.influencer-card:hover .influencer-play-btn {
  background: #FFFFFF;
  transform: translate(-50%, -50%) scale(1.12);
  color: #9C7A3C;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.influencer-body {
  padding: 14px 4px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.influencer-quote {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-style: italic;
  font-size: 0.92rem;
  color: #242E38;
  line-height: 1.48;
  margin: 0 0 12px;
  flex-grow: 1;
}

.influencer-name {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #141E28;
  margin: 0 0 3px;
}

.influencer-tag {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.74rem;
  font-weight: 500;
  color: #9C7A3C;
  margin: 0;
}

@media (max-width: 1024px) {
  .influencer-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .influencer-heading {
    font-size: 2rem;
  }
}

@media (max-width: 580px) {
  .influencer-reviews-section {
    padding: 45px 0 55px;
  }

  .influencer-cards-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 18px;
  }

  .influencer-heading {
    font-size: 1.7rem;
  }
}

/* ==========================================================
   30. CURATED HOUSES DUAL MARQUEE SHOWCASE (Exact Reference)
   ========================================================== */
.curated-houses-section {
  background-color: #FAF8F5;
  padding: 48px 0 54px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.curated-houses-header {
  text-align: center;
  margin-bottom: 30px;
}

.curated-houses-eyebrow {
  display: inline-block;
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: #9C7A3C;
  text-transform: uppercase;
  position: relative;
}

.curated-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Gradient Fade Edges */
.curated-marquee-wrapper::before,
.curated-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 5;
  pointer-events: none;
}

.curated-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #FAF8F5 0%, rgba(250, 248, 245, 0.8) 40%, rgba(250, 248, 245, 0) 100%);
}

.curated-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #FAF8F5 0%, rgba(250, 248, 245, 0.8) 40%, rgba(250, 248, 245, 0) 100%);
}

.curated-marquee-row {
  width: 100%;
  overflow: hidden;
  display: flex;
  user-select: none;
}

.curated-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

/* Pause animation on hover */
.curated-marquee-row:hover .curated-marquee-track {
  animation-play-state: paused;
}

/* Row 1: Left to Right */
.row-ltr .curated-marquee-track {
  animation: marquee-ltr 36s linear infinite;
}

/* Row 2: Right to Left */
.row-rtl .curated-marquee-track {
  animation: marquee-rtl 36s linear infinite;
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Brand Card Tile */
.curated-brand-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 76px;
  margin: 0 10px;
  padding: 10px 22px;
  background: #FFFFFF;
  border: 1px solid #EFECE6;
  border-radius: 8px;
  text-decoration: none;
  filter: grayscale(100%) opacity(0.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

/* Hover State: Full Color, Elevated, Golden Glow, Highlighted */
.curated-brand-card:hover {
  filter: grayscale(0%) opacity(1);
  border-color: #C5A880;
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(156, 122, 60, 0.16), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px) scale(1.06);
  z-index: 10;
}

.brand-crest-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
  color: #718096;
  transition: all 0.3s ease;
}

.brand-crest-svg {
  display: block;
}

.curated-brand-card:hover .brand-crest-wrap {
  color: #9C7A3C;
  transform: scale(1.15);
}

.brand-logo-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #141E28;
  text-transform: uppercase;
  line-height: 1.15;
  transition: color 0.3s ease;
}

.curated-brand-card:hover .brand-logo-name {
  color: #0F1720;
}

.brand-logo-sub {
  font-family: var(--font-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #9C7A3C;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1;
}

/* Specialized Brand Typographic Aesthetics */
.curated-brand-card.font-sans .brand-logo-name {
  font-family: var(--font-sans, "Inter", -apple-system, sans-serif);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.curated-brand-card.font-sans-bold .brand-logo-name {
  font-family: var(--font-sans, "Inter", -apple-system, sans-serif);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.curated-brand-card.font-serif .brand-logo-name,
.curated-brand-card.font-serif-crest .brand-logo-name {
  font-family: var(--font-serif, "Playfair Display", "Cinzel", "Bodoni MT", Didot, Georgia, serif);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.curated-brand-card.font-mono .brand-logo-name {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  .curated-houses-section {
    padding: 36px 0 42px;
  }

  .curated-houses-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
  }

  .curated-brand-card {
    min-width: 150px;
    height: 68px;
    padding: 8px 16px;
    margin: 0 7px;
  }

  .brand-logo-name {
    font-size: 0.82rem;
  }

  .brand-logo-sub {
    font-size: 0.55rem;
  }

  .curated-marquee-wrapper::before,
  .curated-marquee-wrapper::after {
    width: 80px;
  }
}