:root {
  --gold-primary: #C6A664;
  --gold-dark: #A88C4A;
  --gold-light: #E8D9B0;
  --beige-primary: #D6C6B1;
  --beige-light: #F5F3F0;
  --beige-lighter: #FAF9F7;
  --text-dark: #2C2C2C;
  --text-light: #6C6C6C;
  --border-light: #EAE5DD;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(214, 198, 177, 0.15);
  --shadow-hover: 0 8px 30px rgba(198, 166, 100, 0.2);
  
  /* Dark Background Variables */
  --bg-dark: #0f0f0f;
  --bg-darker: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --border-dark: #333333;
  --text-on-dark: #ffffff;
  --text-muted-dark: #a0a0a0;
}

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

/* Premium Hero Section - Dark Theme */
.premium-hero-section {
  position: relative;
  min-height: 70vh;
  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, 6rem);
  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;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  margin: 0 auto 0.5rem;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { height: 40px; opacity: 1; }
  50% { height: 60px; opacity: 0.7; }
}

/* Section Headers - Dark Theme */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.header-content {
  flex: 1;
}

.section-title {
  font-family: 'Unica One', cursive;
  font-size: 2.5rem;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.section-subtitle {
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.section-decoration {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

.decoration-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.view-all-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
}

.view-all-link:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  gap: 0.75rem;
}

/* Products Grid - Dark Theme */
.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: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
  opacity: 0;
  transform: translateY(20px);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(198, 166, 100, 0.2);
  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);
}

/* 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%;
}

/* ==================== ULTRA PREMIUM 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 {
  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 {
  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;
}

.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 - Dark Theme */
.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: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(198, 166, 100, 0.2);
  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 - Dark Theme */
.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;
}

/* Pagination - Dark Theme */
.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);
}

/* Brand Story Section - Dark Theme */
.brand-story {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-title {
  font-family: 'Unica One', cursive;
  font-size: 2.5rem;
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.story-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.story-description {
  color: var(--text-muted-dark);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.story-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-on-dark);
  font-weight: 500;
}

.feature i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.story-visual {
  position: relative;
  height: 400px;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-dark);
}

.card-1 {
  width: 200px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
  width: 180px;
  height: 100px;
  top: 50%;
  right: 20%;
  animation: floatCard 6s ease-in-out infinite 2s;
}

.card-3 {
  width: 160px;
  height: 90px;
  bottom: 20%;
  left: 30%;
  animation: floatCard 6s ease-in-out infinite 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(3deg); }
  66% { transform: translateY(10px) rotate(-2deg); }
}

.video-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.8rem auto;
  width: 120px;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  flex: 1;
}

.divider-dot {
  width: 4px;
  height: 4px;
  background: var(--text-on-dark);
  border-radius: 50%;
  margin: 0 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* ==================== PREMIUM VIDEO SECTION STYLES ==================== */
/* Add this to your existing home.css file */

/* ==================== UPDATED PREMIUM VIDEO SECTION STYLES ==================== */
.premium-video-section {
  position: relative;
  height: 65vh;
  min-height: 550px;
  overflow: hidden;
  background: var(--bg-darker);
  margin: 0 auto;
  max-width: 1400px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(0.85) contrast(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(30, 30, 30, 0.3) 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 1;
}

.video-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 2rem;
}

.video-text-content {
  text-align: center;
  color: var(--text-on-dark);
  max-width: 580px;
  animation: fadeInUp 1.2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 3rem 0;
}

.video-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  opacity: 0.9;
  margin-top: 2rem;
}

.video-cta-container {
  margin-bottom: 3rem;
}

.video-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--text-on-dark);
  padding: 1.1rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
}

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

.video-cta-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--text-on-dark);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.video-cta-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

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

.video-cta-btn:hover::after {
  width: 70%;
}

.video-cta-btn i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.video-cta-btn:hover i {
  transform: translateX(4px);
}

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

