/* ===== CSS Variables ===== */
:root {
  --white: #FFFFFF;
  --off-white: #F9FAFB;
  --cream: #FDF8F4;
  --mint-light: #E8F5F0;
  --mint: #7DC8AA;
  --mint-dark: #5BA88A;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A8873A;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --text-light: #B2BEC3;
  --border: #E0E0E0;
  --shadow: rgba(0,0,0,0.06);
  --shadow-md: rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { font-size: 0.95rem; color: var(--text-secondary); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; color: var(--text-primary); }
.section-desc { max-width: 600px; margin: 0 auto 2.5rem; text-align: center; }

/* ===== Layout ===== */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
section { padding: 5rem 0; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px var(--shadow-md); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mint-dark);
  letter-spacing: 1px;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.5px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--mint);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem !important;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--mint-dark); transform: translateY(-1px); }

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

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  padding: 1rem 0 0;
  margin-top: var(--header-height);
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--mint-dark); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 0.4rem; }

/* ===== Hero ===== */
.hero {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--mint-light) 50%, var(--white) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(125,200,170,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { animation: fadeInUp 0.8s ease forwards; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(125,200,170,0.15);
  border: 1px solid rgba(125,200,170,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mint-dark);
  margin-bottom: 1.5rem;
}
.hero-title { margin-bottom: 1.25rem; }
.hero-title em {
  font-style: normal;
  color: var(--mint-dark);
  position: relative;
}
.hero-text { font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-image img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.hero-image-badge {
  position: absolute;
  bottom: 30px; left: -20px;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-image-badge .icon {
  width: 40px; height: 40px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  font-size: 1.2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(125,200,170,0.3);
}
.btn-primary:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125,200,170,0.4);
}
.btn-outline {
  border: 2px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ===== Benefits ===== */
.benefits { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.benefit-card {
  background: var(--off-white);
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow);
}
.benefit-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--mint-light), rgba(125,200,170,0.3));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.benefit-card h3 { margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.9rem; }

/* ===== Reviews ===== */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--mint-light);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; font-style: italic; margin-bottom: 1.25rem; color: var(--text-secondary); }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mint-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--mint-dark);
  font-size: 0.9rem;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-date { font-size: 0.78rem; color: var(--text-light); }

/* ===== Order Form ===== */
.order-form-section { background: var(--white); }
.form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background: var(--off-white);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.form-group label .req { color: #e74c3c; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(125,200,170,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .error-msg {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.3rem;
}
.form-group.error input,
.form-group.error textarea { border-color: #e74c3c; }
.form-group.error .error-msg { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--mint);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-group label a { color: var(--mint-dark); text-decoration: underline; }
.checkbox-group .error-msg {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
}
.checkbox-group.error .error-msg { display: block; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--mint);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.form-submit:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125,200,170,0.4);
}

/* ===== Product Cards ===== */
.product-hero {
  background: linear-gradient(135deg, var(--cream), var(--mint-light));
  text-align: center;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.product-image img {
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--shadow-md);
}
.product-info h2 { margin-bottom: 1rem; }
.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint-dark);
  margin-bottom: 1rem;
}
.product-features { margin: 1.5rem 0; }
.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.ingredient-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--shadow); }
.ingredient-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.ingredient-card h4 { font-family: var(--font-display); margin-bottom: 0.4rem; }
.ingredient-card p { font-size: 0.82rem; }

/* ===== About Page ===== */
.about-hero {
  background: linear-gradient(135deg, var(--cream), var(--mint-light));
  text-align: center;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-story img { border-radius: var(--radius); box-shadow: 0 10px 40px var(--shadow-md); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--mint-light), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 6px 20px var(--shadow);
}
.team-card h4 { font-family: var(--font-display); font-size: 1.15rem; }
.team-card .role { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-top: 0.25rem; }
.team-card p { font-size: 0.85rem; margin-top: 0.5rem; }

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: 0 4px 15px var(--shadow); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--mint-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.2rem; }
.contact-card p { font-size: 0.85rem; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  margin-top: 2rem;
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* ===== Success Page ===== */
.success-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--cream), var(--mint-light));
}
.success-icon {
  width: 100px; height: 100px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(125,200,170,0.3);
  animation: scaleIn 0.5s ease forwards;
}
.success-steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.success-step {
  text-align: center;
  max-width: 180px;
}
.success-step-num {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  margin: 0 auto 0.75rem;
}

/* ===== Legal Pages ===== */
.legal-content {
  margin-top: var(--header-height);
  padding: 3rem 0 5rem;
}
.legal-content h1 {
  margin-bottom: 0.5rem;
}
.legal-content .last-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.8;
}
.legal-content ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.legal-content a { color: var(--mint-dark); text-decoration: underline; }

/* ===== Footer ===== */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}
.footer-contact .icon { color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover {
  background: var(--mint);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--white); }

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 0 -4px 20px var(--shadow-md);
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--mint);
}
.cookie-banner.show { display: block; animation: slideUp 0.4s ease; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; flex: 1; min-width: 250px; }
.cookie-inner p a { color: var(--mint-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  padding: 0.6rem 1.5rem;
  background: var(--mint);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--mint-dark); }
.cookie-settings {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-settings:hover { border-color: var(--mint); color: var(--mint-dark); }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--mint);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(125,200,170,0.3);
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--mint-dark); transform: translateY(-3px); }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Content images ===== */
.content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-image { order: 0; max-width: 450px; margin: 0 auto; }
  .hero-text { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .product-detail { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links {
    position: fixed;
    top: var(--header-height); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: 0 10px 30px var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-image-badge { display: none; }
  .form-wrapper { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .success-steps { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}
