/* search.css - Complete Premium Search Page with Dark Theme */
:root {
  --gold-primary: #C6A664;
  --gold-dark: #A88C4A;
  --gold-light: #E8D9B0;
  --bg-dark: #0f0f0f;
  --bg-darker: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --border-dark: #333333;
  --text-on-dark: #ffffff;
  --text-muted-dark: #a0a0a0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(198, 166, 100, 0.2);
}

/* ==================== GLOBAL STYLES ==================== */
body {
  background: var(--bg-dark) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-on-dark);
  min-height: 100vh;
}

/* ==================== PREMIUM HERO SECTION ==================== */
.premium-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(15, 15, 15, 0.95) 0%,
    rgba(10, 10, 10, 0.98) 50%,
    rgba(30, 30, 30, 0.95) 100%);
  overflow: hidden;
  padding: 1.5rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), transparent);
  opacity: 0.08;
  animation: floatElement 8s ease-in-out infinite;
}

.el-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.el-2 {
  width: 300px;
  height: 300px;
  bottom: 150px;
  left: -100px;
  animation-delay: 2s;
}

.el-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 25%;
  animation-delay: 4s;
}

.el-4 {
  width: 150px;
  height: 150px;
  bottom: 250px;
  right: 20%;
  animation-delay: 6s;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 75%, rgba(198, 166, 100, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(214, 198, 177, 0.08) 0%, transparent 50%);
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  33% { transform: translateY(-30px) rotate(120deg) scale(1.05); }
  66% { transform: translateY(15px) rotate(240deg) scale(0.95); }
}

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

.brand-presentation {
  margin-bottom: 3rem;
}

.logo-glow {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  border-radius: 50%;
  margin: 0 auto 2rem;
  opacity: 0.3;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}

.brand-title {
  font-family: 'Unica One', cursive;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
}

.title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-on-dark) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.divider-line:last-child {
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-muted-dark);
  line-height: 1.6;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* ==================== SEARCH FORM ==================== */
.search-global-container {
  max-width: 600px;
  margin: 0 auto;
}

.global-search-form {
  width: 100%;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.search-input-group:focus-within {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.search-icon {
  color: var(--text-muted-dark);
  margin: 0 1rem;
  font-size: 1.2rem;
}

.global-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  color: var(--text-on-dark);
}

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

/* ==================== SEARCH CLOSE BUTTON ==================== */
.search-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 0.75rem;
  position: relative;
  overflow: hidden;
}

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

.search-close-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(198, 166, 100, 0.3);
}

.search-close-btn:hover::before {
  left: 100%;
}

.search-submit-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit-btn:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-hover);
}

/* ==================== MOBILE FILTER SYSTEM ==================== */
.mobile-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 30px rgba(198, 166, 100, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
}

.mobile-filter-toggle::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.6s ease;
}

.mobile-filter-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(198, 166, 100, 0.4);
}

.mobile-filter-toggle:hover::before {
  left: 100%;
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  animation: overlayFadeIn 0.3s ease;
}

.filter-overlay.active {
  display: block;
}

.filter-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--text-on-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1001;
}

.filter-close-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  transform: scale(1.1);
}

/* ==================== FILTER SIDEBAR ==================== */
.filter-sidebar {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-dark);
  position: sticky;
  top: 2rem;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.filter-title {
  font-family: 'Unica One', cursive;
  font-size: 1.5rem;
  color: var(--text-on-dark);
  margin: 0;
}

.filter-clear-btn {
  background: none;
  border: none;
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-clear-btn:hover {
  color: var(--gold-primary);
}

/* Filter Sections */
.filter-section {
  margin-bottom: 2rem;
}

.filter-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.filter-section-title i {
  color: var(--gold-primary);
}

/* Filter Search */
.filter-search-container {
  position: relative;
  margin-bottom: 1rem;
}

.filter-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted-dark);
}

.filter-search-input {
  width: 100%;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.filter-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(198, 166, 100, 0.1);
}

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

/* Filter Options */
.filter-options {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.filter-option {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
  color: var(--text-on-dark);
}

.filter-option:hover {
  color: var(--gold-primary);
}

.filter-option input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-dark);
  border-radius: 4px;
  margin-right: 0.75rem;
  position: relative;
  transition: all 0.3s ease;
  background: var(--bg-dark);
}

