/**
 * ============================================
 * 💎 BARUKH SAGIT - LUXURY STYLES
 * Haute Joaillerie - Or 18 Carats
 * Design: Dark theme with gold accents
 * ============================================
 */

/* ============================================
   CSS VARIABLES
============================================ */

:root {
  /* Dark Theme */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --bg-card: #151515;

  /* Marble Background */
  --marble-overlay: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.02' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");

  /* Gold Palette */
  --gold-50: #F5EFE0;
  --gold-100: #E8DCC8;
  --gold-200: #D4C5A0;
  --gold-300: #C9B586;
  --gold-400: #C9A961;
  --gold-500: #D4AF37;
  --gold-600: #B8942F;
  --gold-700: #9A7B26;
  --gold-800: #8B7355;

  /* Text */
  --text-primary: #F5F5F5;
  --text-secondary: #B0B0B0;
  --text-muted: #707070;

  /* Accents */
  --accent-success: #4CAF50;
  --accent-error: #E74C3C;
  --accent-warning: #F39C12;

  /* Fonts */
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Inter', sans-serif;
  --font-hebrew: 'Heebo', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
}

/* RTL Support */
body.rtl {
  direction: rtl;
  font-family: var(--font-hebrew);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--gold-500);
}

body.rtl h1,
body.rtl h2,
body.rtl h3 {
  font-family: var(--font-hebrew);
}

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

a:hover {
  color: var(--gold-500);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */

.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold-500);
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  list-style: none;
  padding: 0.5rem 0;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Currency & Language Switchers */
.currency-switcher,
.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.currency-btn,
.lang-btn {
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.currency-btn:hover,
.currency-btn.active,
.lang-btn:hover,
.lang-btn.active {
  color: var(--gold-500);
  border-color: var(--gold-500);
}

.currency-btn {
  font-weight: 500;
  min-width: 28px;
  text-align: center;
}

/* Desktop/Mobile visibility */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

/* Language Dropdown (Mobile) */
.language-dropdown {
  position: relative;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: transparent;
  border: 1px solid var(--bg-tertiary);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-dropdown-trigger:hover,
.language-dropdown.open .lang-dropdown-trigger {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.lang-dropdown-trigger .dropdown-arrow {
  transition: transform 0.2s ease;
}

.language-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-content {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.language-dropdown.open .lang-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-option:hover {
  background: var(--bg-tertiary);
  color: var(--gold-500);
}

.lang-option.active {
  color: var(--gold-500);
  background: rgba(212, 175, 55, 0.1);
}

.lang-option .check-icon {
  width: 14px;
  font-size: 0.75rem;
  color: var(--gold-500);
}

.cart-icon {
  position: relative;
  color: var(--text-secondary);
}

.cart-icon:hover {
  color: var(--gold-500);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold-500);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 500;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .nav-menu>li>a {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
  }

  .nav-menu .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 0 1rem 1.5rem;
    display: none;
  }

  .nav-menu li:hover .dropdown-menu {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Compact mobile header */
  .navbar {
    padding: 0.75rem 1rem;
    flex-wrap: nowrap;
  }

  .logo {
    flex-shrink: 1;
    min-width: 0;
    max-width: 120px;
  }

  .logo-text {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  /* Filters Refinement */
  .collections-filters-section {
    padding: 1rem;
    top: 70px;
  }

  .mobile-filter-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border: 1px solid var(--gold-500);
    color: var(--gold-500);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }

  .mobile-filter-toggle.active {
    background: var(--gold-500);
    color: var(--bg-primary);
  }

  .filters-bar {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .filters-bar.mobile-visible {
    display: flex;
  }

  .filter-search,
  .filter-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-content {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.1);
  }

  /* Hero Refinement */
  .hero-brand-name {
    font-size: 2.5rem !important;
  }

  .hero-brand-tagline {
    font-size: 0.8rem !important;
    letter-spacing: 0.2em !important;
  }

  .hero-description {
    font-size: 0.9rem !important;
  }

  .cart-icon {
    display: flex !important;
    order: 1;
  }

  .mobile-menu-toggle {
    order: 4;
  }

  .language-dropdown {
    order: 3;
    display: none;
  }

  .lang-switcher {
    order: 2;
    display: none;
  }

  /* Adjust currency switcher for mobile */
  .currency-switcher {
    gap: 0.15rem;
    order: 0;
  }

  .currency-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    min-width: 24px;
  }

  /* Mobile Menu Switchers */
  .mobile-only-menu-item {
    margin-top: auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
  }

  .mobile-menu-switchers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-menu-switchers .currency-switcher {
    justify-content: center;
    gap: 1rem;
  }

  .mobile-menu-switchers .currency-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    min-width: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
  }

  .mobile-menu-switchers .language-dropdown {
    display: block !important;
    width: 100%;
  }

  .mobile-menu-switchers .lang-dropdown-trigger {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
  }

  /* Body when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* ============================================
   HERO SECTION
============================================ */

.luxury-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%),
    var(--marble-overlay);
  background-size: cover, 400px 400px;
  overflow: hidden;
}

