:root {
  --font-heading: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-subheading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --color-dark: #12100e;
  --color-gold: #c9a96e;
  --color-cream: #fbf9f5;
}

body {
  font-family: var(--font-body);
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
}

.font-playfair {
  font-family: var(--font-subheading);
}

.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-3 { letter-spacing: 3px; }
.letter-spacing-6 { letter-spacing: 6px; }
.letter-spacing-8 { letter-spacing: 8px; }

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Button Styling */
.btn-luxury-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #ffffff;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury-outline:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #12100e;
}

.btn-luxury-outline .arrow-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #12100e;
  border-radius: 6px;
  transition: all 0.35s ease;
}

.btn-luxury-outline:hover .arrow-box {
  background: #12100e;
  color: #ffffff;
}

.btn-luxury-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid #12100e;
  border-radius: 8px;
  color: #12100e;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury-dark:hover {
  background: #12100e;
  color: #ffffff;
}

.btn-luxury-dark .arrow-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #12100e;
  color: #ffffff;
  border-radius: 6px;
  transition: all 0.35s ease;
}

.btn-luxury-dark:hover .arrow-box {
  background: #ffffff;
  color: #12100e;
}

/* Hover Zoom & Card Lift */
.hover-zoom-container {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

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

.hover-zoom-container:hover .hover-zoom-img {
  transform: scale(1.06);
}

.product-card-luxury {
  border: none;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
}

.product-card-luxury:hover {
  transform: translateY(-6px);
}

.product-card-overlay-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.hover-zoom-container:hover .product-card-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.badge-capsule {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-capsule-white {
  background: #ffffff;
  color: #12100e;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 2rem;
  color: #ffffff;
  transition: all 0.35s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.play-btn-pulse {
  position: relative;
  width: 84px;
  height: 84px;
  background: rgba(18, 16, 14, 0.85);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.35s ease;
}

.play-btn-pulse::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.play-btn-pulse:hover {
  transform: scale(1.1);
  background: #ffffff;
  color: #12100e;
  border-color: #ffffff;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.brand-grid-box {
  border: 1px solid #e8e5e0;
}

.brand-grid-cell {
  border-right: 1px solid #e8e5e0;
  border-bottom: 1px solid #e8e5e0;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #ffffff;
  cursor: pointer;
}

.brand-grid-cell:hover {
  background: #fbf9f5;
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.nav-tabs-luxury .nav-link {
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  background: transparent;
  text-transform: uppercase;
}

.nav-tabs-luxury .nav-link.active,
.nav-tabs-luxury .nav-link:hover {
  color: #12100e;
  border-bottom-color: #12100e;
}

.scroll-row-smooth {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroll-row-smooth::-webkit-scrollbar {
  display: none;
}

.bestseller-card-item {
  flex: 0 0 240px;
  width: 240px;
  margin-right: 16px;
}

.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.75rem; }
.fs-9 { font-size: 0.68rem; }

/* Luxury Modern Storefront Pagination Styling */
.pagination {
  gap: 6px;
  margin-bottom: 0;
}

.pagination .page-item .page-link {
  color: #12100e;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 50px !important;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pagination .page-item .page-link:hover {
  background-color: #12100e;
  color: #ffffff;
  border-color: #12100e;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.pagination .page-item.active .page-link {
  background-color: #12100e !important;
  color: #ffffff !important;
  border-color: #12100e !important;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(18, 16, 14, 0.25);
}

.pagination .page-item.disabled .page-link {
  background-color: #f8f9fa;
  color: #aaaaaa;
  border-color: #eeeeee;
  opacity: 0.6;
  box-shadow: none;
}

/* Mobile Responsive Optimizations */
@media (max-width: 576px) {
  .hero-collections,
  .position-relative.overflow-hidden[style*="min-height: 420px"] {
    min-height: 280px !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .display-4 {
    font-size: 1.85rem !important;
  }

  .display-6 {
    font-size: 1.5rem !important;
  }

  .product-card-luxury .position-relative[style*="height: 380px"] {
    height: 260px !important;
    min-height: 260px !important;
  }

  .product-card-overlay-btn {
    bottom: 8px !important;
    left: 8px !important;
    right: 8px !important;
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
  }

  .btn.size-pill {
    padding: 4px 10px !important;
    font-size: 0.72rem !important;
  }

  .product-card-luxury .p-3 {
    padding: 0.75rem !important;
  }
}