.filter-option input:checked + .checkmark {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.filter-option input:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  color: var(--text-dark);
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.option-label {
  font-size: 0.9rem;
}

/* Show More Button */
.show-more-btn {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  gap: 0.5rem;
}

/* Apply Filters Button */
.filter-apply-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  border-radius: 12px;
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.filter-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.filter-count {
  background: var(--bg-dark);
  color: var(--gold-primary);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ==================== CONTENT HEADER ==================== */
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.results-title {
  font-family: 'Unica One', cursive;
  font-size: 2rem;
  color: var(--text-on-dark);
  margin: 0;
}

.results-count {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

/* ==================== PREMIUM TABS ==================== */
.premium-tabs {
  display: flex;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 0.25rem;
  border: 1px solid var(--border-dark);
}

.premium-tab {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.premium-tab.active {
  background: var(--bg-dark);
  color: var(--gold-primary);
  box-shadow: var(--shadow);
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

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

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

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

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

/* ==================== ULTRA PREMIUM MINIMALIST BADGES ==================== */
.product-badges-container {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.product-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  font-family: 'Unica One', cursive;
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: premiumSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

@keyframes premiumSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Ultra Premium Sale Badge */
.sale-badge {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(238, 90, 36, 0.95));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Ultra Premium Sold Out Badge */
.soldout-badge {
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.95), rgba(26, 26, 26, 0.95));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Ultra Premium Unique Badge */
.unique-badge {
  background: linear-gradient(135deg, rgba(198, 166, 100, 0.95), rgba(168, 140, 74, 0.95));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Custom Badge */
.product-badge.custom-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Premium Shine Effect */
.product-badge::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.6s ease;
}

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

/* ==================== SOLD OUT STYLING ==================== */
.product-card.sold-out .product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 108, 108, 0.15);
  z-index: 15;
  border-radius: 16px;
}

.product-card.sold-out .product-price {
  position: relative;
}

.product-card.sold-out .price-current,
.product-card.sold-out .price-old,
.product-card.sold-out .price-new {
  color: var(--text-muted-dark) !important;
  font-weight: 500;
  position: relative;
  opacity: 0.8;
}

/* Elegant line-through effect */
.product-card.sold-out .price-current::after,
.product-card.sold-out .price-old::after,
.product-card.sold-out .price-new::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--text-muted-dark) 20%, 
    var(--text-muted-dark) 80%, 
    transparent 100%);
  opacity: 0.6;
  transform: translateY(-50%);
}

.product-card.sold-out .price-old {
  text-decoration: none;
}

.product-card.sold-out .product-link {
  background: transparent;
  color: var(--text-muted-dark);
  opacity: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card.sold-out .product-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.product-card.sold-out .product-link:hover {
  background: var(--text-muted-dark);
  color: var(--bg-dark);
  border-color: var(--text-muted-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 108, 108, 0.2);
}

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

.product-card.sold-out .product-link i {
  transition: transform 0.3s ease;
}

.product-card.sold-out .product-link:hover i {
  transform: translateX(3px);
}

.product-card.sold-out .product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-card.sold-out .price-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.product-card.sold-out .price-separator {
  color: var(--text-muted-dark);
  opacity: 0.5;
  font-weight: 300;
}

/* ==================== PRODUCT ACTIONS ==================== */
.product-actions {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

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

.action-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  cursor: pointer;
}

.action-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  transform: scale(1.1);
  border-color: var(--gold-primary);
}

/* ==================== PRODUCT INFO ==================== */
.product-info {
  padding: 1.5rem;
}

