/* =========================================================
   OMNIZON — Design System
   ========================================================= */

:root {
  --color-primary: #f2661f;
  --color-primary-dark: #d24e0f;
  --color-primary-light: #ffb27a;
  --color-secondary: #1fa7de;
  --color-secondary-dark: #0f7fae;
  --color-accent: #e6197a;
  --color-sage: #74805f;
  --color-sage-light: #eef1e6;

  --color-bg: #fbf6ef;
  --color-bg-alt: #f4ede1;
  --color-surface: #ffffff;
  --color-ink: #241f1c;
  --color-ink-soft: #5c534c;
  --color-line: #e8ddcc;

  --gradient-brand: linear-gradient(120deg, var(--color-primary) 0%, var(--color-accent) 55%, var(--color-secondary) 100%);
  --gradient-warm: linear-gradient(160deg, #fff9f1 0%, #fbf0df 55%, #f6e6cf 100%);

  --shadow-sm: 0 2px 10px rgba(36, 31, 28, 0.06);
  --shadow-md: 0 12px 30px rgba(36, 31, 28, 0.10);
  --shadow-lg: 0 30px 60px rgba(36, 31, 28, 0.16);
  --shadow-brand: 0 10px 24px rgba(242, 102, 31, 0.22);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1320px;
  --header-h: 84px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--color-primary); color: #fff; }

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

.section { padding: clamp(36px, 5vw, 76px) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-ink { background: var(--color-ink); color: #fff; }
.section-ink .eyebrow { color: var(--color-primary-light); }

.section-head {
  max-width: 720px;
  margin: 0 0 clamp(20px, 3vw, 40px);
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

h2.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
}
h3.card-title { font-size: 1.25rem; font-weight: 800; }

.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-ink-soft);
  margin-top: 14px;
  line-height: 1.7;
}
.section-ink .lede { color: rgba(255,255,255,0.72); }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { background-position: 100% 50%; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.btn-ghost:hover { background: var(--color-ink); color: #fff; transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--color-ink);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--color-ink); }
.btn-instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 10px 22px rgba(150, 47, 191, 0.25);
}
.btn-instagram:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(150, 47, 191, 0.32); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--color-ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a:hover { color: var(--color-primary-light); }
.topbar-marquee { font-weight: 600; letter-spacing: 0.02em; }
.topbar-marquee strong { color: var(--color-primary-light); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}
/* Frosted background lives on a pseudo-element (not the header itself) so that
   backdrop-filter doesn't become a fixed-position containing block for the
   mobile nav overlay (a filter/backdrop-filter on an ancestor traps position:fixed
   descendants to that ancestor's box instead of the viewport). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 246, 239, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  z-index: -1;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-line);
  height: 72px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-brand .logo-img { height: 30px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { background: rgba(242, 102, 31, 0.1); color: var(--color-primary-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line);
  background: #fff;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bars { position: relative; width: 18px; height: 12px; }
.nav-toggle-bars span {
  display: block;
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 5px; }
.nav-toggle-bars span:nth-child(3) { top: 10px; }
body.nav-open .nav-toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-warm);
  overflow: hidden;
  padding: clamp(32px, 5vw, 60px) 0 clamp(40px, 6vw, 72px);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}
.hero::before {
  width: 420px; height: 420px;
  background: var(--color-primary-light);
  top: -140px; right: -120px;
}
.hero::after {
  width: 360px; height: 360px;
  background: var(--color-secondary);
  opacity: 0.18;
  bottom: -160px; left: -100px;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-ink-soft);
  box-shadow: var(--shadow-sm);
}
.pill-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient-brand); }

.hero-title { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  aspect-ratio: 4/5;
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  max-width: 220px;
}
.hero-float-card.top { top: -6%; left: -8%; }
.hero-float-card.bottom { bottom: 6%; right: -10%; }
.hero-float-card .icon-chip {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-sage-light);
  color: var(--color-sage);
  flex-shrink: 0;
}
.hero-float-card small { display: block; font-weight: 500; color: var(--color-ink-soft); }

/* ---------- Trust strip (auto-scrolling marquee) ---------- */
.trust-strip {
  background: var(--color-surface);
  border-block: 1px solid var(--color-line);
  overflow: hidden;
  padding-block: 22px;
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: trust-marquee 26s linear infinite;
}
.trust-strip:hover .trust-track { animation-play-state: paused; }
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  white-space: nowrap;
}
.trust-item svg { color: var(--color-primary); flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.icon-tile {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  margin-bottom: 20px;
}
.card p.card-text { margin-top: 10px; color: var(--color-ink-soft); line-height: 1.6; }

/* Benefit card with side image */
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-card .media { aspect-ratio: 4/5; overflow: hidden; }
.benefit-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.benefit-card:hover .media img { transform: scale(1.06); }
.benefit-card .body { padding: 26px; }

/* Ingredient grid */
.ingredient-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary-light); }
.ingredient-card .leaf {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--color-sage-light);
  color: var(--color-sage);
  display: flex; align-items: center; justify-content: center;
}
.ingredient-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.ingredient-card p { color: var(--color-ink-soft); font-size: 0.92rem; line-height: 1.6; }
.ingredient-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: rgba(242,102,31,0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Ingredient detail page */
.ingredient-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(28px, 4vw, 48px);
}
.ingredient-detail:not(:last-child) { border-bottom: 1px solid var(--color-line); }
.ingredient-detail.reverse { grid-template-columns: 1.1fr 0.9fr; }
.ingredient-detail.reverse .ingredient-media { order: 2; }
.ingredient-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.ingredient-media img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-index { font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: var(--color-primary); letter-spacing: 0.1em; }
.ingredient-inci {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin: 4px 0 0;
}
.ingredient-benefits { margin-top: 18px; display: grid; gap: 10px; }
.ingredient-benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}
.ingredient-benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(242,102,31,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23f2661f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Instagram feed ---------- */
.instagram-slider { position: relative; padding-bottom: 36px; }
.instagram-slider .swiper-slide { height: auto; }
.instagram-slider .swiper-pagination-bullet { background: #fff; opacity: 0.35; }
.instagram-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--color-primary); }
.instagram-slider-nav {
  display: flex; gap: 16px; align-items: center; justify-content: center; margin-top: 16px;
}
.instagram-slider-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.instagram-slider-nav button:hover { background: #fff; color: var(--color-ink); }
.ig-post {
  background: #ffffff;
  color: var(--color-ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ig-post-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
}
.ig-post-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ig-post-user { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.ig-post-user strong { font-size: 0.92rem; }
.ig-post-user span { font-size: 0.78rem; color: var(--color-ink-soft); }
.ig-post-external { color: var(--color-ink-soft); flex-shrink: 0; }
.ig-post-external:hover { color: var(--color-primary); }
.ig-post-media { position: relative; display: block; height: clamp(200px, 22vw, 300px); background: #f3ede4; }
.ig-post-media img { width: 100%; height: 100%; object-fit: cover; }
.ig-post-badge {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ig-post-caption {
  padding: 12px 14px 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-ink);
}
.ig-post-caption strong { margin-right: 6px; }
.ig-post-link {
  display: inline-block;
  margin: 4px 14px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-primary);
}
.instagram-feed-embed { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: start; }
.instagram-feed-embed .instagram-feed-item { aspect-ratio: auto; display: flex; justify-content: center; background: transparent; }
.instagram-feed-embed .instagram-feed-item iframe { border-radius: var(--radius-lg) !important; box-shadow: var(--shadow-lg); }
.instagram-feed-empty { text-align: center; padding: 24px 0; }
.instagram-feed-more { text-align: center; margin-top: 24px; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-media { display: block; aspect-ratio: 4/3; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.06); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--color-ink-soft);
}
.blog-card-category {
  font-family: var(--font-display); font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.75rem;
}
.blog-card-body .card-title a { color: inherit; text-decoration: none; }
.blog-card-body .card-title a:hover { color: var(--color-primary); }
.blog-card-link {
  margin-top: auto; padding-top: 6px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--color-primary);
}
.blog-article { max-width: 760px; margin-inline: auto; }
.blog-article-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 40px; aspect-ratio: 16/9; }
.blog-article-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-body p { color: var(--color-ink-soft); line-height: 1.8; font-size: 1.05rem; margin-bottom: 20px; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Routine steps ---------- */
.routine-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.routine-step { position: relative; text-align: center; padding: 0 12px; }
.routine-num {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: var(--shadow-brand);
}
.routine-step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.routine-step p { color: var(--color-ink-soft); font-size: 0.92rem; line-height: 1.6; }
.routine-connector {
  position: absolute;
  top: 32px; left: 18%; right: 18%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-line) 0 10px, transparent 10px 18px);
  z-index: 0;
}