/* Responsive Design for Video Section */
@media (max-width: 768px) {
  .premium-video-section {
    height: 55vh;
    min-height: 450px;
    margin: 0 1rem;
    border-radius: 0 0 15px 15px;
  }
  
  .video-content {
    padding: 0 1.5rem;
  }
  
  .video-text-content {
    padding: 2rem 0;
  }
  
  .video-subtitle {
    font-size: 0.95rem;
    margin-top: 1.5rem;
  }
  
  .video-cta-btn {
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .premium-video-section {
    height: 50vh;
    min-height: 400px;
    margin: 0 0.5rem;
  }
  
  .video-text-content {
    max-width: 90%;
    padding: 1.5rem 0;
  }
  
  .video-cta-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.8rem;
  }
   .video-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-on-dark);
}
  
  .video-subtitle {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design - KEEPING YOUR MOBILE STRUCTURE */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .collection-card {
    margin-bottom: 0;
  }
  
  .collection-info {
    padding: 1rem;
  }
  
  .collection-name {
    font-size: 1rem;
  }
  
  .collection-description {
    font-size: 0.8rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .premium-hero-section {
    min-height: 60vh;
    padding: 1rem 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-visual {
    height: 200px;
  }
  
  .premium-video-section {
    height: 55vh;
    min-height: 450px;
    margin: 0 1rem;
    border-radius: 0 0 15px 15px;
  }
  
  .video-content {
    padding: 0 1.5rem;
  }
  
  .video-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .video-subtitle {
    font-size: 0.95rem;
  }
  
  .video-description {
    font-size: 1rem;
  }
  
  .video-cta-btn {
    padding: 1rem 2rem;
  }
}



@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-badge {
    padding: 0.35rem 0.7rem;
    font-size: 0.6rem;
  }
  
  .premium-video-section {
    height: 50vh;
    min-height: 400px;
    margin: 0 0.5rem;
  }
  
  .video-title {
    font-size: 1.7rem;
  }
  
  .video-text-content {
    max-width: 90%;
  }
  
  .video-cta-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.8rem;
  }
}


/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for product cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease forwards;
}

.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; }

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

/* For large desktops - 4 products per row */
@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* For desktop - 4 products per row */
@media (min-width: 992px) and (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* For tablets - 3 products per row */
@media (max-width: 991px) and (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* For mobile devices - 2 products per row */
@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .product-card {
    margin-bottom: 0;
    min-width: 0; /* Important for responsive behavior */
  }
  
  .product-info {
    padding: 1rem;
  }
  
  .product-name {
    font-size: 1rem;
    min-height: 2.4em;
  }
  
  .product-price {
    font-size: 0.9rem;
  }
  
  .price-current, .price-new {
    font-size: 1rem;
  }
}

/* For very small mobile devices - ensure 2 products fit nicely */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .product-card {
    min-width: 0;
  }
  
  .product-info {
    padding: 0.75rem;
  }
  
  .product-name {
    font-size: 0.9rem;
    min-height: 2.2em;
  }
  
  .price-current, .price-new {
    font-size: 0.9rem;
  }
  
  .product-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.6rem;
  }
  
  .action-btn {
    width: 35px;
    height: 35px;
  }
}

/* Categories Grid - Responsive Updates */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* For desktop - 4 categories per row */
@media (min-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* For tablets - 2 categories per row */
@media (max-width: 1199px) and (min-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* For mobile devices - 2 categories per row */
@media (max-width: 767px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* For very small mobile devices - 1 category per row */
@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Ensure all product cards have consistent responsive behavior */
.product-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
  opacity: 0;
  transform: translateY(20px);
  min-width: 0; /* Important for responsive grid behavior */
  width: 100%; /* Ensure full width within grid cell */
}

/* Ensure images are properly responsive */
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  width: 100%;
}

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

/* Section header adjustments for mobile */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .view-all-link {
    align-self: stretch;
    text-align: center;
  }
}

