@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-mirror: #E2E2E2;
  --color-lead: #171717;
  --color-mercury: #8E8E93;
  --color-stellar: #FFFFFF;
  --color-zinc: #3A3A3C;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(23, 23, 23, 0.08);
  --shadow-md: 0 4px 16px rgba(23, 23, 23, 0.12);
  --shadow-lg: 0 8px 32px rgba(23, 23, 23, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-lead);
  background: var(--color-mirror);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-luxury), height var(--transition-luxury);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-lead);
  color: var(--color-stellar);
}

.btn-primary:hover {
  background: var(--color-zinc);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-luxury-content .btn-primary,
.hero-sunglasses-content .btn-primary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-stellar);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-luxury-content .btn-primary:hover,
.hero-sunglasses-content .btn-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-lead);
  border: 1px solid var(--color-lead);
}

.btn-secondary:hover {
  background: var(--color-lead);
  color: var(--color-stellar);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

header.scrolled {
  position: fixed;
  background: rgba(226, 226, 226, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-lead);
  transition: all var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-lead);
  transition: width var(--transition-base);
}

nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: var(--space-xs);
  transition: all var(--transition-base);
}

.burger:hover {
  transform: scale(1.1);
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--color-lead);
  transition: all var(--transition-luxury);
  border-radius: 2px;
}

.burger.active {
  position: fixed;
  right: var(--space-md);
  top: var(--space-md);
}

.burger.active span {
  background: rgba(255, 255, 255, 0.9);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-mirror) 0%, var(--color-stellar) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: var(--space-md);
  transform: translateY(30px);
  animation: fadeInUp 1s var(--transition-luxury) forwards;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  transform: translateY(30px);
  animation: fadeInUp 1s 0.2s var(--transition-luxury) forwards;
}

.hero .btn {
  transform: translateY(30px);
  animation: fadeInUp 1s 0.4s var(--transition-luxury) forwards;
}

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

/* Luxury Hero Styles */
.hero-luxury {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.hero-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  z-index: 1;
}

.hero-luxury::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.hero-luxury-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.hero-luxury-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: var(--color-stellar);
}

.hero-luxury-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(50px);
  animation: fadeInUpLuxury 1.2s var(--transition-luxury) forwards;
}

.hero-luxury-content .hero-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
  transform: translateY(30px);
  animation: fadeInUpLuxury 1s 0.1s var(--transition-luxury) forwards;
}

.hero-luxury-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 650px;
  transform: translateY(30px);
  animation: fadeInUpLuxury 1s 0.3s var(--transition-luxury) forwards;
}

.hero-luxury-content .btn {
  transform: translateY(30px);
  animation: fadeInUpLuxury 1s 0.5s var(--transition-luxury) forwards;
}

.hero-luxury-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: var(--space-md) 0;
  animation: fadeInUpLuxury 1s 0.4s var(--transition-luxury) forwards;
}

.hero-luxury-accent {
  position: absolute;
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-luxury-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

/* Collection Hero */
.hero-collection {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #fafafa 100%);
}

.hero-collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.02) 50%, transparent 70%),
    radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.hero-collection-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.hero-collection-content h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  color: var(--color-lead);
  transform: translateY(40px) scale(0.95);
  animation: fadeInScale 1.3s var(--transition-luxury) forwards;
}

.hero-collection-content .hero-description {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  color: var(--color-zinc);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(30px);
  animation: fadeInUpLuxury 1s 0.4s var(--transition-luxury) forwards;
}

.hero-collection-accent-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-lead), transparent);
  margin: var(--space-lg) auto;
  transform: scaleX(0);
  animation: scaleInX 1s 0.6s var(--transition-luxury) forwards;
}

/* Sunglasses Hero */
.hero-sunglasses {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
}

.hero-sunglasses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-sunglasses-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  z-index: 1;
}

.hero-sunglasses-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--color-stellar);
}

.hero-sunglasses-content h1 {
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(-50px);
  animation: slideInLeft 1.2s var(--transition-luxury) forwards;
}

