:root {
  --deep-emerald: #0A3D2E;
  --golden-glow: #D4A574;
  --twilight-navy: #1A2832;
  --sage-mist: #6B8E6B;
  --soft-cream: #F5F1E8;
  --charcoal-slate: #2C3E3F;
  --amber-accent: #E8B86D;
  --moss-green: #4A6B4A;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition-base: 0.3s ease;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal-slate);
  background-color: var(--soft-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  color: var(--golden-glow);
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-left: var(--space-sm);
}

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50%;
  background: linear-gradient(180deg, var(--golden-glow), var(--amber-accent));
  border-radius: 2px;
}

.header {
  background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--twilight-navy) 100%);
  padding: clamp(0.4rem, 1vw, 0.6rem) 0;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: clamp(2.5rem, 5vw, 3.5rem);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: center;
}

.nav-menu a {
  color: var(--soft-cream);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  padding: clamp(0.25rem, 0.5vw, 0.4rem) clamp(0.5rem, 1vw, 0.75rem);
  position: relative;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}

.nav-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(232, 184, 109, 0.15));
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav-menu a:hover {
  color: var(--golden-glow);
  transform: translateY(-1px);
}

.nav-menu a:hover::before {
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: var(--radius-sm);
  color: var(--golden-glow);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  cursor: pointer;
  z-index: 102;
  position: relative;
  padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.5rem, 1.2vw, 0.75rem);
  transition: all var(--transition-base);
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background: rgba(212, 165, 116, 0.2);
  border-color: var(--golden-glow);
}

.menu-toggle.close-btn {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--deep-emerald) 0%, var(--twilight-navy) 100%);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  z-index: 101;
  padding: var(--space-2xl) var(--space-md);
  overflow-y: auto;
  border-left: 2px solid rgba(212, 165, 116, 0.3);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-menu a {
  color: var(--soft-cream);
  font-size: 1.125rem;
  display: block;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-menu a:hover {
  color: var(--golden-glow);
  background: rgba(212, 165, 116, 0.1);
  border-left-color: var(--golden-glow);
  padding-left: var(--space-lg);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 50%;
  color: var(--golden-glow);
  font-size: 1.25rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  background: rgba(212, 165, 116, 0.2);
  border-color: var(--golden-glow);
  transform: rotate(90deg);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../pictures/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--soft-cream);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 61, 46, 0.75) 0%, rgba(26, 40, 50, 0.85) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  z-index: 1;
  animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: var(--space-xl);
  background: rgba(26, 40, 50, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  color: var(--soft-cream);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-xl);
  color: var(--golden-glow);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero-animation {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
  z-index: 1;
  opacity: 0.4;
}

.animated-light {
  width: 100%;
  height: 100%;
  position: relative;
}

.animated-light::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--golden-glow) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
  box-shadow: 0 0 80px var(--golden-glow), 0 0 160px var(--amber-accent);
}

.animated-light::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 70%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-accent) 0%, transparent 70%);
  animation: pulseGlowSmall 3s ease-in-out infinite 0.5s;
  box-shadow: 0 0 50px var(--amber-accent);
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
}

@keyframes pulseGlowSmall {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--golden-glow) 0%, var(--amber-accent) 100%);
  color: var(--deep-emerald);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.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 {
  background: linear-gradient(135deg, var(--amber-accent) 0%, var(--golden-glow) 100%);
  color: var(--twilight-navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: transparent;
  color: var(--soft-cream);
  border: 2px solid var(--golden-glow);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.btn-secondary:hover {
  background-color: var(--golden-glow);
  color: var(--deep-emerald);
  border-color: var(--golden-glow);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--charcoal-slate) 100%);
  color: var(--soft-cream);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--golden-glow), transparent);
  opacity: 0.3;
}

.section-light {
  background-color: var(--soft-cream);
  color: var(--charcoal-slate);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: inherit;
}

.section-title h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--golden-glow), transparent);
  border-radius: 2px;
}

.section-dark .section-title h2::after {
  background: linear-gradient(90deg, transparent, var(--amber-accent), transparent);
}

.section-title p {
  color: var(--sage-mist);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-title p {
  color: rgba(245, 241, 232, 0.8);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background-color: var(--soft-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(107, 142, 107, 0.2);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--golden-glow), var(--amber-accent));
  transform: scaleY(0);
  transition: transform var(--transition-base);
}

.card:hover::before {
  transform: scaleY(1);
}

