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

:root {
  --bg-soft: #faf7f4;
  --text-dark: #2b2621;
  --accent-primary: #d4a574;
  --accent-secondary: #e8d5c4;
  --accent-light: #f5ede3;
  --highlight: rgba(212, 165, 116, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  background-color: var(--bg-soft);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

header {
  background: white;
  padding: 20px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 1px;
  font-style: italic;
}

nav {
  display: none;
}

nav.active {
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

nav a {
  display: block;
  padding: 12px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--accent-primary);
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}

.cta-button {
  background: var(--accent-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  transition: all 200ms ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Georgia', serif;
}

.cta-button:hover {
  background: #c09360;
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(212, 165, 116, 0.3);
}

.cta-button.outline {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.cta-button.outline:hover {
  background: var(--accent-primary);
  color: white;
}

@media (min-width: 768px) {
  header .container-fluid {
    justify-content: space-between;
    align-items: center;
  }

  nav {
    display: flex !important;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    gap: 30px;
  }

  nav a {
    display: inline;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-soft) 100%);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -150px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #5a5450;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 40px;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

.section {
  padding: 60px 20px;
  position: relative;
}

.section h2 {
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 40px;
  color: var(--text-dark);
  text-align: center;
}

.section h3 {
  font-size: 24px;
  font-weight: normal;
  margin: 30px 0 20px;
  color: var(--text-dark);
}

.section p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
  margin-bottom: 20px;
}

.organic-wave {
  background: linear-gradient(180deg, white 0%, var(--accent-light) 100%);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  padding: 60px 20px 80px;
}

.organic-oval {
  background: var(--highlight);
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  padding: 40px 30px;
  margin: 30px 0;
}

.image-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-left img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  order: 2;
}

.image-left-text {
  order: 1;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
}

@media (min-width: 768px) {
  .image-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }

  .image-left img {
    order: 2;
  }

  .image-left-text {
    order: 1;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 220ms ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.25);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-badge {
  display: inline-block;
  font-size: 12px;
  background: var(--accent-secondary);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-name {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-meta {
  font-size: 13px;
  color: #8a8480;
  margin-bottom: 12px;
}

.product-description {
  font-size: 14px;
  line-height: 1.7;
  color: #6a6460;
  margin-bottom: 15px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0ede8;
  padding-top: 15px;
  margin-top: 15px;
}

.product-price {
  font-size: 18px;
  font-weight: normal;
  color: var(--accent-primary);
}

.btn-small {
  background: var(--accent-primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
}

.btn-small:hover {
  background: #c09360;
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.switcher {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.switcher button {
  background: white;
  border: 2px solid var(--accent-secondary);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: all 200ms ease;
  font-family: 'Georgia', serif;
}

.switcher button.active {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

.switcher button:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.faq-item {
  background: white;
  padding: 30px;
  margin: 20px 0;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: 18px;
  font-weight: normal;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
}

footer {
  background: #1a1714;
  color: #ddd;
  padding: 50px 20px 30px;
  margin-top: 60px;
  border-radius: 80px 80px 0 0;
}

footer .container-fluid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

footer h4 {
  font-size: 16px;
  font-weight: normal;
  color: white;
  margin-bottom: 20px;
}

footer a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 200ms ease;
}

footer a:hover {
  color: var(--accent-primary);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-size: 13px;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 12px;
  color: #888;
  margin-top: 40px;
}

@media (min-width: 768px) {
  footer .container-fluid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: normal;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0dbd5;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 200ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--highlight);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 13px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: var(--accent-primary);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Georgia', serif;
  transition: all 200ms ease;
}

.form-submit:hover {
  background: #c09360;
  transform: scale(1.02);
}

.thank-you {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.thank-you p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a5450;
  margin-bottom: 30px;
}

.back-button {
  background: var(--accent-primary);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
}

.product-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.product-image {
  width: 100%;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-details h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.product-details p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
  margin-bottom: 20px;
}

.specs-list {
  background: var(--highlight);
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
}

.spec-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.spec-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.spec-label {
  font-weight: bold;
  color: var(--text-dark);
  font-size: 14px;
}

.spec-value {
  font-size: 14px;
  color: #5a5450;
  margin-top: 5px;
}

.product-price-large {
  font-size: 28px;
  color: var(--accent-primary);
  margin: 30px 0;
  font-weight: normal;
}

.product-cta {
  width: 100%;
  background: var(--accent-primary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Georgia', serif;
  transition: all 200ms ease;
}

.product-cta:hover {
  background: #c09360;
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .product-page {
    grid-template-columns: 1fr 1fr;
  }

  .product-details h1 {
    font-size: 40px;
  }
}

.container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.opacity-75 {
  opacity: 0.75;
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5450;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.legal-content p {
  margin-bottom: 15px;
}

.legal-content ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--accent-primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}