.hero-sunglasses-content p {
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  transform: translateX(-30px);
  animation: slideInLeft 1s 0.3s var(--transition-luxury) forwards;
}

.hero-sunglasses-accent {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
  animation: fadeInRotate 1.5s 0.8s var(--transition-luxury) forwards;
}

.hero-sunglasses-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

/* Contact Hero */
.hero-contact {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.01) 2px,
      rgba(0, 0, 0, 0.01) 4px
    );
  z-index: 1;
}

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

.hero-contact-content h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  color: var(--color-lead);
  transform: translateY(40px);
  animation: fadeInUpLuxury 1.2s var(--transition-luxury) forwards;
}

.hero-contact-content p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: var(--color-zinc);
  margin-bottom: var(--space-lg);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(30px);
  animation: fadeInUpLuxury 1s 0.3s var(--transition-luxury) forwards;
}

.hero-contact-decoration {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  animation: fadeInUpLuxury 1s 0.5s var(--transition-luxury) forwards;
}

.hero-contact-decoration span {
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--color-lead), transparent);
  display: block;
}

.hero-contact-decoration span:nth-child(2) {
  height: 60px;
  animation-delay: 0.1s;
}

.hero-contact-decoration span:nth-child(3) {
  height: 50px;
  animation-delay: 0.2s;
}

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

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

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleInX {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fadeInRotate {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

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

.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.grid-item {
  background: var(--color-stellar);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
  position: relative;
}

.grid-item:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.grid-item-1 {
  grid-column: span 7;
  grid-row: span 2;
}

.grid-item-2 {
  grid-column: span 5;
}

.grid-item-3 {
  grid-column: span 5;
}

.grid-item-4 {
  grid-column: span 4;
}

.grid-item-5 {
  grid-column: span 8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--color-stellar);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-luxury);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-zinc);
  margin-bottom: var(--space-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-stellar);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-mercury);
  margin-bottom: var(--space-sm);
}

.contact-section {
  background: var(--color-stellar);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  transform: skewY(-2deg);
  margin: var(--space-xl) 0;
}

.contact-section > * {
  transform: skewY(2deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid var(--color-mercury);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  background: var(--color-mirror);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-lead);
  box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
}

.info-icon {
  font-size: 1.5rem;
  color: var(--color-mercury);
  flex-shrink: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--color-lead);
  color: var(--color-mirror);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.footer-links a {
  color: var(--color-mirror);
  font-size: 0.8125rem;
  transition: color var(--transition-base);
}

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

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--color-lead);
  color: var(--color-stellar);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: bottom var(--transition-luxury);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  padding: var(--space-lg);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-mercury);
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s var(--transition-luxury);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.error-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-size: 8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-mercury);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.parallax-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s ease-out;
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--color-stellar);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-reveal {
  transform: translateY(40px);
  transition: all var(--transition-luxury);
}

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