.luxury-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero floating jewelry image */
.hero-jewelry-float {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35vw;
  max-width: 500px;
  opacity: 0.15;
  filter: grayscale(30%) brightness(1.2);
  mix-blend-mode: luminosity;
  pointer-events: none;
  animation: heroFloat 6s ease-in-out infinite;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-jewelry-float {
    display: none;
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(-50%) rotate(-2deg);
  }

  50% {
    transform: translateY(-52%) rotate(2deg);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-primary);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
  display: inline-block;
  padding: 1.2rem 3rem;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta:hover {
  background: var(--gold-500);
  color: var(--bg-primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

/* ============================================
   SECTIONS
   ============================================ */

main {
  padding-top: 80px;
  /* Header height */
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold-500);
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================
   CATEGORIES
============================================ */

.luxury-categories {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

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

.category-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.category-image {
  position: absolute;
  inset: 0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.category-info h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.category-count {
  font-size: 0.8rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
}

/* ============================================
   PRODUCTS GRID
============================================ */

.luxury-products {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(21, 21, 21, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%),
    var(--marble-overlay);
  background-size: cover, 200px 200px;
  border: 1px solid var(--bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover::before {
  opacity: 1;
}

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

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.hover-icon-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
  color: var(--gold-500);
}

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

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.product-card:hover .product-title {
  color: var(--gold-500);
}

.product-price {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.product-materials {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.btn-add-to-cart-quick {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
  color: var(--bg-primary);
}

.product-card:hover .btn-add-to-cart-quick {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-to-cart-quick:hover {
  background: var(--gold-600);
  transform: scale(1.1);
}

/* ============================================
   COLLECTIONS PAGE
============================================ */

.collections-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
  background: var(--bg-secondary);
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.collections-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

@media (max-width: 1024px) {
  .collections-content {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COMPACT FILTERS BAR (Dropdowns)
   ============================================ */

.collections-hero.compact {
  padding: 6rem 2rem 1.5rem;
  text-align: center;
}

.collections-hero.compact .page-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.collections-hero.compact .page-subtitle {
  margin-bottom: 1.5rem;
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Search in filters bar */
.filter-search {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.filter-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.filter-search input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.filter-search input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.filter-search input::placeholder {
  color: var(--text-muted);
}

/* Dropdown filters */
.filter-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.dropdown-trigger:hover {
  border-color: var(--gold-500);
}

.dropdown-trigger .dropdown-arrow {
  transition: transform 0.2s ease;
}

.filter-dropdown.open .dropdown-trigger {
  border-color: var(--gold-500);
  background: var(--bg-tertiary);
}

.filter-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.filter-dropdown.open .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a,
.dropdown-content button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dropdown-content a:hover,
.dropdown-content button:hover {
  background: var(--bg-tertiary);
  color: var(--gold-500);
}

.dropdown-content a.active {
  color: var(--gold-500);
  background: rgba(212, 175, 55, 0.1);
}

.dropdown-content .check-icon {
  width: 16px;
  color: var(--gold-500);
  font-size: 0.8rem;
}

.dropdown-content .count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Material dots */
.material-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.material-btn.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-500);
}

.material-btn.active::after {
  content: '✓';
  margin-left: auto;
  color: var(--gold-500);
}

/* Price dropdown */
.price-content {
  padding: 1rem;
}

.price-content input[type="range"] {
  width: 100%;
  accent-color: var(--gold-500);
  margin-bottom: 0.5rem;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Collections products section */
.collections-products {
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .filters-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search {
    max-width: 100%;
  }

  .filter-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-content {
    width: 100%;
  }

  .collections-hero.compact {
    padding: 5rem 1rem 1rem;
  }
}

/* Hide old sidebar styles */
.collections-sidebar {
  display: none;
}

.collections-content {
  display: block;
}

/* ============================================
   PRODUCT DETAIL
============================================ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

@media (max-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-gallery {
  position: relative;
}

/* Sticky gallery only on desktop */
@media (min-width: 1025px) {
  .product-gallery {
    position: sticky;
    top: 100px;
  }
}

.gallery-main {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
}

.thumb {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  padding: 0;
  transition: var(--transition-fast);
}

.thumb.active,
.thumb:hover {
  border-color: var(--gold-500);
}

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

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

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

.product-title-detail {
  font-size: 2.5rem;
  color: #8B7355;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .product-title-detail {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

.product-price-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-eur {
  font-size: 1.5rem;
  color: var(--gold-500);
  font-weight: 400;
}

.price-ils {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.product-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.product-meta {
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.meta-item strong {
  color: var(--text-primary);
  min-width: 120px;
}

.in-stock {
  color: var(--accent-success);
}

.out-of-stock {
  color: var(--accent-error);
}

.product-actions {
  margin-bottom: 2rem;
}

.product-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-tertiary);
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.guarantee svg {
  color: var(--gold-500);
}

/* ============================================
   CART PAGE
   ============================================ */

.cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

@media (max-width: 768px) {
  .cart-page {
    padding: 1.5rem 1rem;
  }

  .cart-page .page-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.cart-empty svg {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cart-empty h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-tertiary);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .item-quantity,
  .item-total {
    grid-column: 2;
  }
}

.item-image {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-name {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.item-price {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bg-tertiary);
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.qty-input {
  width: 50px;
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  color: var(--text-primary);
  padding: 0.5rem;
  font-size: 0.9rem;
}

.item-total {
  font-size: 1rem;
  color: var(--gold-500);
  font-weight: 500;
}

.item-remove {
  color: var(--text-muted);
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.item-remove:hover {
  color: var(--accent-error);
}

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--bg-tertiary);
  padding: 2rem;
  border-radius: 2px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-tertiary);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-500);
  padding-top: 1rem;
  border-top: 1px solid var(--bg-tertiary);
  margin-top: 1rem;
}

.summary-divider {
  height: 1px;
  background: var(--bg-tertiary);
  margin: 1rem 0;
}

.free {
  color: var(--accent-success);
}

.btn-checkout {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cart-guarantees {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-tertiary);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.guarantee-item svg {
  color: var(--gold-500);
}

/* ============================================
   CHECKOUT
   ============================================ */

.checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .checkout-page {
    padding: 1.5rem 1rem;
  }

  .checkout-page .page-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .checkout-progress {
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .progress-step {
    font-size: 0.75rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .progress-line {
    width: 30px !important;
  }

  .checkout-section {
    padding: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .order-summary {
    margin-top: 1.5rem;
  }
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border: 2px solid var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.progress-step.active .step-number {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.progress-step.completed .step-number {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--bg-primary);
}

.step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: var(--bg-tertiary);
  margin: 0 1rem;
}

.checkout-step h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 2px;
}

.checkout-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}

.checkout-item .item-info {
  flex: 1;
}

.checkout-item h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.checkout-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checkout-item .item-price {
  color: var(--gold-500);
}

/* Forms */
.shipping-form,
.contact-form {
  max-width: 600px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method {
  flex: 1;
  cursor: pointer;
}

.payment-method input {
  display: none;
}

.method-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(30, 30, 30, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.method-content svg {
  color: var(--gold-400);
  stroke: var(--gold-400);
  fill: none;
}

.method-content span {
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.payment-method.active .method-content {
  border-color: var(--gold-500);
  background: rgba(212, 175, 55, 0.15);
}

.payment-method:hover .method-content {
  border-color: var(--gold-400);
  background: rgba(212, 175, 55, 0.1);
}

.card-payment {
  margin-bottom: 2rem;
}

.card-payment label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold-400);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.stripe-element {
  padding: 1rem 1.25rem;
  background: rgba(25, 25, 25, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  min-height: 50px;
}

.stripe-element.StripeElement--focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.paypal-payment {
  padding: 1rem;
  background: rgba(25, 25, 25, 0.5);
  border-radius: 8px;
  min-height: 60px;
}

.card-errors {
  color: var(--accent-error);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Shipping in Summary */
.shipping-row .free {
  color: var(--gold-400);
  font-weight: 600;
}

.free-shipping-hint {
  font-size: 0.8rem;
  color: var(--gold-500);
  text-align: center;
  padding: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  margin: 0.5rem 0;
}

.shipping-included {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 4px;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.shipping-included svg {
  color: var(--gold-400);
}

/* Confirmation */
.checkout-step.confirmation {
  text-align: center;
  padding: 4rem 2rem;
}

.confirmation-icon {
  margin-bottom: 2rem;
}

.confirmation-message {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.confirmation-email {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.confirmation-details {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem auto;
  max-width: 400px;
  text-align: left;
}

.confirmation-details h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.confirmation-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Order Summary Sidebar */
.order-summary {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 2px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-tertiary);
}

.summary-items {
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.item-thumb {
  position: relative;
  width: 50px;
  height: 50px;
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.item-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--gold-500);
  color: var(--bg-primary);
  font-size: 0.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-item .item-name {
  flex: 1;
  font-size: 0.85rem;
}

.summary-item .item-price {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.summary-totals {
  padding-top: 1rem;
  border-top: 1px solid var(--bg-tertiary);
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-tertiary);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.secure-badge svg {
  color: var(--gold-500);
}

/* ============================================
   HISTOIRE / ABOUT
============================================ */

.histoire-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
}

.histoire-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.histoire-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.histoire-section.reverse {
  direction: rtl;
}

.histoire-section.reverse>* {
  direction: ltr;
}

@media (max-width: 1024px) {

  .histoire-section,
  .histoire-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.histoire-text h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.histoire-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.histoire-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.histoire-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.histoire-values {
  text-align: center;
  padding: 4rem 0;
}

.histoire-values h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.value-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-tertiary);
  border-radius: 2px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT
============================================ */

.contact-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: var(--bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 640px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

.contact-item h3 {
  font-size: 1rem;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   STORY TEASER
   ============================================ */

.luxury-story-teaser {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
}

.story-content {
  max-width: 700px;
  margin: 0 auto;
}

.story-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.story-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.story-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ============================================
   POLICY PAGES (Shipping, Returns)
============================================ */

.policy-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: var(--bg-secondary);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.policy-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bg-tertiary);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding: 0;
}

.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

@media (max-width: 768px) {
  .policy-hero {
    padding: 6rem 1rem 2rem;
  }

  .policy-content {
    padding: 2rem 1rem;
  }

  .policy-section h2 {
    font-size: 1.1rem;
  }
}

/* ============================================
   FOOTER
============================================ */

.luxury-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-tertiary);
  padding: 6rem 2rem 3rem;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-section h3 {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--gold-500);
  transform: translateX(4px);
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-tertiary);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-payments {
  display: flex;
  gap: 1rem;
}

.footer-payments img {
  height: 24px;
  opacity: 0.6;
}

/* ============================================
   BUTTONS
============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gold-500);
  color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--gold-500);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold-500);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--gold-500);
  color: var(--bg-primary);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-500);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast svg {
  color: var(--gold-500);
}

.cart-toast span {
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* ============================================
   ERROR PAGE
============================================ */

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes bounce {

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

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spinner {
  animation: spin 1s linear infinite;
}

/* ============================================
   LOADING STATES
   ============================================ */

.cart-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

/* ============================================
   NO PRODUCTS
   ============================================ */

.no-products-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.no-products-message h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.no-products-message p {
  color: var(--text-muted);
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gold {
  color: var(--gold-500);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* ============================================
   GLASSMORPHISM EFFECTS
   Premium glass-like UI elements
   ============================================ */

.glass-effect {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Glass Header */
.luxury-header {
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Glass Nav on scroll */
.luxury-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ============================================
   PREMIUM ANIMATIONS
   Inspired by Tiffany, Cartier, Van Cleef
   ============================================ */

/* Subtle shimmer effect for gold text */
@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer-gold {
  background: linear-gradient(90deg,
      var(--gold-500) 0%,
      var(--gold-300) 25%,
      var(--gold-100) 50%,
      var(--gold-300) 75%,
      var(--gold-500) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

/* Diamond sparkle effect */
@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

.sparkle::after {
  content: '✦';
  position: absolute;
  top: 10%;
  right: 10%;
  color: var(--gold-300);
  font-size: 0.6rem;
  opacity: 0;
  animation: sparkle 2s ease-in-out infinite;
  animation-delay: var(--sparkle-delay, 0s);
}

/* Elegant fade in with scale */
@keyframes elegantReveal {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    filter: blur(10px);
  }

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

.elegant-reveal {
  animation: elegantReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered reveal for grids */
.product-card:nth-child(1) {
  animation-delay: 0.05s;
}

.product-card:nth-child(2) {
  animation-delay: 0.1s;
}

.product-card:nth-child(3) {
  animation-delay: 0.15s;
}

.product-card:nth-child(4) {
  animation-delay: 0.2s;
}

.product-card:nth-child(5) {
  animation-delay: 0.25s;
}

.product-card:nth-child(6) {
  animation-delay: 0.3s;
}

.product-card:nth-child(7) {
  animation-delay: 0.35s;
}

.product-card:nth-child(8) {
  animation-delay: 0.4s;
}

/* Floating animation for featured items */
@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.product-card:hover .product-image img {
  animation: gentleFloat 2s ease-in-out infinite;
}

/* Premium hover glow */
.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg,
      transparent 40%,
      rgba(212, 175, 55, 0.1) 50%,
      transparent 60%);
  background-size: 200% 200%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.product-card:hover::before {
  opacity: 1;
  animation: glowSweep 2s ease infinite;
}

@keyframes glowSweep {
  0% {
    background-position: 200% 200%;
  }

  100% {
    background-position: -200% -200%;
  }
}

/* Luxury button pulse */
@keyframes luxuryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.btn-primary:hover,
.btn-add-to-cart:hover {
  animation: luxuryPulse 1.5s infinite;
}

/* Smooth image zoom on hover */
.product-image img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Text reveal animation */
@keyframes textReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Underline animation for links */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  transition: width 0.4s ease, left 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* ============================================
   LUXURY PRODUCT PAGE ENHANCEMENTS
   ============================================ */

/* Premium image gallery glass effect */
.product-gallery-main {
  position: relative;
  overflow: hidden;
}

.product-gallery-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 70%,
      rgba(10, 10, 10, 0.3) 100%);
  pointer-events: none;
}

/* Price highlight effect */
.product-price-detail {
  position: relative;
}

.product-price-detail::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 80%;
  background: linear-gradient(to bottom, var(--gold-400), var(--gold-600));
  border-radius: 2px;
}

/* Trust badges glass effect */
.product-trust-badges {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-badge svg {
  color: var(--gold-500);
}

/* ============================================
   BUY NOW BUTTON
   ============================================ */

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-buy-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.btn-buy-now:hover::before {
  left: 100%;
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-actions .btn-add-to-cart {
  flex: 1;
}

.product-actions .btn-buy-now {
  flex: 1;
}

/* ============================================
   SCROLL REVEAL
============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CURSOR EFFECTS (Desktop only)
   ============================================ */

@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
  }

  .custom-cursor.hovering {
    transform: scale(2);
    background: rgba(212, 175, 55, 0.1);
  }
}

/* ============================================
   LOADING SKELETON
   ============================================ */

@keyframes skeletonShimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg,
      var(--bg-secondary) 25%,
      var(--bg-tertiary) 50%,
      var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5rem;
}

.skeleton-image {
  aspect-ratio: 1;
}

/* ============================================
   CURRENCY SYSTEM - EUR/USD/ILS
   Controlled by data-currency attribute on body
   ============================================ */

/* Par défaut (EUR): cacher USD et ILS */
.price-usd,
.price-ils {
  display: none !important;
}

.price-eur {
  display: inline !important;
}

/* Quand USD sélectionné */
body[data-currency="USD"] .price-eur,
body[data-currency="USD"] .price-ils {
  display: none !important;
}

body[data-currency="USD"] .price-usd {
  display: inline !important;
}

/* Quand ILS sélectionné */
body[data-currency="ILS"] .price-eur,
body[data-currency="ILS"] .price-usd {
  display: none !important;
}

body[data-currency="ILS"] .price-ils {
  display: inline !important;
}

/* Currency switcher buttons */
.currency-switcher {
  display: flex;
  gap: 0.3rem;
  margin-left: 1rem;
}

.currency-btn {
  padding: 0.4rem 0.7rem;
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-secondary);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.currency-btn:hover {
  color: var(--gold-500);
  border-color: var(--gold-500);
}

.currency-btn.active {
  background: var(--gold-500);
  color: var(--bg-primary);
  border-color: var(--gold-500);
}

/* END CURRENCY SYSTEM */

/* ============================================
   GLASSMORPHISM & PREMIUM ANIMATIONS
   Luxury effects for high-end jewelry experience
   ============================================ */

/* Glassmorphism Effect Classes */
.glass-effect {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-effect-light {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Product Card Glassmorphism */
.product-card {
  background: rgba(21, 21, 21, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.05),
      transparent);
  transition: left 0.7s ease;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(212, 175, 55, 0.1);
}

/* Button Glassmorphism */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 50%, var(--gold-400) 100%);
  background-size: 200% 200%;
  animation: goldShimmer 3s ease infinite;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.btn-primary:hover::after {
  opacity: 1;
  animation: shine 0.5s ease forwards;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shine {
  0% {
    left: -50%;
  }

  100% {
    left: 150%;
  }
}

/* Luxury Hero Section Effects */
.hero-section {
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* Gold Particle Animation (optional class) */
.gold-particles {
  position: relative;
}

.gold-particles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(212, 175, 55, 0.2), transparent),
    radial-gradient(1px 1px at 160px 30px, rgba(212, 175, 55, 0.3), transparent);
  background-size: 200px 100px;
  animation: sparkle 4s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 0.6;
    transform: translateY(-5px);
  }
}

/* Image Hover Zoom Effect */
.product-card .product-image {
  overflow: hidden;
}

.product-card .product-image img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Price Tag Glow on Hover */
.product-card .product-price {
  transition: all 0.3s ease;
}

.product-card:hover .product-price {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Section Divider with Gold Gradient */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.3) 20%,
      rgba(212, 175, 55, 0.5) 50%,
      rgba(212, 175, 55, 0.3) 80%,
      transparent 100%);
  margin: var(--spacing-lg) 0;
  animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Modal Glassmorphism */
.modal-content,
.cart-sidebar,
.dropdown-menu {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Input Focus Glow */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.1),
    0 0 20px rgba(212, 175, 55, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Loading Shimmer Effect */
.loading-shimmer {
  background: linear-gradient(90deg,
      var(--bg-secondary) 0%,
      var(--bg-tertiary) 50%,
      var(--bg-secondary) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Luxury Badge */
.luxury-badge {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--bg-primary);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Floating Label Animation */
.form-group {
  position: relative;
}

.form-group label {
  transition: all 0.3s ease;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--gold-500);
}

/* Premium Text Animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  animation: textReveal 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

/* Staggered Animation Delays */
.text-reveal span:nth-child(1) {
  animation-delay: 0.1s;
}

.text-reveal span:nth-child(2) {
  animation-delay: 0.2s;
}

.text-reveal span:nth-child(3) {
  animation-delay: 0.3s;
}

.text-reveal span:nth-child(4) {
  animation-delay: 0.4s;
}

.text-reveal span:nth-child(5) {
  animation-delay: 0.5s;
}

/* Smooth Page Transitions */
.page-transition-enter {
  opacity: 0;
  transform: translateY(20px);
}

.page-transition-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* END GLASSMORPHISM */

/* ============================================
   PREMIUM SEARCH BAR
============================================ */

.search-bar-container {
  position: relative;
  max-width: 500px;
  margin: 2rem auto;
}

.search-bar {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-secondary);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.search-bar::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.search-bar:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  pointer-events: none;
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  margin-top: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.search-results-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
}

.search-result-item:hover {
  background: rgba(212, 175, 55, 0.1);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.search-result-item .result-info {
  flex: 1;
}

.search-result-item .result-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.search-result-item .result-price {
  color: var(--gold-500);
  font-size: 0.9rem;
}

/* ============================================
   CHATBOT ENHANCED STYLES
   ============================================ */

.chatbot-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.chatbot-trigger svg {
  width: 28px;
  height: 28px;
  color: var(--bg-primary);
}

.chatbot-panel {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 380px;
  max-height: 500px;
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.chatbot-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--bg-primary);
}

.chatbot-header h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.chatbot-header svg {
  color: var(--bg-primary);
}

.chatbot-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.chatbot-close svg {
  color: var(--bg-primary);
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 250px;
  max-height: 300px;
}

.chat-message {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.chat-message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--bg-primary);
}

.chat-message.typing-indicator {
  display: flex;
  gap: 0.3rem;
  padding: 1rem;
}

.chat-message.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}

.chat-message.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-message.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.product-suggestions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.product-suggestion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  width: calc(33% - 0.5rem);
}

.product-suggestion:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.product-suggestion img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.product-suggestion span {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chatbot-input {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.chatbot-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--gold-500);
}

.chatbot-input input::placeholder {
  color: var(--text-muted);
}

.chatbot-input button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chatbot-input button:hover {
  transform: scale(1.1);
}

.chatbot-input button svg {
  width: 20px;
  height: 20px;
  color: var(--bg-primary);
}

@media (max-width: 480px) {
  .chatbot-panel {
    right: 1rem;
    left: 1rem;
    width: auto;
    bottom: 5rem;
  }

  .chatbot-trigger {
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }
}