/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-light: #fefaf5;
  --surface: #ffffff;
  --accent: #c19f7b;
  --accent-dark: #a8855f;
  --text-dark: #2c2b28;
  --text-muted: #5a5a5a;
  --border-light: #e9e2d9;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.03), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.08);
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.accent {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Header */
.main-header {
  background: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  color: var(--accent);
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
}

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

.advertising-badge {
  background: #f1ede8;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  color: #5a5a5a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 48px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

/* Stats bar */
.stats-bar {
  background: white;
  padding: 28px 0;
  margin: 16px 0;
  border-radius: 60px;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  gap: 20px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  color: var(--accent-dark);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* About Mission Goal - two columns, left image, right vertical cards */
.two-columns-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.vertical-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: white;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: 0.2s;
}
.info-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.info-card h3 {
  margin-bottom: 10px;
}

/* Features */
.features {
  padding: 32px 0 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.feature {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Products grid */
.featured-products {
  padding: 48px 0;
  background: #f9f5ef;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.product-card h4 {
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 12px 0;
}

/* Steps */
.how-it-works {
  padding: 48px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  text-align: center;
}

.step {
  background: white;
  border-radius: 60px;
  padding: 16px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* Order section two columns */
.order-section {
  padding: 56px 0;
  background: white;
}

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

.form-col h2 {
  margin-bottom: 12px;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-family: inherit;
  background: #fff;
  transition: 0.2s;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,159,123,0.2);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.checkbox-group input {
  width: auto;
  transform: scale(1.2);
  accent-color: var(--accent);
}

/* Simple Gallery (main image + thumbnails) */
.simple-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f0ea;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumbnails {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  border: 2px solid transparent;
}
.thumb:hover {
  opacity: 1;
  transform: scale(0.98);
}
.thumb.active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(193,159,123,0.4);
}

/* Testimonials */
.testimonials {
  padding: 56px 0;
  background: #fefaf5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.testimonial {
  background: white;
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial i.fa-star {
  color: #f5b042;
  margin-right: 2px;
}

.testimonial p {
  margin: 12px 0;
  font-style: italic;
}

/* FAQ */
.faq {
  padding: 48px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 6px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-bottom: 16px;
  color: var(--text-muted);
}

.faq-answer.active {
  display: block;
}

/* Final CTA */
.final-cta {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 56px 20px;
  border-radius: 0;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta .btn-secondary {
  background: white;
  border-color: white;
  color: var(--accent-dark);
}

/* Footer */
.main-footer {
  background: #1e1e1c;
  color: #ddd;
  margin-top: auto;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr 2fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
}

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

.disclaimer-text {
  font-size: 0.8rem;
  opacity: 0.8;
}
html {
  scroll-behavior: smooth;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid #333;
  font-size: 0.8rem;
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1e1e1c;
  color: white;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-radius: 60px;
  z-index: 1000;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.cookie-notice.show {
  display: flex;
}

.cookie-notice a {
  color: var(--accent);
}

#acceptCookie {
  background: var(--accent);
  border: none;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid, .products-grid, .testimonials-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .two-columns {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .two-columns-vertical {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: 1;
  }
  .vertical-cards {
    order: 2;
  }
  .gallery-thumbnails {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }
  .main-nav {
    order: 3;
    width: 100%;
    display: none;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }
  .mobile-toggle {
    display: block;
  }
  .advertising-badge {
    order: 2;
    font-size: 0.7rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .features-grid, .products-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-notice {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
  }
  .thumb {
    width: 65px;
    height: 65px;
  }
}