/* ==========================================================================
   BING ESSENCE - Luxury E-Commerce Custom Stylesheet
   International Standard Design & Responsive Framework
   ========================================================================== */

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

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Color Palette */
  --color-primary: #121619;
  --color-secondary: #1a202c;
  --color-gold: #d4af37;
  --color-gold-hover: #c59b27;
  --color-gold-light: #f8f4e6;
  --color-accent: #b89767;
  --color-bg-light: #fcfbf9;
  --color-card-bg: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

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

/* --------------------------------------------------------------------------
   3. STICKY NAVBAR & ANIMATED HAMBURGER ICON
   -------------------------------------------------------------------------- */
.navbar-bing {
  z-index: 1050 !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-fast);
}

.navbar-bing.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-top-row {
  padding: 12px 0;
  transition: var(--transition-fast);
}

.navbar-bing.scrolled .nav-top-row {
  padding: 6px 0;
}

.nav-bottom-row {
  background: linear-gradient(180deg, #2a3038 0%, #232830 100%);
  padding: 4px 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-bottom-row::-webkit-scrollbar {
  display: none;
}

.nav-bottom-row .nav-item {
  flex-shrink: 0;
}

.nav-bottom-row .nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
  white-space: nowrap;
}

.nav-bottom-row .nav-link-custom:hover,
.nav-bottom-row .nav-link-custom.active {
  color: var(--color-gold) !important;
}

@media (max-width: 1199.98px) {
  .nav-bottom-row .nav-link-custom {
    font-size: 0.78rem;
    padding: 6px 10px !important;
    letter-spacing: 0.05em;
  }
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.brand-logo span {
  color: var(--color-gold);
  font-weight: 300;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .brand-logo-img {
    height: 46px;
  }
}

.nav-link-custom {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary) !important;
  padding: 8px 16px !important;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 70%;
}

.nav-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: var(--transition-fast);
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.nav-icon-btn:hover {
  background: #ffffff;
  color: var(--color-gold-hover);
  border-color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* CSS Animated Hamburger Toggle Button with Staggered Line Widths */
.animated-hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1050;
}

.animated-hamburger span {
  display: block;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

/* Asymmetric / Staggered Line Widths for Premium Modern UI */
.animated-hamburger span:nth-child(1) {
  width: 100%;
}

.animated-hamburger span:nth-child(2) {
  width: 60%;
}

.animated-hamburger span:nth-child(3) {
  width: 80%;
}

/* Elegant Hover State Expansion */
.animated-hamburger:hover span {
  background: var(--color-gold);
}

.animated-hamburger:hover span:nth-child(2) {
  width: 85%;
}

.animated-hamburger:hover span:nth-child(3) {
  width: 100%;
}

/* Active Transformation to 'X' Close Icon */
.animated-hamburger.active span:nth-child(1) {
  width: 100%;
  transform: translateY(8.5px) rotate(45deg);
  background: var(--color-gold);
}

.animated-hamburger.active span:nth-child(2) {
  width: 100%;
  opacity: 0;
  transform: translateX(-10px);
}

.animated-hamburger.active span:nth-child(3) {
  width: 100%;
  transform: translateY(-8.5px) rotate(-45deg);
  background: var(--color-gold);
}

/* Offcanvas Mobile Menu Styling */
.offcanvas-mobile-menu {
  width: 320px !important;
}

.mobile-menu-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--color-gold);
  padding-left: 6px;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION (CLEAN MAIN SLIDER & CLEAN DUAL PROMO BANNERS)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  padding: 20px 0;
  background: var(--color-bg-light);
}

.hero-slider-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-primary);
}

/* Clean Slider Image Link Wrapper */
.hero-slide-link {
  display: block;
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
}

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

.hero-slide-link:hover .hero-slide-img {
  transform: scale(1.03);
}

/* Stylish Arrow Controls for Desktop Slider - Hidden by default, Shown on Hover */
.stylish-carousel-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 22, 25, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.75);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  font-size: 1.1rem;
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.25s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

/* On Desktop: Show arrows when hovering over hero slider wrapper */
@media (min-width: 992px) {
  .hero-slider-wrapper:hover .stylish-carousel-control {
    opacity: 1;
    pointer-events: auto;
  }
}