.section-dark .card {
  background: rgba(26, 40, 50, 0.6);
  color: var(--soft-cream);
  border-color: rgba(212, 165, 116, 0.2);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  color: inherit;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-item {
  text-align: center;
  padding: var(--space-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--golden-glow);
  margin-bottom: var(--space-md);
  display: inline-block;
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(232, 184, 109, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(212, 165, 116, 0.2);
  transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(232, 184, 109, 0.2));
  border-color: var(--golden-glow);
  transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
  margin-bottom: var(--space-sm);
  color: inherit;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background-color: var(--soft-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(107, 142, 107, 0.2);
}

.section-dark .product-card {
  background: rgba(26, 40, 50, 0.6);
  color: var(--soft-cream);
  border-color: rgba(212, 165, 116, 0.2);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-info h3 {
  margin-bottom: var(--space-sm);
  color: inherit;
}

.product-price {
  font-size: 1.5rem;
  color: var(--golden-glow);
  font-weight: 600;
  margin: var(--space-md) 0;
  background: linear-gradient(135deg, var(--golden-glow), var(--amber-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section {
  background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--twilight-navy) 100%);
  color: var(--soft-cream);
  padding: var(--space-2xl) 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23D4A574" fill-opacity="0.05"><path d="M30 0l30 30-30 30L0 30z"/></g></svg>');
  opacity: 0.3;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--golden-glow);
  flex-shrink: 0;
  padding: var(--space-sm);
  background: rgba(212, 165, 116, 0.15);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.contact-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--golden-glow);
  font-weight: 600;
}

.contact-form {
  background: rgba(26, 40, 50, 0.7);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--moon-white);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: var(--radius-sm);
  background-color: rgba(10, 61, 46, 0.4);
  color: var(--soft-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--golden-glow);
  background-color: rgba(10, 61, 46, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}


.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.footer {
  background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--twilight-navy) 100%);
  color: var(--soft-cream);
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-menu a {
  color: var(--sage-mist);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.footer-menu a:hover {
  color: var(--golden-glow);
}

.footer-copyright {
  color: var(--sage-mist);
  font-size: 0.875rem;
}

.legal-page {
  padding: var(--space-2xl) 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: var(--space-lg);
  color: var(--deep-emerald);
  position: relative;
  padding-bottom: var(--space-sm);
}

.legal-page h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--golden-glow), transparent);
  border-radius: 2px;
}

.legal-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--deep-emerald);
  border-left: 4px solid var(--golden-glow);
  padding-left: var(--space-md);
}

.legal-page h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--charcoal-slate);
}

.legal-page p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-page li {
  margin-bottom: var(--space-xs);
}

.legal-page a {
  color: var(--golden-glow);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.legal-page a:hover {
  color: var(--deep-emerald);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.legal-page th,
.legal-page td {
  padding: var(--space-sm);
  border: 1px solid var(--stone-grey);
  text-align: left;
}

.legal-page th {
  background: linear-gradient(135deg, var(--deep-emerald), var(--charcoal-slate));
  color: var(--soft-cream);
  font-weight: 600;
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  color: var(--golden-glow);
  font-weight: 500;
  transition: all var(--transition-base);
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--golden-glow);
  border-radius: var(--radius-md);
}

.home-button:hover {
  color: var(--deep-emerald);
  background-color: var(--golden-glow);
  transform: translateX(-5px);
}

.thank-you-page,
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.thank-you-page p,
.error-page p {
  max-width: none;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.thank-you-page h1,
.error-page h1 {
  margin-bottom: var(--space-lg);
  color: var(--deep-emerald);
  background: linear-gradient(135deg, var(--golden-glow), var(--amber-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--twilight-navy) 100%);
  color: var(--soft-cream);
  padding: var(--space-lg);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  border-top: 2px solid rgba(212, 165, 116, 0.3);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.privacy-popup-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.875rem;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
}

.privacy-popup .btn {
  margin-top: 0;
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  body.menu-open .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .privacy-popup-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-popup-buttons {
    width: 100%;
    flex-direction: column;
  }

  .privacy-popup .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header {
    padding: clamp(0.3rem, 1vw, 0.5rem) 0;
  }

  .header-content {
    min-height: clamp(2rem, 6vw, 2.5rem);
  }

  .logo {
    font-size: clamp(0.8rem, 3vw, 1rem);
    padding-left: var(--space-xs);
  }

  .logo::before {
    width: 2px;
    height: 45%;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero-animation {
    width: 150px;
    height: 150px;
  }

  .card img {
    height: 180px;
  }

  .product-card img {
    height: 200px;
  }

  .map-container iframe {
    height: 300px;
  }
}

