:root {
  --coral-glow: #FF8360;
  --ocean-teal: #00A8A8;
  --lavender-mist: #C2A4FF;
  --sandstone: #F2D398;
  --charcoal-slate: #2E2E3A;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 4px rgba(46, 46, 58, 0.1);
  --shadow-md: 0 4px 8px rgba(46, 46, 58, 0.15);
  --shadow-lg: 0 8px 16px rgba(46, 46, 58, 0.2);
  --shadow-xl: 0 12px 24px rgba(46, 46, 58, 0.25);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  background-color: #0a0a0f;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

a {
  color: var(--ocean-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--coral-glow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: relative;
  z-index: 1000;
}

.header {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: var(--space-lg) 0;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 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: var(--font-display);
  font-size: var(--font-size-2xl);
  background: linear-gradient(135deg, #ffffff, var(--lavender-mist), var(--ocean-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  filter: drop-shadow(0 0 10px rgba(194, 164, 255, 0.5));
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(0, 168, 168, 0.8));
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: var(--font-size-2xl);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
  transition: all var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lavender-mist), var(--ocean-teal));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
  border-bottom-color: transparent;
}

.nav-link:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #2d2d44 50%, #1a1a2e 75%, #0a0a0f 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(194, 164, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 168, 168, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(255, 131, 96, 0.1) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  animation: shimmer 8s linear infinite;
  z-index: 0;
}