@media (max-width: 1024px) {
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-item-1,
  .grid-item-2,
  .grid-item-3,
  .grid-item-4,
  .grid-item-5 {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  /* Mobile Navigation Overlay */
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-luxury), visibility var(--transition-luxury);
    z-index: 998;
    pointer-events: none;
  }
  
  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #171717 50%, #0f0f0f 100%);
    flex-direction: column;
    padding: 0;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.5);
    transition: right var(--transition-luxury);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  nav ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
      radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }
  
  nav ul::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
  }
  
  nav ul.active {
    right: 0;
  }
  
  nav ul li {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-luxury), transform var(--transition-luxury);
  }
  
  nav ul.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  nav ul.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  
  nav ul.active li:nth-child(2) {
    transition-delay: 0.15s;
  }
  
  nav ul.active li:nth-child(3) {
    transition-delay: 0.2s;
  }
  
  nav ul.active li:nth-child(4) {
    transition-delay: 0.25s;
  }
  
  nav ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
    transition: width var(--transition-luxury);
    z-index: 0;
  }
  
  nav ul li:hover::before {
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
    transition: color var(--transition-luxury), padding-left var(--transition-luxury);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  nav ul li:last-child a {
    border-bottom: none;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    transition: width var(--transition-luxury);
  }
  
  nav ul li a:hover {
    color: #ffffff;
    padding-left: calc(var(--space-lg) + 10px);
  }
  
  nav ul li a:hover::after {
    width: 60px;
  }
  
  nav ul li a::before {
    content: '';
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-luxury), transform var(--transition-luxury);
  }
  
  nav ul li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
  }
  
  /* Mobile Menu Header */
  nav ul::first-child {
    padding-top: var(--space-xl);
  }
  
  /* Burger Menu Styling */
  .burger {
    display: flex;
    position: relative;
    z-index: 1001;
    padding: var(--space-xs);
  }
  
  .burger span {
    background: var(--color-lead);
    transition: all var(--transition-luxury);
  }
  
  .burger.active span {
    background: rgba(255, 255, 255, 0.9);
  }
  
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Close button area */
  nav ul li:first-child {
    padding-top: calc(var(--space-xl) + 60px);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
  }
  
  .contact-section {
    transform: none;
  }
  
  .contact-section > * {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-luxury,
  .hero-sunglasses {
    min-height: 85vh;
  }
  
  .hero-collection {
    min-height: 75vh;
  }
  
  .hero-contact {
    min-height: 60vh;
  }
  
  .hero-luxury-accent {
    display: none;
  }
  
  .hero-sunglasses-accent {
    width: 120px;
    height: 120px;
    bottom: 5%;
    right: 5%;
  }
  
  .hero-sunglasses-accent::before {
    width: 90px;
    height: 90px;
  }
  
  .hero-contact-decoration span {
    height: 30px;
  }
  
  .hero-contact-decoration span:nth-child(2) {
    height: 40px;
  }
  
  .hero-contact-decoration span:nth-child(3) {
    height: 35px;
  }
  
  .product-image {
    height: 280px;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 375px) {
  :root {
    --space-sm: 0.875rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }
  
  h1 {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .product-image {
    height: 250px;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.625rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
  }
  
  body {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.375rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.125rem;
    line-height: 1.3;
  }
  
  h4 {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  p {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  
  .logo {
    font-size: 1.125rem;
    letter-spacing: 0.03em;
  }
  
  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
  }
  
  nav ul {
    width: 90%;
    max-width: 320px;
    padding: 0;
  }
  
  nav ul li a {
    padding: var(--space-md) var(--space-md);
    font-size: 0.875rem;
    letter-spacing: 0.12em;
  }
  
  nav ul li a:hover {
    padding-left: calc(var(--space-md) + 8px);
  }
  
  nav ul li a::before {
    left: var(--space-sm);
    width: 3px;
    height: 3px;
  }
  
  nav ul li:first-child {
    padding-top: calc(var(--space-lg) + 50px);
  }
  
  .burger {
    gap: 4px;
    padding: var(--space-xs);
  }
  
  .burger.active {
    right: var(--space-sm);
    top: var(--space-sm);
  }
  
  .burger span {
    width: 22px;
    height: 2px;
  }
  
  body::after {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  /* Hero Sections */
  .hero {
    min-height: 70vh;
    padding: var(--space-lg) 0;
  }
  
  .hero-luxury {
    min-height: 75vh;
    padding: var(--space-lg) 0;
  }
  
  .hero-luxury::after {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -20%;
  }
  
  .hero-luxury-content {
    max-width: 100%;
  }
  
  .hero-luxury-content h1 {
    font-size: 1.875rem;
    margin-bottom: var(--space-sm);
    line-height: 1.15;
  }
  
  .hero-luxury-content .hero-subtitle {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-xs);
  }
  
  .hero-luxury-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }
  
  .hero-luxury-divider {
    width: 60px;
    margin: var(--space-sm) 0;
  }
  
  .hero-luxury-accent {
    display: none;
  }
  
  .hero-collection {
    min-height: 65vh;
    padding: var(--space-lg) 0;
  }
  
  .hero-collection-content h1 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-collection-content .hero-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  
  .hero-collection-accent-line {
    width: 60px;
    margin: var(--space-md) auto;
  }
  
  .hero-sunglasses {
    min-height: 70vh;
    padding: var(--space-lg) 0;
  }
  
  .hero-sunglasses-content h1 {
    font-size: 1.875rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-sunglasses-content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .hero-sunglasses-accent {
    width: 80px;
    height: 80px;
    bottom: 5%;
    right: 5%;
  }
  
  .hero-sunglasses-accent::before {
    width: 60px;
    height: 60px;
  }
  
  .hero-contact {
    min-height: 55vh;
    padding: var(--space-md) 0;
  }
  
  .hero-contact-content h1 {
    font-size: 1.875rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-contact-content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .hero-contact-decoration {
    margin-top: var(--space-md);
    gap: var(--space-xs);
  }
  
  .hero-contact-decoration span {
    width: 3px;
    height: 25px;
  }
  
  .hero-contact-decoration span:nth-child(2) {
    height: 35px;
  }
  
  .hero-contact-decoration span:nth-child(3) {
    height: 30px;
  }
  
  /* Sections */
  .section {
    padding: var(--space-lg) 0;
  }
  
  .section-title {
    margin-bottom: var(--space-md);
  }
  
  /* Product Cards */
  .product-card {
    border-radius: var(--radius-sm);
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .product-price {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
  }
  
  .product-grid {
    gap: var(--space-sm);
  }
  
  /* Grid Items */
  .asymmetric-grid {
    gap: var(--space-sm);
  }
  
  .grid-item {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
  }
  
  .grid-item img {
    height: 200px;
    margin-bottom: var(--space-xs);
  }
  
  /* Features */
  .features-grid {
    gap: var(--space-sm);
  }
  
  .feature-card {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
  }
  
  .feature-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
  }
  
  /* Contact Section */
  .contact-section {
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    transform: none;
  }
  
  .contact-section > * {
    transform: none;
  }
  
  .contact-grid {
    gap: var(--space-md);
  }
  
  .contact-form {
    gap: var(--space-xs);
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.625rem;
    font-size: 0.8125rem;
  }
  
  .form-group label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .checkbox-group {
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 0.125rem;
  }
  
  .checkbox-group label {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .contact-info {
    gap: var(--space-sm);
  }
  
  .info-item {
    gap: var(--space-xs);
    flex-wrap: wrap;
  }
  
  .info-icon {
    font-size: 1.125rem;
  }
  
  .info-item h4 {
    font-size: 0.9375rem;
  }
  
  .info-item p {
    font-size: 0.8125rem;
  }
  
  /* Map */
  .map-container {
    height: 220px;
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
  }
  
  /* Parallax */
  .parallax-section {
    min-height: 50vh;
    padding: var(--space-lg) 0;
  }
  
  .parallax-content h2 {
    font-size: 1.5rem;
  }
  
  .parallax-content p {
    font-size: 0.875rem;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
    font-size: 0.75rem;
    width: 100%;
  }
  
  .footer-links li {
    width: 100%;
  }
  
  /* Cookie Popup */
  .cookie-popup {
    padding: var(--space-sm);
  }
  
  .cookie-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .cookie-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
  }
  
  .cookie-buttons .btn {
    width: 100%;
    padding: 0.625rem;
  }
  
  /* Header */
  header {
    padding: var(--space-sm) 0;
  }
  
  header.scrolled {
    padding: var(--space-xs) 0;
  }
  
  .header-content {
    gap: var(--space-xs);
  }
  
  /* Animations - Reduce for performance */
  .hero-luxury::after {
    animation: none;
  }
  
  .grid-item:hover {
    transform: none;
  }
  
  .product-card:hover {
    transform: none;
  }
  
  .product-card:hover .product-image {
    transform: none;
  }
  
  /* Utility */
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}