.product-name {
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

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

.price-new {
  color: #FF6B6B;
  font-weight: 700;
  font-size: 1.1rem;
}

.price-current {
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Size Information */
.product-size-info {
  margin: 0.5rem 0;
}

.size-available {
  color: var(--text-muted-dark);
  font-size: 0.8rem;
}

.custom-available {
  color: #667eea;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.product-link:hover {
  gap: 0.75rem;
  color: var(--gold-light);
}

/* ==================== COLLECTIONS GRID ==================== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: var(--bg-card-hover);
}

.collection-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(198, 166, 100, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid var(--white);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.collection-link:hover {
  background: var(--white);
  color: var(--gold-primary);
}

.collection-info {
  padding: 1.5rem;
}

.collection-name {
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.collection-description {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==================== EMPTY STATE ==================== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted-dark);
}

.empty-icon {
  font-size: 4rem;
  color: var(--border-dark);
  margin-bottom: 1.5rem;
}

.empty-state h4 {
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}

.btn-clear-filters {
  background: var(--gold-primary);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-clear-filters:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--text-dark);
}

/* ==================== PAGINATION ==================== */
.pagination-container {
  margin-top: 3rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--bg-card);
}

.pagination-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.pagination-pages {
  display: flex;
  gap: 0.5rem;
}

.pagination-page {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 44px;
  text-align: center;
  background: var(--bg-card);
}

.pagination-page:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.pagination-page.active {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

/* ==================== ENHANCED MOBILE RESPONSIVENESS ==================== */
@media (max-width: 991px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        z-index: 10000;
        background: var(--bg-card);
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        padding: 3rem 2rem 2rem;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
        border-right: 1px solid var(--border-dark);
        border-radius: 0;
    }
    
    .filter-sidebar.active {
        left: 0;
        animation: slideInLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
    
    .search-close-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .search-input-group {
        padding: 0.375rem;
    }
    
    .search-submit-btn {
        width: 44px;
        height: 44px;
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .premium-hero-section {
        min-height: 50vh;
        padding: 1rem 0;
    }
    
    .brand-presentation {
        margin-bottom: 2rem;
    }
    
    .search-global-container {
        max-width: 90%;
    }
    
    .search-input-group {
        padding: 0.25rem;
    }
    
    .search-submit-btn {
        width: 45px;
        height: 45px;
    }
    
    .content-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .premium-tabs {
        width: 100%;
        justify-content: center;
    }
    
    .premium-tab {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
    
    .filter-sidebar {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .search-close-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-right: 0.4rem;
    }
    
    .global-search-input {
        font-size: 1.05rem;
        padding: 0.375rem 0;
    }
    
    .search-icon {
        margin: 0 0.875rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.6rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .collection-info {
        padding: 0.75rem;
    }
    
    .collection-name {
        font-size: 0.95rem;
    }
    
    .collection-description {
        font-size: 0.75rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination-btn, .pagination-page {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-close-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }
    
    .global-search-input {
        font-size: 1rem;
        padding: 0.25rem 0;
    }
    
    .search-icon {
        margin: 0 0.75rem;
        font-size: 1rem;
    }
    
    .search-input-group {
        padding: 0.25rem;
    }
    
    .search-submit-btn {
        width: 40px;
        height: 40px;
    }
    
    .mobile-filter-toggle {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .filter-sidebar {
        width: 95%;
        padding: 2rem 1.25rem 1.25rem;
    }
    
    .filter-close-btn {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ==================== PREMIUM ZOOM MODAL STYLES ==================== */
.zoom-modal-premium {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

.zoom-modal-premium.active {
  display: flex;
}

.zoom-modal-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 10, 10, 0.98) 0%,
    rgba(15, 15, 15, 0.97) 50%,
    rgba(10, 10, 10, 0.98) 100%);
  backdrop-filter: blur(30px);
  animation: overlayFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-modal-container-premium {
  position: relative;
  background: var(--bg-card);
  border-radius: 28px;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(198, 166, 100, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  max-width: 95vw;
  max-height: 95vh;
  width: 1000px;
  height: 800px;
  display: flex;
  flex-direction: column;
  z-index: 10001;
  animation: modalAppear 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Premium Header */
.zoom-header-premium {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-dark);
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.95) 0%,
    rgba(30, 30, 30, 0.9) 100%);
  backdrop-filter: blur(20px);
}

.header-content-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.product-info-premium {
  flex: 1;
}

.product-name-premium {
  color: var(--text-on-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  font-family: 'Unica One', cursive;
  letter-spacing: 0.5px;
}

.product-price-premium {
  color: var(--gold-primary);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-actions-premium {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.premium-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

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

.premium-action-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 166, 100, 0.3);
}

.premium-action-btn:hover::before {
  left: 100%;
}

/* Premium Image Container */
.zoom-image-container-premium {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(circle at 50% 50%, rgba(198, 166, 100, 0.05) 0%, transparent 50%),
    var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  min-height: 400px;
}

.zoom-image-container-premium.zoomed {
  cursor: grab;
}

.zoom-image-container-premium.zoomed:active {
  cursor: grabbing;
}

.premium-zoom-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
  user-select: none;
  -webkit-user-select: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 10;
}

.nav-prev {
  left: 2rem;
}

.nav-next {
  right: 2rem;
}

.zoom-modal-container-premium:hover .nav-arrow {
  opacity: 1;
}

.nav-arrow:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
}

/* Premium Controls */
.zoom-controls-premium {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-dark);
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.95) 0%,
    rgba(30, 30, 30, 0.9) 100%);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.controls-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.control-btn-premium {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 0.875rem 1.5rem;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

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

.control-btn-premium:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 166, 100, 0.3);
}

.control-btn-premium:hover::before {
  left: 100%;
}

.control-btn-premium.primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--text-dark);
  border-color: var(--gold-primary);
}

.control-btn-premium:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.control-btn-premium:disabled:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  border-color: var(--border-dark);
  box-shadow: none;
}