/* Day/night usage cards */
.usage-time-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.usage-time-card.day { background: linear-gradient(135deg, #ffb454, var(--color-primary)); }
.usage-time-card.night { background: linear-gradient(135deg, #1b2a52, #0c1226); }
.usage-time-card .icon-chip {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.usage-time-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.usage-time-card ol { margin: 16px 0 0; padding: 0; counter-reset: usage; display: grid; gap: 12px; }
.usage-time-card ol li {
  list-style: none;
  counter-increment: usage;
  padding-left: 34px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}
.usage-time-card ol li::before {
  content: counter(usage);
  position: absolute; left: 0; top: -1px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
}

/* ---------- Pillars (Neden Omnizon) ---------- */
.pillars { grid-template-columns: repeat(4, 1fr); }
.pillar { text-align: center; }
.pillar .icon-tile { margin-inline: auto; }

/* ---------- Showcase (split panel, image fills its column edge-to-edge —
   same treatment as .ingredient-media, so it reads full and rich instead of
   floating small inside empty padding) ---------- */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-ink);
}
.showcase-media {
  position: relative;
  min-height: 400px;
}
.showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.showcase-content {
  position: relative;
  color: #fff;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.showcase-content .lede { color: rgba(255,255,255,0.85); }

/* ---------- Retailers ---------- */
.retailer-card {
  text-align: center;
  padding: 40px 28px;
}
.retailer-logo {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
.newsletter h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 10px; }
.newsletter-success { color: var(--color-primary-light); font-weight: 700; margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--color-line); padding-top: clamp(32px, 4vw, 48px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--color-ink-soft); margin-top: 14px; line-height: 1.7; font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--color-ink-soft); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--color-primary-dark); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ink);
}
.footer-social a:hover { background: var(--gradient-brand); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--color-line);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
}
.footer-disclaimer {
  background: var(--color-bg-alt);
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  text-align: center;
  padding: 12px 0;
}
.footer-disclaimer strong { color: var(--color-ink); }

