/* ===== CSS Variables ===== */
:root {
  --bg-primary: #F5F5F5;
  --bg-secondary: #E0E0E0;
  --bg-white: #FFFFFF;
  --accent: #F2B705;
  --accent-hover: #D9A004;
  --accent-light: #FFF8E1;
  --text-primary: #2D2D2D;
  --text-secondary: #5A5A5A;
  --text-muted: #8A8A8A;
  --border: #D5D5D5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-hover); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text-primary); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-primary); line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* ===== Header / Navbar ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-primary) 100%);
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-hover);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 32px; }

.hero-product {
  max-width: 320px;
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--bg-white);
  border: 2px solid var(--accent);
  padding: 12px 32px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.hero-price .amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
}
.hero-price .currency { font-size: 1rem; color: var(--text-muted); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(242,183,5,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242,183,5,0.35);
  color: var(--text-primary);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--text-primary);
}

/* ===== Section base ===== */
.section { padding: 72px 24px; }
.section-alt { background: var(--bg-white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header p { margin-top: 12px; }

/* ===== About / Info blocks ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.info-card h3 { margin-bottom: 10px; }
.info-card p { font-size: 0.93rem; margin: 0; }

/* ===== Ingredients ===== */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.ingredient-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}
.ingredient-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.ingredient-item p { font-size: 0.9rem; margin: 0; }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.93rem; font-style: italic; margin-bottom: 16px; color: var(--text-secondary); }
.review-author { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 32px;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--accent-light); }
.faq-question .arrow {
  font-size: 0.8rem;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.93rem; color: var(--text-secondary); }

/* ===== Contact Form ===== */
.form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242,183,5,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; }
.form-consent a { text-decoration: underline; }

/* ===== Disclaimer ===== */
.disclaimer-bar {
  background: var(--accent-light);
  border-top: 1px solid #ECDF9A;
  padding: 20px 24px;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
  background: #2D2D2D;
  color: #CCCCCC;
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.footer-col h4 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col p, .footer-col a { font-size: 0.88rem; color: #AAAAAA; line-height: 1.8; }
.footer-col a:hover { color: var(--accent); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid #444;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #888;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2D2D2D;
  color: #CCC;
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.88rem; margin: 0; flex: 1; min-width: 260px; }
.cookie-inner a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-btns button {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-accept { background: var(--accent); color: var(--text-primary); }
.cookie-accept:hover { background: var(--accent-hover); }
.cookie-decline { background: #444; color: #CCC; }
.cookie-decline:hover { background: #555; }

/* ===== Legal / Inner pages ===== */
.page-hero {
  padding: 48px 24px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { font-size: 0.95rem; }

.legal-content, .page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
.legal-content h2, .page-content h2 { margin: 36px 0 16px; font-size: 1.3rem; }
.legal-content h3, .page-content h3 { margin: 24px 0 12px; font-size: 1.1rem; }
.legal-content p, .page-content p { font-size: 0.93rem; }
.legal-content ul, .page-content ul { margin: 12px 0 20px 24px; }
.legal-content li, .page-content li { font-size: 0.93rem; color: var(--text-secondary); margin-bottom: 8px; }

/* ===== Success page ===== */
.success-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}
.success-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.success-box h1 { font-size: 1.8rem; margin-bottom: 16px; }
.success-box p { font-size: 1rem; }

/* ===== Contact page specifics ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.contact-info-card .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.88rem; margin: 0; }

/* ===== Product page ===== */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-img-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.product-details h1 { margin-bottom: 16px; }
.product-details .price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.product-details .price-tag span { font-size: 1rem; color: var(--text-muted); }
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.8rem;
}

/* ===== About page ===== */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.value-card .v-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; margin: 0; }

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.3s; }
.fade-up.d4 { animation-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  
  .hero { padding: 48px 16px 40px; }
  .hero-product { max-width: 240px; }
  .section { padding: 48px 16px; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .cookie-inner { flex-direction: column; text-align: center; }
  
  .form-wrapper { padding: 28px 20px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-price .amount { font-size: 1.6rem; }
  .btn { padding: 12px 28px; font-size: 0.9rem; }
}
