@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');
@import url('modal.css');
@import url('socials.css');

:root {
  /* Colors */
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA8C2C;
  --cream-soft: #F9F9F6;
  --cream-dark: #EAE6D7;
  --white-pure: #FFFFFF;
  --black-luxury: #0A0A0A;
  --gray-dark: #222222;
  --gray-light: #F0F0F0;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(10, 10, 10, 0.6);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-border-gold: rgba(212, 175, 55, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black-luxury);
  background-color: var(--cream-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black-luxury);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: #555;
}

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

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

img, video {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.bg-dark { background-color: var(--black-luxury); color: var(--white-pure); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p { color: var(--white-pure); }

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
}

.glass-panel-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  color: var(--white-pure);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--white-pure);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  color: var(--white-pure);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--black-luxury);
  border: 1px solid var(--black-luxury);
}

.btn-outline:hover {
  background-color: var(--black-luxury);
  color: var(--white-pure);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white-pure);
  border: 1px solid var(--white-pure);
}

.btn-outline-light:hover {
  background-color: var(--white-pure);
  color: var(--black-luxury);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-pure);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.5rem 0;
}

header.site-header.scrolled {
  padding: 0.8rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black-luxury);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  color: var(--gold-primary);
}

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

.nav-links li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: width var(--transition-normal);
}

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

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

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--black-luxury);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black-luxury);
}

/* Dark Header variants (for hero section visibility) */
header.site-header.dark-mode:not(.scrolled) .logo,
header.site-header.dark-mode:not(.scrolled) .nav-links li a,
header.site-header.dark-mode:not(.scrolled) .cart-btn,
header.site-header.dark-mode:not(.scrolled) .mobile-menu-btn {
  color: var(--white-pure);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--cream-soft);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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.6) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white-pure);
  max-width: 800px;
  padding: 0 var(--space-sm);
  z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--gold-primary);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.9);
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Sections General */
.section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  position: relative;
  background: var(--white-pure);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all var(--transition-normal);
  group: hover;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-image {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
  background-color: var(--gray-light);
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  transition: bottom var(--transition-normal);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.product-card:hover .product-actions {
  bottom: 0;
}

.btn-action {
  background: var(--white-pure);
  color: var(--black-luxury);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-action:hover {
  background: var(--gold-primary);
  color: var(--white-pure);
}

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

.product-brand {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--black-luxury);
}

.product-price {
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* Logos Marquee */
.logo-marquee-container {
  overflow: hidden;
  padding: 3rem 0;
  background: var(--white-pure);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.logo-marquee {
  display: flex;
  width: fit-content;
  animation: marquee 30s linear infinite;
}

.logo-item {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3rem;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all var(--transition-normal);
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Feature Split Section (About / Story) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.split-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.split-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  border-radius: 20px;
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  padding: var(--space-xl) 0;
  background-color: var(--black-luxury);
  color: var(--white-pure);
  text-align: center;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.15) 0%, transparent 70%);
  z-index: 0;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-content h2 {
  color: var(--white-pure);
}

.newsletter-form {
  display: flex;
  margin-top: 2rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: var(--white-pure);
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form .btn {
  padding: 0.8rem 2rem;
}

/* Footer */
.site-footer {
  background-color: var(--black-luxury);
  color: var(--white-pure);
  padding: var(--space-lg) 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--white-pure);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.footer-logo {
  font-size: 2rem;
  color: var(--white-pure);
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-pure);
}

.social-links a:hover {
  background: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  padding: 12rem 0 6rem;
  background-color: var(--cream-dark);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(0,0,0,0.05)"/></svg>') repeat;
  opacity: 0.5;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--black-luxury);
}

.breadcrumb li::after {
  content: '/';
  margin-left: 0.5rem;
  color: #ccc;
}

.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li:last-child {
  color: var(--gold-primary);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--white-pure);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Filtering & Store UI */
.store-layout {
  display: flex;
  gap: 3rem;
}

.store-sidebar {
  width: 250px;
  flex-shrink: 0;
}

.store-content {
  flex: 1;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 0.5rem;
}

.filter-list {
  list-style: none;
}

.filter-list li {
  margin-bottom: 0.5rem;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .store-layout {
    flex-direction: column;
  }
  .store-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .header-actions {
    display: flex;
    margin-left: auto;
    margin-right: 1.5rem;
  }
  .header-actions .btn {
    display: none;
  }
  .header-actions.mobile-visible {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .product-actions {
    bottom: 0;
    padding: 0.5rem;
  }
  .btn-action {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .product-info {
    padding: 1rem;
  }
  .product-title {
    font-size: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section {
    padding: 4rem 0;
  }
}