/* ---------- Mobile sticky buy bar ---------- */
.mobile-buy-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 95;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
  padding: 10px 12px;
  transform: translateY(140%);
  transition: transform 0.3s ease;
}
.mobile-buy-bar.show { transform: translateY(0); }
.mobile-buy-bar img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.mobile-buy-bar-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-buy-bar-text strong { font-size: 0.85rem; }
.mobile-buy-bar-text span { font-size: 0.72rem; color: var(--color-ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Forms (contact) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.88rem; }
.form-field input, .form-field textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-ink);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(242,102,31,0.12);
}
.field-validation-error { color: var(--color-accent); font-size: 0.8rem; font-weight: 600; }
.input-validation-error { border-color: var(--color-accent) !important; }
.validation-summary-errors { color: var(--color-accent); font-weight: 600; margin-bottom: 16px; }
.validation-summary-errors ul { padding-left: 18px; list-style: disc; }
.alert-success {
  background: rgba(31, 167, 222, 0.1);
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary-dark);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Contact page extras ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info-card {
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
}
.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 24px; }
.contact-info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-row .icon-chip {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-row div a, .contact-info-row div span { color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.6; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; box-shadow: var(--shadow-md); border: 1px solid var(--color-line); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* ---------- Retailer / hakkimizda / legal pages ---------- */
.page-hero {
  background: var(--gradient-warm);
  padding: clamp(36px, 5vw, 60px) 0 clamp(28px, 4vw, 44px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: -120px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--color-primary-light); opacity: 0.3; filter: blur(60px);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 0.85rem; color: var(--color-ink-soft); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--color-primary-dark); }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.story-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.story-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.story-stat span { font-size: 0.85rem; color: var(--color-ink-soft); }

.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 12px; }
.legal-content p, .legal-content li { color: var(--color-ink-soft); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }

