/* ============================================
   💎 BARUKH SAGIT — LUXURY THEME
   Inspired by Cartier, Tiffany, Van Cleef
   ============================================ */

:root {
  --luxury-black: #000000;
  --luxury-gold: #D4AF37;
  --luxury-white: #ffffff;
  --luxury-gray: #111111;
  --luxury-gray-medium: #888888;
  --luxury-text: #f0f0f0;
  --luxury-text-muted: #a0a0a0;
  --luxury-border: rgba(255, 255, 255, 0.15);

  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Inter', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --spacing-section: 12rem;

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-image: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
/* Base Styles */
body {
  background-color: var(--luxury-black);
  color: var(--luxury-text);
  font-family: var(--font-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 300;
}

/* ============================================
   HERO SECTION - Manus Premium Style
   ============================================ */
.luxury-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--luxury-black);
}

.hero-video,
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--luxury-white);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--luxury-gold);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.1s forwards;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-cta {
  display: inline-flex;
  /* Better alignment */
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  border: 1px solid var(--luxury-gold);
  /* Thinner, solid border */
  border-style: solid !important;
  /* Force solid */
  background: transparent;
  color: var(--luxury-gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  /* More spacing */
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  /* Smooth luxury transition */
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  background: var(--luxury-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  /* Glow effect */
}

/* Scroll indicator - Manus */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 3;
  opacity: 0.7;
}

.scroll-indicator svg {
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PRODUCT GRID - Manus Premium Style
   ============================================ */
.luxury-products {
  padding: var(--spacing-section) var(--spacing-md);
  /* Generous 128px - Manus */
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 8rem;
  /* Generous - Manus */
  font-size: clamp(2.5rem, 7vw, 6rem);
  /* Larger - Manus */
  font-weight: 300;
  letter-spacing: -0.02em;
  /* Negative spacing - Manus */
  color: var(--luxury-text);
  position: relative;
  padding-bottom: 2rem;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem 2rem;
  margin-top: var(--spacing-lg);
}

.product-card {
  position: relative;
  background: var(--luxury-black);
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
  overflow: hidden;
}

.product-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image-wrapper {
  position: relative;
  padding-top: 125%;
  /* 4:5 aspect ratio - Manus! */
  overflow: hidden;
  background: #050505;
  margin-bottom: 1.5rem;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-image);
  /* 700ms - Manus */
}

/* Hover overlay - Manus */
.product-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition-fast);
  pointer-events: none;
  z-index: 1;
}

.product-card:hover .product-image-wrapper::after {
  background: rgba(255, 255, 255, 0.05);
}

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

.product-info {
  padding: 0 1rem;
  text-align: center;
  transition: var(--transition-fast);
}

.product-title {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 1.5vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: var(--luxury-text);
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.product-card:hover .product-title {
  color: var(--luxury-gold);
  /* Gold on hover - Manus */
}

.product-price {
  font-size: clamp(0.875rem, 1vw, 1rem);
  /* 14px → 16px */
  font-weight: 300;
  /* Light - Manus */
  color: var(--luxury-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-secondary);
}

.product-materials {
  font-size: 0.75rem;
  color: var(--luxury-gray-medium);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
}

.hover-icon-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--luxury-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
  color: var(--luxury-black);
}

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

/* No products message */
.no-products-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.no-products-message h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--luxury-text);
  letter-spacing: 0.1em;
}

.no-products-message p {
  color: #999;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER - Minimalist
   ============================================ */
.luxury-footer {
  background: var(--luxury-black);
  color: var(--luxury-white);
  padding: 10rem var(--spacing-md);
  margin-top: var(--spacing-xl);
}

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

.footer-section h3 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  color: var(--luxury-gold);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  margin-bottom: var(--spacing-xs);
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  color: var(--luxury-white);
  transform: translateX(8px);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATIONS - Manus Style & New Additions
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {

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

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

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

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    /* 2 columns on mobile */
    gap: var(--spacing-md);
  }

  .luxury-hero {
    height: 70vh;
    min-height: 500px;
  }
}

/* ============================================
   COLLECTION HERO WITH VIDEO
   ============================================ */
.collection-hero-video {
  position: relative;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--luxury-black);
}

.collection-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.collection-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.collection-hero-content {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--luxury-white);
  max-width: 900px;
  padding: 2rem 3rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

.collection-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--luxury-gold);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.collection-hero-count {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

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

.collection-scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Filters section below hero */
.collections-filters-section {
  background: var(--luxury-white);
  padding: 2rem 2rem 1rem;
  position: sticky;
  top: 80px;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .collection-hero-video {
    height: 50vh;
    min-height: 350px;
  }

  .collection-hero-brand {
    letter-spacing: 0.2em;
  }

  .collection-hero-tagline {
    letter-spacing: 0.2em;
    font-size: 0.9rem;
  }
}