:root {
  --bg-primary: #F5F3F0;
  --text-primary: #1A1A1A;
  --accent-primary: #C97D60;
  --accent-secondary: #8B6F47;
  --accent-tertiary: #5D4E37;
  --highlight-warm: #E8DCC6;
  --highlight-cool: #D4C4B0;
  --accent-slate: #6B6B6B;
  --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.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.5rem;
  --font-size-hero: 3rem;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --shadow-sm: 0 2px 4px rgba(43, 43, 43, 0.1);
  --shadow-md: 0 4px 8px rgba(43, 43, 43, 0.15);
  --shadow-lg: 0 8px 16px rgba(43, 43, 43, 0.2);
  --transition-base: 0.3s ease;
  --transition-fast: 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-slate);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
}

.header {
  position: relative;
  background: linear-gradient(180deg, rgba(245, 243, 240, 0.98) 0%, rgba(245, 243, 240, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 125, 96, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-text {
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-menu li a {
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-base);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: var(--border-radius-sm);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-base);
  z-index: -1;
}

.nav-menu li a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.nav-menu li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-menu li button.close-menu {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-lg);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1001;
  padding: var(--space-xs);
}

.close-menu {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1001;
  padding: var(--space-xs);
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('../photos/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 243, 240, 0.75) 0%, rgba(232, 220, 198, 0.65) 50%, rgba(212, 196, 176, 0.55) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 125, 96, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-figure {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 500px;
  z-index: 2;
  opacity: 0;
  animation: fadeInRight 1.5s ease-out 0.5s forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero-figure-shape {
  width: 100%;
  height: 100%;
  position: relative;
  animation: gentleMove 8s ease-in-out infinite;
}

@keyframes gentleMove {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-figure-shape::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 300px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
  animation: morphShape 12s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(201, 125, 96, 0.3);
}

.hero-figure-shape::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 250px;
  height: 200px;
  background: linear-gradient(45deg, var(--accent-tertiary) 0%, var(--accent-secondary) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.25;
  animation: morphShape 15s ease-in-out infinite reverse;
  box-shadow: 0 15px 50px rgba(93, 78, 55, 0.25);
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: var(--space-xl) var(--space-md);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.hero p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  color: var(--accent-slate);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(201, 125, 96, 0.3);
}

.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 {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 125, 96, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  box-shadow: none;
}

.btn-secondary::before {
  display: none;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 125, 96, 0.4);
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.about-section {
  background: linear-gradient(180deg, var(--highlight-warm) 0%, var(--highlight-cool) 100%);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 125, 96, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.about-text h2 {
  color: var(--text-primary);
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  background: linear-gradient(135deg, #fff 0%, var(--highlight-warm) 100%);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(201, 125, 96, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(201, 125, 96, 0.2);
}

.feature-icon {
  font-size: var(--font-size-xxl);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.products-preview {
  padding: var(--space-xxl) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(201, 125, 96, 0.1);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 125, 96, 0.05) 0%, rgba(139, 111, 71, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(201, 125, 96, 0.25);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.product-price {
  font-size: var(--font-size-xl);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.process-section {
  background: linear-gradient(180deg, var(--highlight-cool) 0%, var(--highlight-warm) 100%);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 125, 96, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.process-step {
  text-align: center;
  padding: var(--space-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 15px rgba(201, 125, 96, 0.3);
  position: relative;
  transition: all var(--transition-base);
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  opacity: 0.3;
  z-index: -1;
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
}

.testimonials-section {
  padding: var(--space-xxl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, var(--highlight-warm) 100%);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
  border-image: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%) 1;
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-md);
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent-primary);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--accent-slate);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

.gallery-section {
  background: linear-gradient(180deg, var(--highlight-warm) 0%, var(--bg-primary) 100%);
  padding: var(--space-xxl) 0;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 125, 96, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 10px 30px rgba(201, 125, 96, 0.3);
  border-color: var(--accent-primary);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.contact-section {
  padding: var(--space-xxl) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  margin-top: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-md);
}

.contact-icon {
  font-size: var(--font-size-xl);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.contact-form {
  background: linear-gradient(135deg, #fff 0%, var(--highlight-warm) 100%);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 125, 96, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 125, 96, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--highlight-cool);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(201, 125, 96, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.footer {
  background: linear-gradient(180deg, var(--text-primary) 0%, var(--accent-tertiary) 100%);
  color: #fff;
  padding: var(--space-xxl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xxl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
  color: #fff;
  font-size: var(--font-size-lg);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  max-width: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-md);
  margin-bottom: var(--space-md);
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: var(--space-xs);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all var(--transition-base);
  color: var(--accent-primary);
}

.footer-column a:hover {
  color: #fff;
  padding-left: 15px;
}

.footer-column a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  margin: 0;
  max-width: none;
}

.products-page {
  padding: var(--space-xxl) 0;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xxl);
  margin-top: var(--space-xl);
}

.product-detail {
  background: linear-gradient(135deg, #fff 0%, var(--highlight-warm) 100%);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 125, 96, 0.1);
  transition: all var(--transition-base);
  position: relative;
}

.product-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
}

.product-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-detail-info {
  padding: var(--space-xl);
}

.product-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-xxl);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.product-detail-price {
  font-size: var(--font-size-xxl);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.product-detail-description {
  color: var(--accent-slate);
  line-height: 1.8;
}

.thank-you-page,
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl);
}

.thank-you-page h1,
.error-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-lg);
}

.thank-you-page p,
.error-page p {
  font-size: var(--font-size-lg);
  max-width: none;
  margin-bottom: var(--space-lg);
}

.legal-page {
  padding: var(--space-xxl) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: var(--space-xxl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.table-wrapper th,
.table-wrapper td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--highlight-cool);
}

.table-wrapper th {
  background: linear-gradient(135deg, var(--highlight-warm) 0%, var(--highlight-cool) 100%);
  font-weight: 600;
  color: var(--text-primary);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  right: var(--space-md);
  background-color: #fff;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
  display: none;
}

.privacy-popup.active {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.privacy-popup-buttons button {
  flex: 1;
}

@media (max-width: 1024px) {
  .hero-figure {
    width: 300px;
    height: 400px;
    right: 5%;
  }

  .hero-figure-shape::before {
    width: 150px;
    height: 220px;
  }

  .hero-figure-shape::after {
    width: 180px;
    height: 150px;
    bottom: 30px;
    right: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #fff 0%, var(--highlight-warm) 100%);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    transform: translateY(-100%);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    align-items: flex-start;
    gap: var(--space-md);
    border-left: 3px solid;
    border-image: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%) 1;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    padding: var(--space-xs) 0;
    font-size: var(--font-size-base);
  }

  .nav-menu li button.close-menu {
    display: block;
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: auto;
    padding: var(--space-xs);
  }

  .nav-menu.active .close-menu {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-figure {
    display: none;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  h1 {
    font-size: var(--font-size-xxl);
  }

  h2 {
    font-size: var(--font-size-xl);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .products-grid,
  .products-list {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    max-width: none;
    text-align: center;
  }

  .privacy-popup-buttons {
    flex-direction: column;
  }

  .privacy-popup-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .header {
    padding: var(--space-xs) 0;
  }

  .logo-text {
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .legal-content {
    padding: var(--space-lg);
  }
}

