/* ============================================
   FreshNova Landing Page – Global Styles
   Clean white background, red accents
   Mobile-first, Google Ads compliant
   ============================================ */

:root {
  --white: #ffffff;
  --off-white: #f9f9f9;
  --light-gray: #f2f2f2;
  --mid-gray: #e0e0e0;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --red-primary: #c8102e;
  --red-dark: #a00d24;
  --red-light: #fdedef;
  --red-accent: #e8334a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::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;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--red-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--red-primary);
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--text-primary);
}
.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
}
.header-nav a:hover {
  color: var(--red-primary);
}
.header-cta {
  background: var(--red-primary);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}
.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ── HERO ──────────────────────────────────── */
.hero {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-text h1 .accent {
  color: var(--red-primary);
}
.hero-text .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-text .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red-primary);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.hero-text .disclaimer-inline {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-left: 3px solid var(--mid-gray);
  padding-left: 12px;
  line-height: 1.5;
  max-width: 440px;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.12));
  animation: floatUp 0.8s ease-out;
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECTION COMMON ────────────────────────── */
.section {
  padding: 60px 0;
}
.section.alt-bg {
  background: var(--off-white);
}
.section-title {
  font-size: 1.85rem;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-title .accent {
  color: var(--red-primary);
}

/* red thin divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--red-primary);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── BENEFITS ──────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  color: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}
.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── CONTENT IMAGE ROW ─────────────────────── */
.content-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.content-image-row.reverse {
  direction: rtl;
}
.content-image-row.reverse > * {
  direction: ltr;
}
.content-image-row img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 360px;
}
.content-text h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.content-text p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ── INGREDIENTS ───────────────────────────── */
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.ingredient-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition);
}
.ingredient-item:hover {
  box-shadow: var(--shadow-sm);
}
.ingredient-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--red-primary);
  border-radius: 50%;
  margin-top: 7px;
}
.ingredient-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.ingredient-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── AUDIENCE ──────────────────────────────── */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}
.audience-tag {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}
.audience-tag:hover {
  border-color: var(--red-primary);
  color: var(--red-primary);
  background: var(--red-light);
}

/* ── HOW TO USE ────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── ORDER FORM ────────────────────────────── */
.order-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.order-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.order-box h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 6px;
}
.order-box .order-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--red-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 6px;
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ── DISCLAIMER BANNER ─────────────────────── */
.disclaimer-banner {
  background: var(--light-gray);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--mid-gray);
}

/* ── FOOTER ────────────────────────────────── */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.65);
  padding: 44px 0 24px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-brand .logo {
  margin-bottom: 10px;
  display: inline-block;
}
.footer-brand p {
  max-width: 300px;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── COOKIE MODAL ──────────────────────────── */
.cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 20px;
  display: none;
}
.cookie-overlay.show {
  display: block;
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-inner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.cookie-inner a {
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--mid-gray);
  background: var(--white);
  color: var(--text-primary);
  transition: var(--transition);
}
.cookie-btn.accept {
  background: var(--red-primary);
  color: var(--white);
  border-color: var(--red-primary);
}
.cookie-btn.accept:hover {
  background: var(--red-dark);
}

/* ── LEGAL PAGES ───────────────────────────── */
.legal-page {
  padding: 50px 0 60px;
}
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.legal-page .legal-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--red-primary);
}
.legal-page p, .legal-page ul {
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.legal-page ul {
  padding-left: 24px;
}
.legal-page li {
  margin-bottom: 6px;
}

/* ── SUCCESS PAGE ──────────────────────────── */
.success-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.success-box {
  max-width: 500px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--red-light);
  color: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
}
.success-box h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.success-box p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.btn-back {
  display: inline-block;
  padding: 13px 32px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background var(--transition);
}
.btn-back:hover {
  background: var(--red-dark);
  color: var(--white);
}

/* ── CONTACT / ABOUT PAGES ─────────────────── */
.page-hero {
  padding: 48px 0;
  background: var(--off-white);
  text-align: center;
  border-bottom: 1px solid var(--mid-gray);
}
.page-hero h1 {
  font-size: 2rem;
}
.page-hero p {
  color: var(--text-secondary);
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px 0;
}
.contact-info-block h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--red-light);
  color: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-item-text strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-content {
  padding: 50px 0;
  max-width: 760px;
  margin: 0 auto;
}
.about-content h2 {
  font-size: 1.35rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--red-primary);
}
.about-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text .subtitle, .hero-text .disclaimer-inline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image img {
    max-height: 340px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-image-row {
    grid-template-columns: 1fr;
  }
  .content-image-row.reverse {
    direction: ltr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: var(--shadow-md);
  }
  .header-nav.open {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-text h1 {
    font-size: 1.9rem;
  }
  .benefits-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .ingredients-list {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .order-box {
    padding: 28px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 36px 0 30px;
  }
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .section {
    padding: 40px 0;
  }
}