.stylish-carousel-control:hover {
  background: var(--color-gold);
  color: #ffffff;
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev.stylish-carousel-control {
  left: 20px;
}

.carousel-control-next.stylish-carousel-control {
  right: 20px;
}

/* Stylish Dotted Indicators Navigation - Same fixed size, active only changes color */
.stylish-carousel-indicators {
  margin-bottom: 20px;
  gap: 10px;
  z-index: 5;
}

.stylish-carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.45);
  border: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
  opacity: 0.8;
  padding: 0;
}

.stylish-carousel-indicators .active {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  opacity: 1;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Right Side Stacked Dual Promo Banners - Clean Image Only */
.promo-banner-card {
  position: relative;
  height: 246px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  background: var(--color-primary);
  display: block;
}

.promo-banner-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

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

.btn-gold {
  background: var(--color-gold);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.btn-outline-light-custom {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light-custom:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-gold-light);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. CATEGORIES SHOWCASE GRID
   -------------------------------------------------------------------------- */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
}

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

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
  color: #ffffff;
  transition: var(--transition-fast);
}

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

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
}

.category-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-link i,
.category-link svg.lucide {
  transition: transform 0.3s ease;
}

.category-card:hover .category-link i,
.category-card:hover .category-link svg.lucide {
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   CURATED COLLECTIONS SLIDER STYLING
   -------------------------------------------------------------------------- */
.collections-slider-container {
  position: relative;
  padding: 0 45px;
}

.collections-slider-track-window {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0 -12px;
  padding: 10px 0;
}

.collections-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.collections-slide-item {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (max-width: 991.98px) {
  .collections-slide-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .collections-slider-arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .collections-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .collections-slider-container {
    padding: 0;
  }
  .collections-slider-prev {
    display: none;
  }
  .collections-slider-next {
    display: none !important;
  }
}

.collections-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.collections-slider-arrow:hover {
  background: var(--color-gold);
  color: #000000;
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.collections-slider-prev {
  left: -10px;
}

.collections-slider-next {
  right: -10px;
}

.collections-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.collections-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.collections-slider-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--color-gold);
}

/* --------------------------------------------------------------------------
   7. PRODUCT CARDS & SHOWCASE
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 40px;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.nav-tabs-custom {
  border-bottom: none;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.nav-tabs-custom .nav-link {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 24px;
  background: #ffffff;
  transition: var(--transition-fast);
}

.nav-tabs-custom .nav-link:hover,
.nav-tabs-custom .nav-link.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* Product Card Styling */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  position: relative;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-badge-wrapper {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-sale {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge-new {
  background: var(--color-gold);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge-status-top-right {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-trending {
  background: #090c0e;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.badge-new-arrival {
  background: linear-gradient(135deg, #f3e092 0%, var(--color-gold) 100%);
  color: #000000;
  font-weight: 800;
}

.badge-top-seller {
  background: #1e293b;
  color: #f3e092;
  border: 1px solid rgba(243, 224, 146, 0.4);
}

/* Showcase Section Filter Tabs */
.showcase-filter-tabs {
  display: inline-flex;
  background: #f8fafc;
  padding: 6px;
  border-radius: 50rem;
  border: 1px solid var(--color-border);
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.showcase-filter-tabs .nav-link {
  color: #64748b;
  background: transparent;
  border-radius: 50rem;
  padding: 8px 22px;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.showcase-filter-tabs .nav-link:hover {
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
}

.showcase-filter-tabs .nav-link.active {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 4px 12px rgba(13, 17, 20, 0.25);
  font-weight: 700;
}

.product-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f8fafc;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Quick Action Hover Bar */
.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.product-card:hover .product-actions {
  bottom: 0;
}

.action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
}

.action-btn:hover {
  background: var(--color-gold);
  color: #ffffff;
}

.product-body {
  padding: 20px;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.product-rating {
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-rating svg.lucide {
  fill: currentColor;
}

.product-rating span {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  margin-left: 4px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

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

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

.badge-discount-top-left {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.wishlist-btn-top-right {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: var(--transition-fast);
  cursor: pointer;
}

.wishlist-btn-top-right:hover {
  background: #ffffff;
  color: #ef4444;
  transform: scale(1.1);
}

.wishlist-btn-top-right.active,
.wishlist-btn-top-right svg.filled {
  color: #ef4444;
  fill: #ef4444;
}

.wishlist-btn-top-right svg,
.wishlist-btn-top-right i {
  width: 18px;
  height: 18px;
  stroke-width: 2.2px;
  pointer-events: none;
}

.product-card-actions-grid {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-add-cart,
.btn-buy-now {
  flex: 1;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 9px 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
  cursor: pointer;
}

.btn-add-cart svg,
.btn-buy-now svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2px;
}

.btn-add-cart {
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid var(--color-primary);
}

.btn-add-cart:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #ffffff;
}

.btn-buy-now {
  background: var(--color-gold);
  color: #ffffff;
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.btn-buy-now:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #ffffff;
}

/* Mobile (small phones): always 2 product cards per row, compact sizing */
@media (max-width: 575.98px) {
  .row {
    --bs-gutter-x: 0.5rem;
  }

.collections-slider-prev {
  display: none;
}

  .product-grid-item,
  .row > div:has(> .product-card) {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product-img-box {
    height: 170px;
  }

  .product-body {
    padding: 12px;
  }

  .product-category {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
  }

  .product-title {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .product-rating {
    font-size: 0.65rem;
    margin-bottom: 6px;
    gap: 2px;
  }

  .product-price {
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .price-current {
    font-size: 0.95rem;
  }

  .price-old {
    font-size: 0.75rem;
  }

  .product-card-actions-grid {
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    align-items: stretch;
  }

  .btn-add-cart,
  .btn-buy-now {
    width: 100%;
    font-size: 0.62rem;
    padding: 8px 4px;
    gap: 3px;
    letter-spacing: 0;
  }

  .btn-add-cart svg,
  .btn-buy-now svg {
    width: 11px;
    height: 11px;
  }

  .product-actions {
    display: none !important;
  }

  .wishlist-btn-top-right {
    width: 28px;
    height: 28px;
    top: 8px;
    right: 8px;
    font-size: 0.75rem;
  }

  .badge-discount-top-left {
    font-size: 0.55rem;
    padding: 4px 8px;
    top: 8px;
    left: 8px;
  }
}

/* Product Details Page Styles */
.thumbnail-btn {
  border: 2px solid transparent !important;
  transition: var(--transition-fast);
  cursor: pointer;
}

.thumbnail-btn.active-thumb,
.thumbnail-btn:hover {
  border-color: var(--color-gold) !important;
}

.active-size-btn {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border-color: var(--color-primary) !important;
}

.extra-small {
  font-size: 0.72rem;
}

/* Minimal Luxury Breadcrumbs */
.minimal-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.minimal-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #a0a0a0;
  padding: 0 0.4rem;
}

.minimal-breadcrumb a {
  color: #707070;
  text-decoration: none;
  transition: var(--transition-fast);
}

.minimal-breadcrumb a:hover {
  color: var(--color-gold);
}

.minimal-breadcrumb .active {
  color: var(--color-gold);
  font-weight: 600;
}

/* Infinite Auto-Looping Testimonial Carousel */
.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0 25px 0;
}

.testimonial-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialInfiniteScroll 35s linear infinite;
}

.testimonial-slider-wrapper:hover .testimonial-slider-track {
  animation-play-state: paused;
}

.testimonial-card-slide {
  width: 360px;
  flex-shrink: 0;
}

@keyframes testimonialInfiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Dual-Thumb Single Bar Range Slider */
.dual-range-slider-wrapper {
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.dual-range-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 3px;
  z-index: 1;
}

.dual-range-progress {
  position: absolute;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 3px;
  z-index: 2;
}

.dual-range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 3;
  margin: 0;
  border: none !important;
  outline: none !important;
}

.dual-range-input::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-gold);
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease;
}

.dual-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--color-gold);
  border-color: var(--color-primary);
}

.dual-range-input::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-gold);
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* SweetAlert2 Toast Custom Luxury Styling */
.swal2-container.swal2-top-end {
  z-index: 10000 !important;
}

.swal2-toast {
  font-family: var(--font-sans) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  background: #ffffff !important;
}

.swal2-toast .swal2-title {
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  color: var(--color-primary) !important;
}

/* --------------------------------------------------------------------------
   8. BRAND STORY / EDITORIAL SECTION
   -------------------------------------------------------------------------- */
.brand-story-section {
  padding: 90px 0;
  background: #ffffff;
}

.story-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-primary);
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  margin: 25px 0;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS & REVIEWS
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--color-border);
  height: 100%;
}

.reviewer-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   11. NEWSLETTER
   -------------------------------------------------------------------------- */

.newsletter-box {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #090c0e;
  color: #cbd5e1;
  font-size: 0.875rem;
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}

.site-footer p,
.site-footer span,
.site-footer small,
.site-footer div,
.site-footer .text-muted {
  color: #cbd5e1;
}

.site-footer a.text-muted,
.site-footer a:not(.footer-social-btn) {
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.site-footer a:not(.footer-social-btn):hover,
.site-footer a.text-muted:hover,
.site-footer a.hover-gold:hover {
  color: var(--color-gold) !important;
}

/* Premium Quick Links Tabs Container */
.footer-quick-tabs-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 50px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.footer-quick-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-quick-tabs-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-quick-tabs-title i {
  color: var(--color-gold);
}

.footer-quick-tabs {
  gap: 8px;
  border: none;
}

.footer-quick-tabs .nav-link {
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50rem;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer-quick-tabs .nav-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
}

.footer-quick-tabs .nav-link.active {
  color: #000000;
  background: linear-gradient(135deg, #f3e092 0%, var(--color-gold) 100%);
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  font-weight: 700;
}

.footer-tab-content {
  padding-top: 10px;
}

.footer-tab-link-group-title {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tab-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-tab-links li {
  margin-bottom: 8px;
}

.footer-tab-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.825rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-tab-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-tab-links a:hover::before {
  content: "›";
  color: var(--color-gold);
  margin-right: 4px;
  font-weight: bold;
}

.footer-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  margin-top: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-btn:hover,
.footer-social-btn:hover i {
  background: var(--color-gold) !important;
  color: #000000 !important;
  border-color: var(--color-gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-concierge-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 1.7rem;
  color: #cbd5e1;
  align-items: center;
}

/* --------------------------------------------------------------------------
   13. OFFCANVAS CART & TOAST NOTIFICATION STYLING
   -------------------------------------------------------------------------- */
.offcanvas-cart {
  width: 420px !important;
}

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

.cart-free-shipping-bar {
  background: var(--color-gold-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
}

.toast-custom {
  background: var(--color-primary);
  color: #ffffff;
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-slide-link {
    height: 440px;
  }
  .promo-banner-card {
    height: 220px;
  }
  .offcanvas-cart {
    width: 100% !important;
  }

  /* Totally hide arrow buttons on mobile devices (< 992px) */
  .stylish-carousel-control {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 575.98px) {
  .hero-slide-link {
    height: 250px;
  }
  .section-title {
    font-size: 1.9rem;
  }
}

/* --------------------------------------------------------------------------
   FIXED NAVBAR SEARCH INPUT — ANIMATED TYPING
   -------------------------------------------------------------------------- */
.nav-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 280px;
}

.nav-search-icon {
  position: absolute;
  left: 12px;
  color: var(--color-gold);
  font-size: 0.85rem;
  pointer-events: none;
}

.nav-search-input {
  width: 100%;
  height: 38px;
  padding: 0 14px 0 34px;
  font-size: 0.825rem;
  color: var(--color-primary);
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 50rem;
  outline: none;
  transition: var(--transition-fast);
}

.nav-search-input::placeholder {
  color: #94a3b8;
}

.nav-search-input:focus {
  background: #fff;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

/* Mobile (below md): second row switches to white search-only bar.
   Visibility toggling handled by Bootstrap d-* utilities. */
@media (max-width: 767.98px) {
  .nav-bottom-row {
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 8px 0;
  }

  .mobile-nav-search {
    width: 100%;
    padding: 0 12px;
  }
}

/* --------------------------------------------------------------------------
   LUCIDE ICONS (PREMIUM STROKE SET) — GLOBAL SIZING
   -------------------------------------------------------------------------- */
svg.lucide {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

svg.lucide.filled {
  fill: currentColor;
}

.empty-cart-icon {
  width: 48px !important;
  height: 48px !important;
}

/* ==========================================================================
   CIRCULAR PROGRESS BACK TO TOP BUTTON
   ========================================================================== */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.25);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 300ms ease;
  background-color: #090c0e;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: #d4af37;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.progress-wrap .progress-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  z-index: 2;
  transition: color 200ms ease;
}

.progress-wrap .progress-icon svg.lucide {
  width: 20px;
  height: 20px;
}

.progress-wrap:hover .progress-icon {
  color: #ffffff;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 64px !important;
  }
  .progress-wrap {
    right: 20px;
    bottom: 78px !important;
    height: 42px;
    width: 42px;
  }
  .progress-wrap .progress-icon {
    width: 18px;
    height: 18px;
  }
}

/* --------------------------------------------------------------------------
   FIXED MOBILE BOTTOM NAVIGATION BAR
   -------------------------------------------------------------------------- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(18, 22, 25, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 1040;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 0;
  width: 20%;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mobile-bottom-nav-item i,
.mobile-bottom-nav-item svg.lucide {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  transition: all 0.2s ease;
  color: #94a3b8;
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item.active {
  color: var(--color-gold) !important;
}

.mobile-bottom-nav-item:hover i,
.mobile-bottom-nav-item.active i,
.mobile-bottom-nav-item:hover svg.lucide,
.mobile-bottom-nav-item.active svg.lucide {
  transform: translateY(-2px);
  color: var(--color-gold) !important;
}

.mobile-nav-badge {
  position: absolute;
  top: 4px;
  right: 50%;
  transform: translateX(10px);
  background: var(--color-gold);
  color: #000000;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ==========================================================================
   GORGOUS & RESPONSIVE FOOTER NEWSLETTER STYLING
   ========================================================================== */
.footer-newsletter-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 25, 30, 0.95), rgba(9, 12, 14, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(212, 175, 55, 0.04);
  transition: all 0.35s ease;
}

.footer-newsletter-card:hover {
  border-color: rgba(212, 175, 55, 0.55) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 25px rgba(212, 175, 55, 0.15);
}

.newsletter-input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50rem;
  padding: 4px 4px 4px 0;
  transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
  border-color: #d4af37;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.75);
}

.newsletter-icon {
  width: 18px;
  height: 18px;
  z-index: 5;
  pointer-events: none;
}

.newsletter-input-field {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 0.875rem;
  color: #ffffff !important;
  height: 44px;
}

.newsletter-input-field::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.btn-gorgeous-subscribe {
  background: linear-gradient(135deg, #c59b27 0%, #e6c565 50%, #b8860b 100%);
  color: #090c0e !important;
  font-weight: 800;
  border: none;
  border-radius: 50rem;
  padding: 0 24px;
  height: 42px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.btn-gorgeous-subscribe span,
.btn-gorgeous-subscribe i,
.btn-gorgeous-subscribe svg.lucide {
  color: #090c0e !important;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.btn-gorgeous-subscribe::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(30deg);
  transition: all 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.btn-gorgeous-subscribe:hover::after {
  left: 130%;
}

.btn-gorgeous-subscribe:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #d4af37 0%, #f0d575 50%, #c59b27 100%);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
  color: #000000 !important;
}

.btn-gorgeous-subscribe:active {
  transform: translateY(0) scale(0.98);
}

/* RESPONSIVE BREAKPOINTS FOR MOBILE DEVICES */
@media (max-width: 575.98px) {
  .newsletter-input-wrapper {
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
    gap: 8px;
  }

  .newsletter-input-field {
    width: 100%;
    border-radius: 12px;
    padding-left: 42px !important;
  }

  .btn-gorgeous-subscribe {
    width: 100%;
    border-radius: 12px;
    height: 44px;
  }

  .newsletter-icon {
    top: 22px !important;
  }
}

/* --------------------------------------------------------------------------
   LANDING PAGE — SELECT PRODUCT & VARIANT OPTIONS
   -------------------------------------------------------------------------- */
.variant-option {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.variant-option:hover {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.variant-option:has(input:checked) {
  border-color: var(--color-gold) !important;
  background-color: rgba(212, 175, 55, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* --------------------------------------------------------------------------
   LANDING PAGE — REDUCED BUTTON SIZES ON MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
  .qty-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.9rem;
  }

  #landingCheckoutForm .btn-gold {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  #landingOrderSubmitBtn {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    line-height: 1.4;
    white-space: nowrap;
  }

  #landingOrderSubmitBtn svg,
  #landingOrderSubmitBtn .lucide {
    width: 16px !important;
    height: 16px !important;
  }

  .fixed-bottom .btn-gold {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