.retailer-grid { grid-template-columns: repeat(3, 1fr); }

.pharmacy-city-group summary { justify-content: space-between; }
.pharmacy-list { display: grid; gap: 4px; padding-bottom: 10px; }
.pharmacy-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-top: 1px dashed var(--color-line);
}
.pharmacy-row .pharmacy-district {
  display: inline-block; margin-left: 8px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--color-primary-dark);
  background: rgba(242,102,31,0.08);
  padding: 2px 8px; border-radius: var(--radius-pill);
}
.pharmacy-row p { color: var(--color-ink-soft); font-size: 0.88rem; margin-top: 4px; }
.pharmacy-row p.pharmacy-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  font-style: normal;
  color: var(--color-secondary-dark);
  background: rgba(31,167,222,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.pharmacy-row p.pharmacy-note::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}
.pharmacy-row a.pharmacy-phone { flex-shrink: 0; font-weight: 700; color: var(--color-secondary-dark); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron { transition: transform 0.25s ease; flex-shrink: 0; color: var(--color-primary); }
.faq-item[open] summary .chevron { transform: rotate(180deg); }
.faq-item p { color: var(--color-ink-soft); line-height: 1.7; padding-bottom: 22px; }

/* ---------- Scroll reveal ----------
   Elements are fully visible by default (no-JS / JS-failure safe).
   Only when JS successfully runs does html.js-reveal apply the hidden
   pre-state; site.js then reveals each element via IntersectionObserver. */
html.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: transform, opacity;
}
html.js-reveal [data-reveal="left"] { transform: translateX(-36px); }
html.js-reveal [data-reveal="right"] { transform: translateX(36px); }
html.js-reveal [data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal].is-visible { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  html.js-reveal [data-reveal] { transition: none; opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.gap-2 { gap: 12px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .benefit-row, .grid-3, .routine-track { grid-template-columns: repeat(2, 1fr); }
  .pillars, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .contact-layout, .ingredient-detail, .ingredient-detail.reverse, .showcase { grid-template-columns: 1fr; }
  .ingredient-detail.reverse .ingredient-media { order: 0; }
  .newsletter { grid-template-columns: 1fr; }
  .routine-connector { display: none; }
  .retailer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topbar-links { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .main-nav {
    display: flex;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    z-index: 90;
    overflow-y: auto;
  }
  body.nav-open .main-nav a { padding: 16px 18px; font-size: 1.05rem; }
  .header-actions .btn-primary span.label-full { display: none; }
  .mobile-buy-bar { display: flex; }
}

@media (max-width: 720px) {
  .benefit-row, .grid-3, .grid-4, .routine-track, .pillars, .footer-grid, .retailer-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full, .form-grid .form-field { grid-column: 1 / -1; }
  .cta-band, .newsletter-form { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter-form { flex-direction: row; }
  .showcase-media { min-height: 320px; }
  .hero-float-card { display: none; }
}