/* Pagination responsive adjustments */
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .pagination-btn, .pagination-page {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
/* Categories Grid - Dark Theme */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* For large desktops - 4 categories per row */
@media (min-width: 1200px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* For desktop - 4 categories per row */
@media (min-width: 992px) and (max-width: 1199px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* For tablets - 3 categories per row */
@media (max-width: 991px) and (min-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* For mobile devices - 2 categories per row */
@media (max-width: 767px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .collection-card {
    margin-bottom: 0;
    min-width: 0;
  }
  
  .collection-info {
    padding: 1rem;
  }
  
  .collection-name {
    font-size: 1.1rem;
  }
  
  .collection-description {
    font-size: 0.85rem;
  }
}

/* For very small mobile devices - 2 categories per row with adjusted spacing */
@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .collection-card {
    min-width: 0;
  }
  
  .collection-info {
    padding: 0.75rem;
  }
  
  .collection-name {
    font-size: 1rem;
  }
  
  .collection-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .collection-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Ensure all category cards have consistent responsive behavior */
.collection-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border-dark);
  min-width: 0; /* Important for responsive grid behavior */
  width: 100%; /* Ensure full width within grid cell */
}

/* Ensure category images are properly responsive */
.collection-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
/* ==================== 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);
}

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

.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));
}

/* Zoom Level Indicator */
.zoom-level-premium {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.zoom-percent {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 45px;
  text-align: center;
}

.zoom-slider-container {
  width: 120px;
}

.zoom-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border-dark);
  outline: none;
  -webkit-appearance: none;
}

.zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 4px 12px rgba(198, 166, 100, 0.4);
}

.zoom-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 4px 12px rgba(198, 166, 100, 0.4);
}

/* 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 DESIGN ==================== */

/* Tablet */
@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;
  }
}

/* Mobile */
@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-level-premium {
    top: 90px;
    right: 1rem;
    padding: 0.6rem 0.8rem;
  }
  
  .zoom-slider-container {
    width: 100px;
  }
  
  .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;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .zoom-header-premium {
    padding: 0.875rem 1rem;
  }
  
  .product-name-premium {
    font-size: 1.1rem;
  }
  
  .premium-action-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .zoom-level-premium {
    top: 85px;
    right: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
  
  .zoom-slider-container {
    width: 80px;
  }
  
  .zoom-controls-premium {
    padding: 0.875rem 1rem;
  }
  
  .control-btn-premium {
    padding: 0.875rem;
    border-radius: 14px;
  }
  
  .premium-cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .mobile-gesture-hint {
    bottom: 150px;
    padding: 0.875rem 1rem;
  }
  
  .gesture-hint-content {
    padding: 0.75rem;
  }
  
  .hint-icon {
    font-size: 1.1rem;
  }
  
  .hint-item span {
    font-size: 0.65rem;
  }
}

/* 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;
}
/* ==================== PREMIUM VIDEO CONTROLS ==================== */
.video-controls-premium {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  pointer-events: none;
}

.control-group-left,
.control-group-right {
  display: flex;
  gap: 1rem;
  pointer-events: auto;
}

.premium-video-btn {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  width: 56px;
  height: 56px;
  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.2rem;
  position: relative;
  overflow: hidden;
}

.premium-video-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-video-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-video-btn:hover::before {
  left: 100%;
}

.premium-video-btn.muted .sound-on,
.premium-video-btn:not(.muted) .sound-off {
  display: none;
}

/* Video fullscreen styles */
.premium-video-section.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  border-radius: 0;
  margin: 0;
}

.premium-video-section.fullscreen .video-container {
  border-radius: 0;
}

.premium-video-section.fullscreen .video-controls-premium {
  bottom: 3rem;
}

/* Responsive video controls */
@media (max-width: 768px) {
  .video-controls-premium {
    padding: 0 1.5rem;
    bottom: 1.5rem;
  }
  
  .premium-video-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .video-controls-premium {
    padding: 0 1rem;
    bottom: 1rem;
  }
  
  .premium-video-btn {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}
/* ==================== SIMPLE DOUBLE CLICK INDICATOR ==================== */
.product-card {
  cursor: pointer;
  position: relative;
}

/* Optional: Add a subtle hint */
.product-card:hover::after {
  content: 'Double-click to view';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.8);
  color: var(--text-on-dark);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

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