.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;
  color: white;
  padding: var(--space-xl);
  max-width: 900px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(194, 164, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.hero-content h1 {
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 40px rgba(194, 164, 255, 0.5),
               0 0 80px rgba(0, 168, 168, 0.3),
               2px 2px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #c2a4ff 50%, #00a8a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.1em;
  animation: textGlow 3s ease-in-out infinite;
}

.hero-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  text-shadow: 1px 1px 4px rgba(46, 46, 58, 0.2);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: linear-gradient(135deg, rgba(194, 164, 255, 0.2) 0%, rgba(0, 168, 168, 0.2) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, rgba(194, 164, 255, 0.4) 0%, rgba(0, 168, 168, 0.4) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(194, 164, 255, 0.4),
              0 0 20px rgba(0, 168, 168, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
  background: #0a0a0f;
  color: rgba(255, 255, 255, 0.9);
}

.section-alt {
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(242, 211, 152, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
  color: rgba(255, 255, 255, 0.95);
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lavender-mist), var(--ocean-teal), var(--coral-glow), transparent);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 20px rgba(194, 164, 255, 0.5);
}

.grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(194, 164, 255, 0.1) 0%, rgba(0, 168, 168, 0.1) 50%, rgba(255, 131, 96, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
              0 0 40px rgba(194, 164, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  font-size: var(--font-size-4xl);
  background: linear-gradient(135deg, var(--lavender-mist), var(--ocean-teal), var(--coral-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  display: block;
  filter: drop-shadow(0 0 10px rgba(194, 164, 255, 0.5));
  transition: all var(--transition-base);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(0, 168, 168, 0.8));
}

.card h3 {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
}

.asymmetric-item {
  position: relative;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.asymmetric-item:nth-child(odd) {
  margin-left: 0;
  margin-right: 10%;
  transform: rotate(-1deg);
}

.asymmetric-item:nth-child(even) {
  margin-left: 10%;
  margin-right: 0;
  transform: rotate(1deg);
}

.asymmetric-item:hover {
  transform: rotate(0deg) scale(1.03);
  transition: all var(--transition-base);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(194, 164, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.asymmetric-item h2,
.asymmetric-item h3 {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.asymmetric-item p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(194, 164, 255, 0.2) 0%, rgba(0, 168, 168, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
  filter: blur(80px);
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 131, 96, 0.15) 0%, rgba(242, 211, 152, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  animation: float 30s ease-in-out infinite reverse;
  filter: blur(60px);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  color: white;
}

.contact-info p {
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.contact-form-wrapper h2 {
  color: white;
  margin-bottom: var(--space-xl);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-details {
  list-style: none;
  margin-top: var(--space-xl);
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.contact-details i {
  font-size: var(--font-size-xl);
  color: var(--coral-glow);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  color: white;
  opacity: 0.9;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lavender-mist);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(194, 164, 255, 0.3),
              inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.footer {
  background: linear-gradient(180deg, #0a0a0f 0%, #000000 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0;
  text-align: center;
  font-size: var(--font-size-xs);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 164, 255, 0.5), transparent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-xs);
  transition: all var(--transition-fast);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--lavender-mist), var(--ocean-teal));
  transition: width var(--transition-base);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-links a:hover::after {
  width: 100%;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 10000;
  max-width: 500px;
  margin: 0 auto;
  display: none;
  animation: slideUp 0.5s ease-out;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-popup.show {
  display: block;
}

.cookie-popup p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  flex: 1;
  min-width: 120px;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-xs);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(194, 164, 255, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--lavender-mist), var(--ocean-teal));
}

.product-info {
  padding: var(--space-lg);
}

.product-info {
  padding: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

.product-info h3 {
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-info p {
  color: rgba(255, 255, 255, 0.7);
}

.product-price {
  font-size: var(--font-size-2xl);
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--lavender-mist), var(--coral-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: var(--space-md);
  text-shadow: 0 0 20px rgba(194, 164, 255, 0.5);
  filter: drop-shadow(0 0 10px rgba(255, 131, 96, 0.5));
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl);
  position: relative;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(194, 164, 255, 0.1) 0%, rgba(0, 168, 168, 0.1) 50%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

.error-page > div {
  position: relative;
  z-index: 2;
}

.error-page h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  background: linear-gradient(135deg, var(--lavender-mist), var(--coral-glow), var(--ocean-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 60px rgba(194, 164, 255, 0.5);
  filter: drop-shadow(0 0 30px rgba(255, 131, 96, 0.5));
  animation: textGlow 3s ease-in-out infinite;
  letter-spacing: 0.1em;
}

.error-page h2 {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.error-page p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl);
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  position: relative;
  overflow: hidden;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 168, 0.2) 0%, rgba(194, 164, 255, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  z-index: 0;
}

.thank-you-page::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  animation: shimmer 10s linear infinite;
  z-index: 0;
}

.thank-you-content {
  max-width: 700px;
  animation: fadeInUp 1.2s ease-out;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.thank-you-content i {
  background: linear-gradient(135deg, var(--ocean-teal), var(--lavender-mist));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 168, 168, 0.6));
  animation: pulse 2s ease-in-out infinite;
}

.thank-you-content h1 {
  background: linear-gradient(135deg, var(--ocean-teal), var(--lavender-mist), var(--coral-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-shadow: 0 0 40px rgba(0, 168, 168, 0.5);
  filter: drop-shadow(0 0 20px rgba(194, 164, 255, 0.5));
}

.thank-you-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
}

.policy-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(194, 164, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(0, 168, 168, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.policy-page > * {
  position: relative;
  z-index: 1;
}

.policy-page h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #ffffff, var(--lavender-mist), var(--ocean-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  text-shadow: 0 0 40px rgba(194, 164, 255, 0.3);
  filter: drop-shadow(0 0 20px rgba(0, 168, 168, 0.3));
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.policy-page > p:first-of-type {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-page h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--lavender-mist), var(--ocean-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.5rem, 4vw, 2rem);
  padding-left: var(--space-lg);
  position: relative;
}

.policy-page h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, var(--lavender-mist), var(--ocean-teal));
  box-shadow: 0 0 10px rgba(194, 164, 255, 0.5);
  border-radius: var(--radius-sm);
}

.policy-page p {
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-base);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.policy-page p:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.policy-page ul {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  list-style: none;
  position: relative;
}

.policy-page ul::before {
  content: '';
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  bottom: var(--space-md);
  width: 2px;
  background: linear-gradient(180deg, var(--lavender-mist), var(--ocean-teal), var(--coral-glow));
  border-radius: var(--radius-sm);
}

.policy-page li {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.75);
  padding-left: var(--space-xl);
  position: relative;
  line-height: 1.8;
}

.policy-page li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--lavender-mist);
  font-weight: bold;
  filter: drop-shadow(0 0 5px rgba(194, 164, 255, 0.5));
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes textGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(194, 164, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(0, 168, 168, 0.5));
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --space-3xl: 2rem;
    --space-2xl: 2rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-3xl) var(--space-xl);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-link:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    min-height: 70vh;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    transform: rotate(0deg);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-5xl: 1.75rem;
    --font-size-4xl: 1.5rem;
    --font-size-3xl: 1.25rem;
    --space-xl: 1rem;
    --space-lg: 1rem;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .card {
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  :root {
    --font-size-base: 0.875rem;
    --font-size-sm: 0.8125rem;
    --font-size-xs: 0.75rem;
    --font-size-5xl: 1.75rem;
    --font-size-4xl: 1.5rem;
    --font-size-3xl: 1.25rem;
    --font-size-2xl: 1.125rem;
    --font-size-xl: 1rem;
    --font-size-lg: 0.9375rem;
    --space-xs: 0.375rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.25rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
    --radius-sm: 0.2rem;
    --radius-md: 0.4rem;
    --radius-lg: 0.6rem;
    --radius-xl: 0.8rem;
  }

  html {
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
    word-wrap: break-word;
  }

  .container {
    padding: 0 var(--space-sm);
    width: 100%;
    max-width: 100%;
  }

  .header {
    padding: var(--space-sm) 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .header-content {
    padding: 0 var(--space-sm);
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .logo {
    font-size: clamp(1rem, 6vw, 1.25rem);
    letter-spacing: 0.03em;
    word-break: break-word;
  }

  .nav-toggle {
    padding: var(--space-xs);
    font-size: var(--font-size-xl);
    min-width: 36px;
    min-height: 36px;
  }

  .nav {
    width: 100vw;
    max-width: 100vw;
    right: -100%;
    padding: var(--space-xl) var(--space-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    width: 100%;
    display: block;
    text-align: left;
  }

  .hero {
    min-height: 70vh;
    padding: var(--space-md) 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-canvas {
    opacity: 0.5;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-md);
    max-width: 100%;
    width: 100%;
  }

  .hero-content::before {
    width: 150%;
    height: 150%;
    filter: blur(40px);
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 12vw, 2.25rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    letter-spacing: 0.05em;
    word-break: break-word;
  }

  .hero-content p {
    font-size: clamp(0.875rem, 4vw, 1rem);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
  }

  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-xs);
    width: 100%;
    max-width: 100%;
    margin: var(--space-xs) 0;
    display: block;
    text-align: center;
    letter-spacing: 0.03em;
  }

  .btn-secondary {
    margin-top: var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
    overflow-x: hidden;
  }

  .section-alt::before {
    display: none;
  }

  .section-title {
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-sm);
  }

  .section-title h2 {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
    padding-bottom: var(--space-sm);
    word-break: break-word;
  }

  .section-title h2::after {
    width: 50px;
    height: 2px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: 0 var(--space-xs);
  }

  .card {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .card::before,
  .card::after {
    display: none;
  }

  .card:hover {
    transform: translateY(-4px) scale(1);
  }

  .card-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-sm);
  }

  .card h3 {
    font-size: clamp(1rem, 5vw, 1.125rem);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }

  .card p {
    font-size: var(--font-size-sm);
    line-height: 1.7;
  }

  .asymmetric-layout {
    gap: var(--space-md);
    padding: 0 var(--space-xs);
  }

  .asymmetric-item {
    padding: var(--space-md);
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .asymmetric-item:hover {
    transform: translateY(-2px) scale(1) !important;
  }

  .asymmetric-item h2,
  .asymmetric-item h3 {
    font-size: clamp(1rem, 5vw, 1.125rem);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }

  .asymmetric-item p {
    font-size: var(--font-size-sm);
    line-height: 1.7;
  }

  .contact-section {
    padding: var(--space-xl) 0;
    min-height: auto;
  }

  .contact-section::before,
  .contact-section::after {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: 0 var(--space-sm);
  }

  .contact-info {
    width: 100%;
  }

  .contact-info h2 {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
    margin-bottom: var(--space-md);
  }

  .contact-info p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
    line-height: 1.7;
  }

  .contact-details {
    margin-top: var(--space-md);
    padding: 0;
  }

  .contact-details li {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: flex-start;
  }

  .contact-details i {
    font-size: var(--font-size-lg);
    min-width: 20px;
  }

  .contact-details span,
  .contact-details a {
    font-size: var(--font-size-xs);
    word-break: break-word;
  }

  .map-container {
    height: 250px;
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .contact-form-wrapper h2 {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
    margin-bottom: var(--space-md);
  }

  .contact-form {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  .form-group label {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-xs);
    display: block;
  }

  .form-group input,
  .form-group textarea {
    padding: var(--space-sm);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .form-group textarea {
    min-height: 100px;
    resize: vertical;
  }

  .checkbox-group {
    margin-top: var(--space-sm);
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .checkbox-group label {
    font-size: var(--font-size-xs);
    line-height: 1.4;
    word-break: break-word;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: 0 var(--space-xs);
  }

  .product-card {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-card:hover {
    transform: translateY(-4px) scale(1);
  }

  .product-image {
    height: 150px;
    width: 100%;
    object-fit: cover;
  }

  .product-info {
    padding: var(--space-md);
  }

  .product-info h3 {
    font-size: clamp(1rem, 5vw, 1.125rem);
    margin-bottom: var(--space-xs);
  }

  .product-info p {
    font-size: var(--font-size-sm);
    line-height: 1.7;
  }

  .product-price {
    font-size: clamp(1.125rem, 6vw, 1.25rem);
    margin-top: var(--space-sm);
  }

  .error-page {
    padding: var(--space-xl) var(--space-sm);
    min-height: 70vh;
  }

  .error-page h1 {
    font-size: clamp(3rem, 20vw, 5rem);
    margin-bottom: var(--space-md);
  }

  .error-page h2 {
    font-size: clamp(1.125rem, 6vw, 1.5rem);
    margin-bottom: var(--space-md);
  }

  .error-page p {
    font-size: var(--font-size-sm);
    padding: 0 var(--space-sm);
  }

  .thank-you-page {
    padding: var(--space-xl) var(--space-sm);
    min-height: 70vh;
  }

  .thank-you-content {
    padding: var(--space-lg) var(--space-md);
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .thank-you-content i {
    font-size: clamp(3rem, 15vw, 4rem);
    margin-bottom: var(--space-md);
  }

  .thank-you-content h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: var(--space-md);
  }

  .thank-you-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
  }

  .policy-page {
    padding: var(--space-lg) var(--space-sm);
    min-height: auto;
  }

  .policy-page::before {
    display: none;
  }

  .policy-page h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    text-align: center;
  }

  .policy-page > p:first-of-type {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
  }

  .policy-page h2 {
    font-size: clamp(1rem, 5vw, 1.125rem);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    line-height: 1.3;
  }

  .policy-page h2::before {
    width: 2px;
    left: 0;
  }

  .policy-page p {
    font-size: var(--font-size-sm);
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    word-break: break-word;
  }

  .policy-page p:hover {
    transform: translateX(2px);
  }

  .policy-page ul {
    margin-left: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
  }

  .policy-page ul::before {
    left: var(--space-sm);
    top: var(--space-sm);
    bottom: var(--space-sm);
  }

  .policy-page li {
    font-size: var(--font-size-sm);
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
  }

  .footer {
    padding: var(--space-lg) 0;
  }

  .footer-links {
    gap: var(--space-sm);
    flex-wrap: wrap;
    padding: 0 var(--space-sm);
  }

  .footer-links a {
    font-size: var(--font-size-xs);
    padding: var(--space-xs);
  }

  .footer p {
    font-size: var(--font-size-xs);
    padding: 0 var(--space-sm);
    word-break: break-word;
  }

  .cookie-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    padding: var(--space-md);
    max-width: 100%;
    border-radius: var(--radius-lg);
  }

  .cookie-popup p {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .cookie-buttons .btn {
    width: 100%;
    margin: 0;
    padding: var(--space-sm) var(--space-md);
  }
}


  .thank-you-content {
    padding: var(--space-lg);
    max-width: 100%;
  }

  .thank-you-content i {
    font-size: clamp(3rem, 15vw, 4rem);
    margin-bottom: var(--space-md);
  }

  .thank-you-content h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-md);
  }

  .thank-you-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
    line-height: 1.6;
  }

  .footer {
    padding: var(--space-md) 0;
  }

  .footer-links {
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-direction: column;
  }

  .footer-links a {
    font-size: var(--font-size-xs);
    padding: var(--space-xs) 0;
  }

  .footer p {
    font-size: var(--font-size-xs);
  }

  .cookie-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    padding: var(--space-md);
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .cookie-popup p {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .cookie-buttons .btn {
    width: 100%;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
  }