.action-group {
  flex-shrink: 0;
}

.premium-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(198, 166, 100, 0.3);
  position: relative;
  overflow: hidden;
}

.premium-cta-btn::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.6s ease;
}

.premium-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(198, 166, 100, 0.4);
  gap: 1rem;
}

.premium-cta-btn:hover::before {
  left: 100%;
}

/* Mobile Gesture Hint */
.mobile-gesture-hint {
  display: none;
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
}

.gesture-hint-content {
  display: flex;
  justify-content: space-around;
  background: rgba(198, 166, 100, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 166, 100, 0.2);
  border-radius: 16px;
  padding: 1rem;
}

.hint-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
}

.hint-icon {
  font-size: 1.3rem;
  filter: grayscale(0.3);
}

.hint-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

/* ==================== RESPONSIVE ZOOM MODAL ==================== */
@media (max-width: 1024px) {
  .zoom-modal-container-premium {
    width: 95vw;
    height: 85vh;
    margin: 2rem;
  }
  
  .zoom-header-premium {
    padding: 1.25rem 1.5rem;
  }
  
  .product-name-premium {
    font-size: 1.3rem;
  }
  
  .zoom-controls-premium {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .controls-group {
    width: 100%;
    justify-content: center;
  }
  
  .action-group {
    width: 100%;
  }
  
  .premium-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .zoom-modal-premium {
    padding: 0;
  }
  
  .zoom-modal-container-premium {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }
  
  .zoom-header-premium {
    padding: 1rem 1.25rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10002;
    border-bottom: 1px solid var(--border-dark);
  }
  
  .header-content-premium {
    gap: 1rem;
  }
  
  .product-name-premium {
    font-size: 1.2rem;
  }
  
  .product-price-premium {
    font-size: 1.1rem;
  }
  
  .premium-action-btn {
    width: 44px;
    height: 44px;
  }
  
  .zoom-image-container-premium {
    margin-top: 80px;
    margin-bottom: 140px;
  }
  
  .zoom-controls-premium {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-dark);
    z-index: 10002;
  }
  
  .controls-group {
    gap: 0.75rem;
  }
  
  .control-btn-premium {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  
  .control-label {
    display: none;
  }
  
  .nav-arrow {
    display: none;
  }
  
  .mobile-gesture-hint {
    display: block;
    bottom: 160px;
  }
  
  .gesture-hint-content {
    padding: 0.875rem;
  }
  
  .hint-item span {
    font-size: 0.7rem;
  }
}

/* Fullscreen Mode */
.zoom-modal-premium.fullscreen .zoom-modal-container-premium {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
}

.zoom-modal-premium.fullscreen .zoom-header-premium,
.zoom-modal-premium.fullscreen .zoom-controls-premium,
.zoom-modal-premium.fullscreen .mobile-gesture-hint {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.zoom-modal-premium.fullscreen:hover .zoom-header-premium,
.zoom-modal-premium.fullscreen:hover .zoom-controls-premium,
.zoom-modal-premium.fullscreen:hover .mobile-gesture-hint {
  opacity: 1;
  pointer-events: all;
}

/* Body scroll lock */
body.zoom-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Hide scrollbars */
.zoom-image-container-premium::-webkit-scrollbar {
  display: none;
}

.zoom-image-container-premium {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ==================== ENHANCED ACCESSIBILITY ==================== */
@media (max-width: 768px) {
  .search-close-btn:focus,
  .filter-close-btn:focus,
  .mobile-filter-toggle:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
  }
  
  .global-search-input:focus {
    outline: none;
    border-color: var(--gold-primary);
  }
}

/* ==================== PREMIUM TOUCH INTERACTIONS ==================== */
@media (hover: none) and (pointer: coarse) {
  .search-close-btn:active,
  .filter-close-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
  
  .mobile-filter-toggle:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
  }
}
