:root {
  --color-obsidian: #0E0E0E;
  --color-slate: #2A2D34;
  --color-navy: #0B1E3A;
  --color-electric: #00CFFF;
  --color-pearl: #EDEDED;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-display: 3rem;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-luxury: 0 20px 60px rgba(0, 207, 255, 0.15), 0 0 40px rgba(0, 207, 255, 0.1);
  --shadow-glow: 0 0 30px rgba(0, 207, 255, 0.3);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-luxury: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-pearl);
  background-color: var(--color-obsidian);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bungee', cursive;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-display);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

a {
  color: var(--color-electric);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-pearl);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  background: linear-gradient(135deg, rgba(11, 30, 58, 0.95) 0%, rgba(14, 14, 14, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: transform var(--transition-base), background var(--transition-base);
  border-bottom: 1px solid rgba(0, 207, 255, 0.1);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: 'Bungee', cursive;
  font-size: var(--font-size-xl);
  color: var(--color-electric);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-pearl) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(0, 207, 255, 0.5)); }
  50% { filter: drop-shadow(0 0 15px rgba(0, 207, 255, 0.8)); }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-pearl);
  font-size: var(--font-size-xl);
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu li a {
  color: var(--color-pearl);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-electric);
  transition: width var(--transition-base);
}

.nav-menu li a:hover::after {
  width: 80%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--color-navy) 0%, var(--color-obsidian) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 207, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(237, 237, 237, 0.05) 0%, transparent 50%);
  animation: heroPulse 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  animation: fadeInUp 1s ease-out, float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 5rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-pearl) 50%, var(--color-electric) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  filter: drop-shadow(0 0 30px rgba(0, 207, 255, 0.5));
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero p {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: var(--color-pearl);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--color-electric) 0%, rgba(0, 207, 255, 0.8) 100%);
  color: var(--color-obsidian);
  border: 2px solid transparent;
  border-radius: var(--border-radius-md);
  font-family: 'Bungee', cursive;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-pearl);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: var(--space-xl) auto;
  perspective: 1000px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  transform-style: preserve-3d;
}

.slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotateY(90deg) translateZ(200px);
  transition: all var(--transition-luxury);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 2px solid rgba(0, 207, 255, 0.3);
}

.slider-item.active {
  opacity: 1;
  transform: rotateY(0deg) translateZ(0) scale(1.05);
  z-index: 3;
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-electric);
  animation: slideGlow 3s ease-in-out infinite;
}

@keyframes slideGlow {
  0%, 100% { box-shadow: var(--shadow-luxury); }
  50% { box-shadow: 0 20px 80px rgba(0, 207, 255, 0.4), 0 0 60px rgba(0, 207, 255, 0.2); }
}

.slider-item.prev {
  transform: rotateY(-45deg) translateZ(-150px);
  opacity: 0.5;
  z-index: 2;
}

.slider-item.next {
  transform: rotateY(45deg) translateZ(-150px);
  opacity: 0.5;
  z-index: 2;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.slider-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-electric);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-btn.active {
  background: var(--color-electric);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-alt {
  background: var(--color-slate);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-pearl) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-electric), transparent);
  animation: titleLine 2s ease-in-out infinite;
}

@keyframes titleLine {
  0%, 100% { width: 100px; opacity: 1; }
  50% { width: 200px; opacity: 0.7; }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: linear-gradient(135deg, rgba(42, 45, 52, 0.8) 0%, rgba(11, 30, 58, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-luxury);
  border: 1px solid rgba(0, 207, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-electric);
  background: linear-gradient(135deg, rgba(42, 45, 52, 0.95) 0%, rgba(11, 30, 58, 0.8) 100%);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: linear-gradient(135deg, rgba(42, 45, 52, 0.9) 0%, rgba(11, 30, 58, 0.9) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 207, 255, 0.2);
  transition: all var(--transition-luxury);
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.1) 0%, transparent 70%);
  transition: transform var(--transition-slow);
}

.product-card:hover::before {
  transform: scale(1.3) rotate(45deg);
}

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-electric);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: -1;
}

.product-price {
  font-family: 'Bungee', cursive;
  font-size: var(--font-size-xl);
  color: var(--color-electric);
  margin: var(--space-sm) 0;
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(42, 45, 52, 0.8) 0%, rgba(11, 30, 58, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 207, 255, 0.2);
  transition: all var(--transition-luxury);
}

.asymmetric-item:nth-child(odd) {
  transform: rotate(-2deg);
  margin-left: var(--space-lg);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(2deg);
  margin-right: var(--space-lg);
}

.asymmetric-item:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-electric);
  z-index: 10;
}

.contact-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-slate) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(0, 207, 255, 0.1);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--color-electric);
}

.contact-form {
  background: linear-gradient(135deg, rgba(42, 45, 52, 0.9) 0%, rgba(11, 30, 58, 0.9) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  border: 2px solid rgba(0, 207, 255, 0.3);
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.1) 0%, transparent 70%);
  animation: formGlow 8s ease-in-out infinite;
}

@keyframes formGlow {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-pearl);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-obsidian);
  border: 1px solid var(--color-slate);
  border-radius: var(--border-radius-md);
  color: var(--color-pearl);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-electric);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.footer {
  background: var(--color-obsidian);
  padding: var(--space-lg) 10px;  text-align: center;
  border-top: 1px solid var(--color-slate);
  font-size: var(--font-size-sm);
  color: var(--color-pearl);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-slate);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(150%);
  transition: transform var(--transition-base);
  border: 1px solid var(--color-electric);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--color-electric);
  margin-bottom: var(--space-md);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-page h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-electric) 0%, var(--color-pearl) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-slate);
    flex-direction: column;
    padding: var(--space-xl);
    transition: right var(--transition-base);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    padding: var(--space-sm);
    border-bottom: 1px solid var(--color-obsidian);
  }

  .hero-content {
    padding: var(--space-md);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }

  .slider-wrapper {
    height: 300px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.8rem;
    --font-size-base: 0.9rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.3rem;
    --font-size-xxl: 1.6rem;
    --font-size-display: 2rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .slider-wrapper {
    height: 250px;
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-xxl: 2rem;
    --font-size-xs: 0.65rem;
    --font-size-sm: 0.75rem;
    --font-size-base: 0.85rem;
    --font-size-md: 0.9rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.1rem;
    --font-size-xxl: 1.3rem;
    --font-size-display: 1.5rem;
  }

  .hero {
    min-height: 70vh;
    padding: var(--space-md) 0;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
  }

  .hero p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
  }

  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-xs);
  }

  .slider-wrapper {
    height: 200px;
  }

  .slider-container {
    margin: var(--space-md) auto;
  }


  .card,
  .product-card {
    padding: var(--space-md);
  }

  .card h3,
  .product-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
  }

  .card p,
  .product-card p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
  }

  .section-title::after {
    width: 60px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-grid {
    gap: var(--space-md);
  }

  .asymmetric-item {
    padding: var(--space-md);
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .asymmetric-item h2,
  .asymmetric-item h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
  }

  .contact-wrapper {
    gap: var(--space-md);
  }

  .contact-form {
    padding: var(--space-md);
  }

  .contact-item {
    padding: var(--space-sm);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .contact-item h3 {
    font-size: var(--font-size-md);
  }

  .contact-item p {
    font-size: var(--font-size-sm);
  }

  .luxury-gradient {
    width: 40px;
    height: 40px;
  }

  .luxury-gradient i {
    font-size: 1.2rem;
  }

  .cookie-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    padding: var(--space-sm);
    bottom: var(--space-xs);
  }

  .cookie-popup p {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-sm);
  }

  .cookie-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .map-container {
    height: 250px;
    margin-top: var(--space-md);
  }

  .header-content {
    padding: 0 var(--space-sm);
  }

  .logo {
    font-size: var(--font-size-md);
  }

  .nav-menu {
    width: 85%;
    padding: var(--space-md);
  }

  .nav-menu li a {
    font-size: var(--font-size-xs);
    padding: var(--space-xs);
  }

  .footer {
    padding: var(--space-md) 0;
    font-size: var(--font-size-xs);
  }

  .footer p {
    margin: var(--space-xs) 0;
  }

  .error-page h1 {
    font-size: 4rem;
  }

  .error-page h2 {
    font-size: 1.3rem;
  }

  .thank-you-page h1 {
    font-size: 1.8rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: var(--font-size-sm);
    padding: var(--space-xs);
  }

  .product-price {
    font-size: var(--font-size-lg);
  }

  .text-glow {
    text-shadow: 0 0 8px rgba(0, 207, 255, 0.4), 0 0 15px rgba(0, 207, 255, 0.2);
  }

  .product-image-placeholder {
    height: 180px;
  }

  .product-image-placeholder i {
    font-size: 3rem;
  }

  .product-card [style*="position: absolute"][style*="top: -10px"] {
    width: 40px;
    height: 40px;
    top: -5px;
    right: -5px;
  }

  .product-card [style*="position: absolute"][style*="top: -10px"] i {
    font-size: 1rem;
  }

  .hero [style*="width: 100px"][style*="height: 100px"] {
    width: 70px;
    height: 70px;
  }

  .hero [style*="width: 100px"][style*="height: 100px"] i {
    font-size: 2rem;
  }

  .hero [style*="padding: var(--space-sm) var(--space-lg)"] {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-xs);
  }

  .hero [style*="padding: var(--space-sm) var(--space-lg)"] span {
    font-size: var(--font-size-xs);
  }

  .hero [style*="padding: var(--space-sm) var(--space-lg)"] i {
    font-size: 0.9rem;
  }

  .contact-item [style*="width: 70px"][style*="height: 70px"] {
    width: 50px;
    height: 50px;
  }

  .contact-item [style*="width: 70px"][style*="height: 70px"] i {
    font-size: 1.5rem;
  }

  .contact-item [style*="inset: -5px"] {
    inset: -3px;
  }

  .contact-item [style*="inset: -10px"] {
    inset: -6px;
  }

  .contact-form [style*="top: -30px"] {
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
  }

  .contact-form [style*="bottom: -20px"] {
    bottom: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
  }

  .form-group label i {
    font-size: 0.8rem;
    width: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding-left: calc(var(--space-xs) + 16px + var(--space-xs));
  }

  .form-group [style*="position: absolute"][style*="right: var(--space-sm)"] {
    right: var(--space-xs);
    top: calc(var(--space-sm) + 1.2rem + var(--space-xs));
    font-size: 0.7rem;
  }

  .form-group textarea {
    padding-top: var(--space-xs);
  }

  [style*="position: absolute"][style*="bottom: var(--space-sm)"][style*="right: var(--space-sm)"] {
    bottom: var(--space-xs);
    right: var(--space-xs);
    font-size: 0.65rem;
  }

  .card [style*="width: 90px"][style*="height: 90px"] {
    width: 60px;
    height: 60px;
  }

  .card [style*="width: 90px"][style*="height: 90px"] i {
    font-size: 1.8rem;
  }

  .card [style*="inset: -10px"] {
    inset: -6px;
  }

  .card [style*="inset: -15px"] {
    inset: -8px;
  }

  .card [style*="top: var(--space-sm)"][style*="right: var(--space-sm)"][style*="font-size: 3rem"] {
    font-size: 2rem;
  }

  .asymmetric-item [style*="width: 60px"][style*="height: 60px"] {
    width: 45px;
    height: 45px;
  }

  .asymmetric-item [style*="width: 60px"][style*="height: 60px"] i {
    font-size: 1.3rem;
  }

  .asymmetric-item [style*="width: 70px"][style*="height: 70px"] {
    width: 50px;
    height: 50px;
  }

  .asymmetric-item [style*="width: 70px"][style*="height: 70px"] i {
    font-size: 1.5rem;
  }

  .asymmetric-item [style*="width: 100px"][style*="height: 100px"] {
    width: 70px;
    height: 70px;
  }

  .asymmetric-item [style*="left: -20px"] {
    left: -10px;
    width: 3px;
  }

  .asymmetric-item [style*="width: 40px"][style*="height: 40px"] {
    width: 30px;
    height: 30px;
  }

  .asymmetric-item [style*="width: 40px"][style*="height: 40px"] i {
    font-size: 0.7rem;
  }

  .asymmetric-item h3[style*="padding-left: calc"] {
    padding-left: calc(var(--space-xs) + 30px + var(--space-xs));
    font-size: var(--font-size-md);
  }

  .card [style*="width: 80px"][style*="height: 80px"] {
    width: 60px;
    height: 60px;
  }

  .card [style*="width: 80px"][style*="height: 80px"] i {
    font-size: 2rem;
  }

  .card [style*="inset: -8px"] {
    inset: -5px;
  }

  .card [style*="position: absolute"][style*="top: var(--space-sm)"][style*="right: var(--space-sm)"][style*="font-size: 2.5rem"] {
    font-size: 1.8rem;
  }

  .card [style*="position: absolute"][style*="top: var(--space-md)"][style*="right: var(--space-md)"][style*="font-size: 3rem"] {
    font-size: 2rem;
  }

  .card [style*="position: absolute"][style*="top: var(--space-md)"][style*="right: var(--space-md)"][style*="font-size: 4rem"] {
    font-size: 2.5rem;
  }

  .product-card [style*="display: flex"][style*="align-items: center"][style*="justify-content: space-between"] {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .product-card [style*="display: flex"][style*="gap: var(--space-xs)"] {
    gap: 2px;
  }

  .product-card [style*="display: flex"][style*="gap: var(--space-xs)"] i {
    font-size: 0.7rem;
  }

  .section [style*="padding: var(--space-xxl)"] {
    padding: var(--space-lg);
  }

  .section [style*="padding: var(--space-xl)"] {
    padding: var(--space-md);
  }

  .section [style*="max-width: 700px"] {
    max-width: 100%;
  }

  .section [style*="max-width: 600px"] {
    max-width: 100%;
  }

  .hero [style*="display: flex"][style*="justify-content: center"][style*="gap: var(--space-lg)"] {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
  }

  .hero [style*="display: flex"][style*="justify-content: center"][style*="gap: var(--space-md)"] {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
  }

  .hero [style*="min-width: 200px"] {
    min-width: auto;
    width: 100%;
    max-width: 200px;
  }

  .contact-info [style*="display: flex"][style*="align-items: center"][style*="gap: var(--space-sm)"] {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .contact-info [style*="width: 50px"][style*="height: 50px"] {
    width: 40px;
    height: 40px;
  }

  .contact-info [style*="width: 50px"][style*="height: 50px"] i {
    font-size: 1.2rem;
  }

  .contact-form [style*="display: flex"][style*="align-items: center"][style*="gap: var(--space-sm)"] {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .contact-form [style*="width: 50px"][style*="height: 50px"] {
    width: 40px;
    height: 40px;
  }

  .contact-form [style*="width: 50px"][style*="height: 50px"] i {
    font-size: 1.2rem;
  }

  .section-title {
    word-break: break-word;
  }

  .btn [style*="display: inline-flex"] {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .btn i {
    margin-left: 0;
    margin-top: var(--space-xs);
  }

  [style*="display: flex"][style*="align-items: center"][style*="justify-content: center"][style*="gap: var(--space-md)"] {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  [style*="font-size: 2.5rem"] {
    font-size: 1.8rem;
  }

  [style*="font-size: 2rem"] {
    font-size: 1.5rem;
  }

  [style*="font-size: 1.8rem"] {
    font-size: 1.3rem;
  }

  [style*="font-size: 1.5rem"] {
    font-size: 1.2rem;
  }

  .map-container iframe {
    height: 250px;
  }

  .error-page [style*="display: grid"] {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .error-page [style*="display: grid"] .card {
    padding: var(--space-sm);
  }

  .error-page [style*="display: grid"] i {
    font-size: 1.8rem;
  }

  .thank-you-page [style*="width: 150px"][style*="height: 150px"] {
    width: 100px;
    height: 100px;
  }

  .thank-you-page [style*="width: 150px"][style*="height: 150px"] i {
    font-size: 3rem;
  }

  .thank-you-page [style*="position: absolute"][style*="width: 200%"] {
    width: 150%;
    height: 150%;
  }

  .container {
    padding: 0 var(--space-xs);
  }

  .section {
    padding: var(--space-lg) 10px;  }

  .section-alt {
    padding: var(--space-lg) 10px;  }

  h1, h2, h3 {
    word-break: break-word;
    hyphens: auto;
  }

  .nav-toggle {
    font-size: var(--font-size-lg);
  }

  .header {
    padding: var(--space-sm) 0;
  }

  .contact-section {
    padding: var(--space-lg) 10px;
  }

  .product-price {
    word-break: keep-all;
  }

  .asymmetric-item p {
    font-size: var(--font-size-xs);
    line-height: 1.5;
  }

  .card p {
    font-size: var(--font-size-xs);
    line-height: 1.5;
  }

  .contact-item p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }

  .form-group label {
    font-size: var(--font-size-xs);
  }

  .checkbox-group label {
    font-size: var(--font-size-xs);
  }

  .footer a {
    font-size: var(--font-size-xs);
    word-break: break-word;
  }

  .hero p {
    padding: 0 var(--space-xs);
  }

  .section-title::after {
    width: 50px;
    height: 2px;
  }

  .card.luxury-gradient {
    padding: var(--space-sm);
    border-width: 1px;
  }

  .card.luxury-gradient h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }

  .card.luxury-gradient p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
    margin: 0;
  }

  .card.luxury-gradient .text-glow {
    text-shadow: 0 0 8px rgba(0, 207, 255, 0.4), 0 0 12px rgba(0, 207, 255, 0.2);
  }

  .section:nth-of-type(3) .card,
  .section:nth-of-type(4) .card {
    min-height: auto;
    padding: var(--space-sm) var(--space-xs);
  }

  .section:nth-of-type(3) .card h3,
  .section:nth-of-type(4) .card h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-xs);
  }

  .section:nth-of-type(3) .card p,
  .section:nth-of-type(4) .card p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }

  .card.luxury-gradient::before {
    opacity: 0.3;
  }

  .card.luxury-gradient:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .card.luxury-gradient:hover::before {
    opacity: 0.4;
  }

  .hero-canvas {
    width: 100%;
    height: 100%;
    max-height: 70vh;
  }

  .slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .slider-controls {
    gap: var(--space-xs);
    margin-top: var(--space-sm);
  }

  .slider-btn {
    width: 8px;
    height: 8px;
  }

  .btn {
    min-height: 36px;
    min-width: 120px;
    touch-action: manipulation;
  }

  .btn:active {
    transform: scale(0.98);
  }

  input[type="checkbox"],
  input[type="radio"] {
    min-width: 20px;
    min-height: 20px;
    touch-action: manipulation;
  }

  .checkbox-group {
    gap: var(--space-xs);
    align-items: flex-start;
  }

  .checkbox-group label {
    line-height: 1.4;
    padding-left: var(--space-xs);
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
  }

  .nav-menu li {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-menu li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
  }

  .product-card .btn,
  .card .btn {
    width: 100%;
    margin-top: var(--space-sm);
  }

  .contact-item a {
    word-break: break-all;
    display: inline-block;
    touch-action: manipulation;
  }

  .footer a {
    display: inline-block;
    padding: var(--space-xs);
    touch-action: manipulation;
  }

  .cookie-popup {
    max-width: calc(100% - var(--space-xs) * 2);
    border-radius: var(--border-radius-md);
  }

  .cookie-buttons .btn {
    min-height: 40px;
  }

  .form-group {
    margin-bottom: var(--space-sm);
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    min-height: 40px;
    touch-action: manipulation;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .section-title {
    padding: 0 var(--space-xs);
  }

  .grid {
    padding: 0;
  }

  .product-grid {
    padding: 0;
  }

  .asymmetric-layout {
    padding: 0;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    line-height: 1.2;
  }

  .hero-content p {
    line-height: 1.5;
  }

  .card::before {
    border-radius: var(--border-radius-md);
  }

  .product-card::before {
    border-radius: var(--border-radius-md);
  }

  .hover-lift:hover {
    transform: translateY(-3px) scale(1.01);
  }

  .hover-lift:active {
    transform: translateY(0) scale(0.99);
  }

  .stagger-animation {
    transform: translateY(20px);
  }

  .fade-in-up {
    transform: translateY(30px);
  }

  .section-alt {
    background-size: 100% auto;
  }

  .luxury-gradient {
    background-size: 100% 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .slider-container {
    overflow: hidden;
  }

  .slider-wrapper {
    overflow: hidden;
  }

  .map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
  }

  .map-container iframe {
    border-radius: var(--border-radius-md);
  }

  .error-page {
    padding: var(--space-md);
  }

  .thank-you-page {
    padding: var(--space-md);
  }

  .error-page .btn,
  .thank-you-page .btn {
    width: 100%;
    margin-top: var(--space-md);
  }

  .section [style*="text-align: center"] {
    padding: 0 var(--space-xs);
  }

  .section [style*="max-width: 600px"],
  .section [style*="max-width: 700px"] {
    padding: var(--space-sm);
  }

  .hero [style*="display: flex"][style*="justify-content: center"] {
    flex-wrap: wrap;
  }

  .hero [style*="display: flex"][style*="justify-content: center"] > * {
    flex: 0 1 auto;
    min-width: 0;
  }

  .contact-item [style*="position: absolute"][style*="left: 0"] {
    width: 3px;
  }

  .contact-item [style*="flex: 1"] {
    min-width: 0;
    width: 100%;
  }

  .card [style*="position: absolute"] {
    display: none;
  }

  .card [style*="font-size: 4rem"] {
    font-size: 2.5rem;
  }

  .asymmetric-item [style*="position: absolute"] {
    position: static;
    margin-bottom: var(--space-xs);
  }

  .asymmetric-item h3[style*="padding-left: calc"] {
    padding-left: 0;
  }

  .product-card [style*="position: absolute"][style*="top: -10px"] {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: var(--space-xs);
    display: inline-block;
  }

  .contact-form [style*="position: absolute"][style*="top: -30px"],
  .contact-form [style*="position: absolute"][style*="bottom: -20px"] {
    display: none;
  }

  .section [style*="position: absolute"][style*="top: -50%"] {
    display: none;
  }

  .section [style*="position: absolute"][style*="bottom: -30%"] {
    display: none;
  }

  * {
    -webkit-tap-highlight-color: rgba(0, 207, 255, 0.2);
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .container {
    max-width: 100%;
  }

  @supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group textarea {
      font-size: 16px;
    }
  }

  html {
    font-size: 14px;
  }

  body {
    font-size: var(--font-size-base);
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }

  h2 {
    font-size: clamp(1.2rem, 6vw, 2rem);
    line-height: 1.3;
  }

  h3 {
    font-size: clamp(1rem, 5vw, 1.5rem);
    line-height: 1.3;
  }

  h4, h5, h6 {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    line-height: 1.4;
  }

  p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }

  a {
    font-size: var(--font-size-sm);
    word-break: break-word;
  }

  ul, ol {
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
  }

  li {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin-bottom: var(--space-xs);
  }

  table {
    font-size: var(--font-size-xs);
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  th, td {
    padding: var(--space-xs);
    font-size: var(--font-size-xs);
  }

  blockquote {
    padding: var(--space-sm);
    margin: var(--space-sm) 0;
    font-size: var(--font-size-sm);
    border-left-width: 3px;
  }

  code {
    font-size: var(--font-size-xs);
    padding: 2px 4px;
  }

  pre {
    font-size: var(--font-size-xs);
    padding: var(--space-sm);
    overflow-x: auto;
  }

  .header {
    position: relative;
    z-index: 1000;
  }

  .logo {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    letter-spacing: 0.05em;
  }

  .nav-menu {
    max-height: 80vh;
    overflow-y: auto;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
    word-break: break-word;
    hyphens: auto;
  }

  .hero p {
    font-size: clamp(0.75rem, 3.5vw, 0.95rem);
    max-width: 100%;
  }
  
  .section {
    width: 100%;
    box-sizing: border-box;
  }

  .section-alt {
    width: 100%;
    box-sizing: border-box;
  }

  .card,
  .product-card,
  .asymmetric-item {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }

  .grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    box-sizing: border-box;
  }

  .product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    box-sizing: border-box;
  }

  .asymmetric-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    box-sizing: border-box;
  }

  .contact-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    box-sizing: border-box;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    box-sizing: border-box;
  }

  .slider-container {
    width: 100%;
    box-sizing: border-box;
  }

  .slider-wrapper {
    width: 100%;
    box-sizing: border-box;
  }

  .slider-item {
    width: 100%;
    box-sizing: border-box;
  }

  .map-container {
    width: 100%;
    box-sizing: border-box;
  }

  .footer {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .footer p {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }

  .cookie-popup {
    width: calc(100% - var(--space-xs) * 2);
    box-sizing: border-box;
    left: var(--space-xs);
    right: var(--space-xs);
  }

  .btn {
    width: auto;
    min-width: 100px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn.full-width {
    width: 100%;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  input[type="password"],
  textarea,
  select {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  .form-group {
    width: 100%;
    box-sizing: border-box;
  }

  .checkbox-group {
    width: 100%;
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  video,
  iframe,
  embed,
  object {
    max-width: 100%;
    height: auto;
  }

  .hero-canvas {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section-title {
    width: 100%;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
  }

  .section-title::after {
    margin: var(--space-xs) auto 0;
  }

  .text-glow {
    text-shadow: 0 0 6px rgba(0, 207, 255, 0.4), 0 0 10px rgba(0, 207, 255, 0.2);
  }

  .luxury-gradient {
    background-size: cover;
  }

  .hover-lift {
    transition: transform 0.2s ease;
  }

  .hover-lift:active {
    transform: scale(0.98);
  }

  .fade-in-up {
    transform: translateY(20px);
  }

  .stagger-animation {
    transform: translateY(15px);
  }

  .parallax-element {
    transform: none;
  }

  @media (orientation: landscape) and (max-width: 320px) {
    .hero {
      min-height: 50vh;
    }

    .section {
      padding: var(--space-sm) 0;
    }

    .section-alt {
      padding: var(--space-sm) 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  .card img,
  .product-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
  }

  .slider-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
  }

  .product-image-placeholder {
    width: 100%;
    height: 160px;
    min-height: 160px;
  }

  .product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    padding: 0 var(--space-xs);
  }

  .card,
  .product-card {
    margin-bottom: var(--space-sm);
  }

  .card:last-child,
  .product-card:last-child {
    margin-bottom: 0;
  }

  .btn {
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .btn i {
    font-size: 0.9em;
  }

  .form-group {
    margin-bottom: var(--space-sm);
  }

  .form-group:last-of-type {
    margin-bottom: var(--space-md);
  }

  .contact-item {
    margin-bottom: var(--space-sm);
  }

  .contact-item:last-child {
    margin-bottom: 0;
  }

  .contact-item a {
    font-size: var(--font-size-sm);
  }

  .contact-item span {
    font-size: var(--font-size-xs);
  }

  .grid > *:last-child,
  .product-grid > *:last-child {
    margin-bottom: 0;
  }

  .asymmetric-layout > *:last-child {
    margin-bottom: 0;
  }

  .slider-controls {
    justify-content: center;
    flex-wrap: wrap;
  }

  .slider-btn {
    margin: 0 var(--space-xs);
  }

  .nav-toggle {
    padding: var(--space-xs);
  }

  .nav-menu {
    border-radius: var(--border-radius-md);
  }

  .cookie-popup {
    border-radius: var(--border-radius-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }

  .footer {
    text-align: center;
    padding: var(--space-md) var(--space-xs);
  }

  .footer a {
    display: inline-block;
    margin: 0 var(--space-xs);
    padding: var(--space-xs) 0;
  }

  .error-page,
  .thank-you-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-xs);
  }

  .error-page h1,
  .thank-you-page h1 {
    margin-bottom: var(--space-sm);
  }

  .error-page p,
  .thank-you-page p {
    margin-bottom: var(--space-md);
    max-width: 100%;
  }

  .section [style*="text-align: center"] {
    padding: var(--space-sm);
  }

  .section [style*="max-width: 600px"],
  .section [style*="max-width: 700px"] {
    margin: 0 auto;
    padding: var(--space-sm);
  }

  .hero [style*="display: flex"] {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero [style*="display: flex"] > * {
    margin: var(--space-xs);
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: var(--space-md);
  }

  .contact-item h3 {
    margin-bottom: var(--space-xs);
  }

  .product-price {
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 600;
  }

  .product-card h3 {
    margin-bottom: var(--space-xs);
  }

  .card h3 {
    margin-bottom: var(--space-xs);
  }

  .asymmetric-item h2,
  .asymmetric-item h3 {
    margin-bottom: var(--space-xs);
  }

  .section-alt {
    background-attachment: scroll;
  }

  .luxury-gradient {
    border-radius: var(--border-radius-sm);
  }

  .card::before,
  .product-card::before {
    border-radius: var(--border-radius-sm);
  }

  .map-container {
    border-radius: var(--border-radius-sm);
  }

  .map-container iframe {
    border-radius: var(--border-radius-sm);
  }

  .slider-container {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
  }

  .slider-wrapper {
    border-radius: var(--border-radius-sm);
  }

  .slider-item {
    border-radius: var(--border-radius-sm);
  }

  @media (max-height: 500px) and (max-width: 320px) {
    .hero {
      min-height: 50vh;
      padding: var(--space-sm) 0;
    }

    .hero-content {
      padding: var(--space-sm);
    }

    .section {
      padding: var(--space-sm) 0;
    }

    .section-alt {
      padding: var(--space-sm) 0;
    }

    .cookie-popup {
      position: fixed;
      bottom: var(--space-xs);
    }
  }

  @media (max-width: 280px) {
    :root {
      --space-xs: 0.2rem;
      --space-sm: 0.4rem;
      --space-md: 0.6rem;
      --space-lg: 0.8rem;
      --space-xl: 1.2rem;
      --space-xxl: 1.5rem;
    }

    .hero h1 {
      font-size: 1.4rem;
    }

    .section-title {
      font-size: 1.2rem;
    }

    .btn {
      padding: var(--space-xs) var(--space-sm);
      font-size: 0.6rem;
    }

    .logo {
      font-size: 0.85rem;
    }
  }
}

.parallax-element {
  transition: transform 0.3s ease-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.luxury-gradient {
  background: linear-gradient(135deg, rgba(0, 207, 255, 0.1) 0%, rgba(237, 237, 237, 0.05) 100%);
  border: 1px solid rgba(0, 207, 255, 0.3);
}

.text-glow {
  text-shadow: 0 0 20px rgba(0, 207, 255, 0.5), 0 0 40px rgba(0, 207, 255, 0.3);
}

.hover-lift {
  transition: transform var(--transition-luxury);
}
