:root {
  interpolate-size: allow-keywords;
  --bg: #FFFFFF;
  --surface: #F4F7F5;
  --surface-2: #E8EFEB;
  --ink: #1B2E28;
  --ink-soft: #4A635B;
  --accent: #1A7A5C;
  --accent-2: #E85D3A;
  --line: rgba(27,46,40,0.12);
  --line-strong: rgba(27,46,40,0.25);
  --header-h: 72px;
  --max-w: 1400px;
  --radius: 8px;
  --radius-lg: 14px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Consolas', 'Courier New', monospace;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 200ms; }
a:hover { color: var(--accent-2); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { max-width: 72ch; }
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.text-accent { color: var(--accent); }
.text-accent2 { color: var(--accent-2); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem; font-weight: 600; z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 0; color: #fff; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0 clamp(16px, 4vw, 32px);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
}
.header-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  white-space: nowrap;
}
.header-logo:hover { color: var(--accent); }

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 200ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  position: relative; z-index: 1100;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  transition: background 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible { background: var(--surface); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute; left: 11px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 180ms;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border: 1.5px solid var(--line-strong);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .nav-toggle span {
    position: absolute;
  }
}

/* ── Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 40px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 200ms, transform 200ms;
}
.drawer a:hover { color: var(--accent); transform: translateX(6px); }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  border-bottom: none;
  text-align: center;
  font-size: 1rem;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #fff; transform: none; }

main { padding-top: var(--header-h); }

/* ── Hero ── */
#hero {
  background: linear-gradient(165deg, var(--surface) 0%, #E3F0E8 35%, #F5EDE7 70%, var(--bg) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--ink) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: word-enter 0.8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(0.3s + var(--w) * 0.18s);
}
@keyframes word-enter { to { opacity: 1; transform: none; } }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.pill {
  padding: 7px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  animation: pill-enter 0.5s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(0.7s + var(--p) * 0.06s);
}
@keyframes pill-enter { to { opacity: 1; transform: none; } }
.pill--ciceksi { background: #F2DDE2; color: #8C3A50; }
.pill--odunsu { background: #EDE4D0; color: #6B4D14; }
.pill--narenciye { background: #FDE8DC; color: #C4502A; }
.pill--baharatli { background: #F5E6D8; color: #8C5A2A; }
.pill--oryantal { background: #E8DDF0; color: #5A357A; }
.pill--yesil { background: #DCF0E6; color: #1A6A4C; }
.pill--baz { background: #E0E8E4; color: #3A5248; }
.pill--ekipman { background: #E4E8E6; color: #3E4E48; }

.hero-search {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.hero-search svg {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--ink-soft);
  pointer-events: none;
}
.hero-search input {
  width: 100%;
  padding: 15px 20px 15px 52px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
  appearance: none; -webkit-appearance: none;
}
.hero-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(26,122,92,0.1), 0 4px 16px -4px rgba(232,93,58,0.06);
  outline: none;
}
.hero-search input::placeholder { color: var(--ink-soft); opacity: 0.6; }

.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  color: var(--accent);
}
.hero-deco--leaf { top: 10%; right: 6%; width: 120px; height: 120px; }
.hero-deco--petal { bottom: 12%; left: 4%; width: 80px; height: 80px; }
.hero-deco--flask { top: 20%; left: 8%; width: 100px; height: 100px; }

.hero-petal {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  opacity: 0.12;
  color: var(--accent);
  animation: petal-float 10s ease-in-out infinite;
}
.hero-petal:nth-child(2) { animation-delay: -3s; animation-duration: 12s; }
.hero-petal:nth-child(3) { animation-delay: -6s; animation-duration: 14s; }
@keyframes petal-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(12px, -18px) rotate(15deg); }
  66% { transform: translate(-8px, -35px) rotate(-10deg); }
}

/* ── Stats Band ── */
.stats-band {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  text-align: center;
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}
.stat-label {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-top: 4px;
}

/* ── Section common ── */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-header h2 { margin-bottom: 10px; }
.section-header p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Catalog ── */
#katalog {
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
}
.katalog-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.filter-sidebar {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2vw, 1.5rem);
  position: sticky; top: calc(var(--header-h) + 16px);
}
.filter-group { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.filter-group label {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 0;
  font-size: 0.92rem;
  cursor: pointer;
  transition: color 200ms;
}
.filter-group label:hover { color: var(--accent); }
.filter-count {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  text-align: right;
}
.filter-toggle {
  display: none;
  width: 100%;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  color: var(--ink);
  margin-bottom: 16px;
  transition: background 200ms;
}
.filter-toggle:hover { background: var(--surface-2); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 20px);
}
.no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ── Product Cards ── */
.product-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(26,122,92,0.18);
}
.product-img {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-2) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-img .img-icon {
  width: 48px; height: 48px;
  color: var(--ink-soft);
  opacity: 0.2;
}
.product-img .chip {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
}
.chip--ciceksi { background: #F2DDE2; color: #8C3A50; }
.chip--odunsu { background: #EDE4D0; color: #6B4D14; }
.chip--narenciye { background: #FDE8DC; color: #C4502A; }
.chip--baharatli { background: #F5E6D8; color: #8C5A2A; }
.chip--oryantal { background: #E8DDF0; color: #5A357A; }
.chip--yesil { background: #DCF0E6; color: #1A6A4C; }
.chip--baz { background: #E0E8E4; color: #3A5248; }
.chip--ekipman { background: #E4E8E6; color: #3E4E48; }

/* ── Nota Piramidi ── */
.nota-pyramid-wrap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(27,46,40,0.9);
  border-radius: 0;
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  padding: 16px;
  gap: 10px;
}
.product-card:hover .nota-pyramid-wrap { opacity: 1; }
.nota-svg { width: 90px; height: 82px; flex-shrink: 0; }
.nota-layer polygon { transition: opacity 260ms, transform 260ms; }
.nota-ust polygon { fill: #E85D3A; opacity: 0; }
.nota-orta polygon { fill: #1A7A5C; opacity: 0; }
.nota-alt polygon { fill: #1B2E28; opacity: 0; stroke: #fff; stroke-width: 0.5; }
.nota-ust text, .nota-orta text, .nota-alt text { fill: #fff; font-size: 7px; font-family: var(--font-body); }
.product-card:hover .nota-ust polygon { opacity: 0.92; transition-delay: 0ms; }
.product-card:hover .nota-orta polygon { opacity: 0.92; transition-delay: 90ms; }
.product-card:hover .nota-alt polygon { opacity: 0.92; transition-delay: 180ms; }
.nota-list {
  list-style: none;
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}
.nota-list strong { color: #fff; font-weight: 600; }

.product-body {
  padding: clamp(14px, 2vw, 18px);
}
.product-body h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.25;
}
.product-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.product-price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.product-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-soft);
}

/* ── Packages ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.package-card {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: border-color 280ms, transform 280ms, box-shadow 280ms;
  display: flex; flex-direction: column;
}
.package-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(26,122,92,0.15);
}
.package-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(26,122,92,0.04) 0%, var(--bg) 60%);
  position: relative;
}
.package-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.package-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.package-price {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.package-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.package-list { margin-bottom: 18px; flex: 1; }
.package-list li {
  padding: 6px 0;
  font-size: 0.92rem;
  display: flex; align-items: flex-start; gap: 8px;
}
.package-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.package-excluded {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.package-excluded li::before {
  content: '—';
  color: var(--ink-soft);
}
.package-excluded li { color: var(--ink-soft); font-size: 0.85rem; }
.price-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ── Process Timeline ── */
.process-section {
  background: var(--surface);
}
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute; left: 17px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.timeline-step {
  position: relative;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -48px; top: 2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  z-index: 1;
}
.timeline-step h4 {
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px;
}
.timeline-step .time-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(26,122,92,0.1);
  padding: 2px 10px;
  border-radius: 10px;
}
.timeline-step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ── Guide ── */
.guide-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.guide-text h3 { margin-bottom: 12px; }
.guide-text p { margin-bottom: 16px; color: var(--ink-soft); }
.guide-tips {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.guide-tip {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.guide-tip:last-child { border-bottom: none; }
.guide-tip-icon {
  width: 40px; height: 40px;
  background: rgba(26,122,92,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.guide-tip-icon svg { width: 20px; height: 20px; }
.guide-tip h4 { font-size: 0.95rem; margin-bottom: 4px; }
.guide-tip p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ── Table Scroll ── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.92rem;
}
thead { background: var(--surface); }
th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid var(--line-strong);
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
tbody tr:hover { background: rgba(26,122,92,0.03); }
.price-cell {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.testimonial {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--accent);
  transition: transform 280ms, box-shadow 280ms, border-left-color 400ms;
}
.testimonial:first-child { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(26,122,92,0.12);
  border-left-color: var(--accent-2);
}
.testimonial blockquote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.testimonial-author strong { color: var(--ink); font-weight: 600; }

/* ── FAQ Accordion ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color 200ms;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  color: var(--accent);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 22px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
  .faq-chevron { transition: none; }
}

/* ── Updates / Notes ── */
.updates-list {
  max-width: 700px;
  margin: 0 auto;
}
.update-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.update-item:last-child { border-bottom: none; }
.update-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  background: rgba(26,122,92,0.08);
  padding: 4px 12px;
  border-radius: 6px;
}
.update-text { color: var(--ink-soft); font-size: 0.95rem; }

/* ── Contact Strip ── */
.contact-strip {
  background: var(--surface);
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-strip-text h3 { margin-bottom: 4px; }
.contact-strip-text p { color: var(--ink-soft); font-size: 0.95rem; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.site-footer p { font-size: 0.9rem; line-height: 1.6; max-width: 100%; }
.footer-social { margin-top: 16px; }
.footer-social a {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: color 200ms;
}
.footer-social a:hover { color: var(--accent); }
.site-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 200ms;
}
.site-footer ul a:hover { color: #fff; }
.footer-contact-info {
  font-size: 0.88rem;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; opacity: 0.6; }
.footer-legal { font-size: 0.78rem !important; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 24px);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.85;
  max-width: 100%;
}
.cookie-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  transition: background 200ms, color 200ms, transform 200ms, border-color 200ms;
  min-height: 44px;
  flex: 1;
}
.cookie-actions button:hover { transform: translateY(-2px); }
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-actions .cookie-accept:hover { background: #21916e; color: #fff; }
.cookie-actions .cookie-reject {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.cookie-actions .cookie-reject:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4); color: #fff; }
.cookie-actions .cookie-settings {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-actions .cookie-settings:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); color: #fff; }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ── Forms ── */
.form-grid {
  display: grid;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  transition: border-color 240ms, box-shadow 240ms;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234A635B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(26,122,92,0.1);
  outline: none;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.kvkk-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.kvkk-field label {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.honeypot {
  position: absolute; left: -9999px; opacity: 0;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--ink);
  color: var(--surface);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 200ms, box-shadow 200ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(26,122,92,0.3), 0 0 12px -2px rgba(232,93,58,0.08);
}
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-full { width: 100%; }
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Trust Badges ── */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 2rem;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(26,122,92,0.06);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Page-specific ── */
.page-hero {
  background: var(--surface);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--ink-soft); margin: 0 auto; }

/* About / Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 280ms, box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(26,122,92,0.12);
}
.team-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--ink-soft);
}
.team-img svg { width: 32px; height: 32px; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-bio { color: var(--ink-soft); font-size: 0.92rem; }

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.about-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(26,122,92,0.04);
  border-radius: var(--radius);
}
.about-stat .stat-number { font-size: 1.8rem; color: var(--accent); }

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.contact-channels { display: grid; gap: 0; }
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  cursor: default;
}
.contact-row:hover { transform: translateX(4px); }
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); }
.contact-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.95rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-value a { color: var(--ink); font-weight: 500; }
.contact-value a:hover { color: var(--accent); }

.hours-table {
  margin-top: 12px;
  font-size: 0.88rem;
}
.hours-table dt {
  float: left; width: 100px;
  font-weight: 600;
  color: var(--ink);
  padding: 3px 0;
}
.hours-table dd {
  margin-left: 110px;
  padding: 3px 0;
  color: var(--ink-soft);
}

/* Thank you page */
.thankyou-wrap {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.thankyou-content h1 { margin-bottom: 12px; color: var(--accent); }
.thankyou-content p { margin: 0 auto 24px; color: var(--ink-soft); }

/* 404 page */
.error-wrap {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
}
.error-wrap h1 { margin-bottom: 8px; }
.error-wrap p { margin: 0 auto 24px; color: var(--ink-soft); }

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 12px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 8px;
}
.legal-content p { margin-bottom: 14px; color: var(--ink-soft); font-size: 0.95rem; }
.legal-content ul { margin: 0 0 16px 24px; list-style: disc; }
.legal-content ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Sitemap page */
.sitemap-list { max-width: 600px; margin: 0 auto; }
.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sitemap-list a { font-weight: 500; }

/* Availability */
.availability-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(232,93,58,0.08);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent-2);
  margin-top: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}
.availability-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 2s ease-in-out infinite;
}
/* pulse-dot defined at end of file */

/* ── Reveal & Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1),
              filter 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .hero-title .word { opacity: 1; transform: none; animation: none; }
  .hero-pills .pill { opacity: 1; transform: none; animation: none; }
  .hero-petal { animation: none; opacity: 0.12; }
  .availability-dot { animation: none; }
}
html.no-js .reveal { opacity: 1; transform: none; filter: none; }

@keyframes vapor-rise {
  0% { transform: translateY(0) scale(1); opacity: 0.12; }
  30% { transform: translateY(-12px) scale(1.15); opacity: 0.15; }
  60% { transform: translateY(-28px) scale(1.4); opacity: 0.06; }
  100% { transform: translateY(-48px) scale(1.7); opacity: 0; }
}
@keyframes flask-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes droplet-drip {
  0% { transform: translateY(-6px); opacity: 0; }
  15% { opacity: 0.7; }
  100% { transform: translateY(18px); opacity: 0; }
}

.vapor-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: vapor-rise 3s ease-out infinite;
  pointer-events: none;
}
.vapor-particle:nth-child(2) { animation-delay: -1s; left: 8px; }
.vapor-particle:nth-child(3) { animation-delay: -2s; left: -6px; }

.flask-anim { animation: flask-breathe 8s ease-in-out infinite; }

.droplet-anim {
  position: absolute;
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: droplet-drip 2.5s ease-in infinite;
  pointer-events: none;
}

/* Counter animation handled by JS */

/* ── Responsive ── */
@media (max-width: 1280px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .katalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: static;
    display: none;
  }
  .filter-sidebar.is-open { display: block; }
  .filter-toggle { display: block; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial:first-child { grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-strip-inner { flex-direction: column; text-align: center; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  :root { --header-h: 62px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-pills { gap: 8px; }
  .pill { padding: 5px 12px; font-size: 0.75rem; }
  .section { padding: clamp(2rem, 5vw, 3rem) 0; }
  .product-grid { gap: 12px; }
  .product-body { padding: 12px; }
  .package-card { padding: 1.2rem; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { flex: auto; }
  .about-stats { grid-template-columns: 1fr; }
  .hours-table dt { float: none; width: auto; }
  .hours-table dd { margin-left: 0; }
}
@media (max-width: 390px) {
  .hero-title { font-size: 2rem; }
  .header-logo { font-size: 1.1rem; }
  .container { padding-left: 14px; padding-right: 14px; }
  .availability-badge {
    font-size: 0.82rem;
    text-align: center;
    justify-content: center;
    line-height: 1.5;
  }
}

/* ── Enhanced hover & theme micro-effects ── */
.trust-badge {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms, box-shadow 240ms;
}
.trust-badge:hover {
  transform: translateY(-2px);
  background: rgba(26,122,92,0.12);
  box-shadow: 0 4px 12px -4px rgba(26,122,92,0.15);
}

.update-item {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms;
  border-radius: var(--radius);
  padding-left: 8px; padding-right: 8px;
}
.update-item:hover {
  transform: translateX(4px);
  background: rgba(26,122,92,0.03);
}

.product-card {
  will-change: transform;
}
.product-card:hover {
  box-shadow: 0 16px 40px -12px rgba(26,122,92,0.18), 0 0 0 1px rgba(26,122,92,0.12);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  position: relative;
}
.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 14px -4px rgba(26,122,92,0.12);
}

.timeline-dot {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.timeline-step:hover .timeline-dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(26,122,92,0.12), 0 0 18px rgba(232,93,58,0.1);
}

.package-card {
  will-change: transform;
}
.package-card.is-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(26,122,92,0.3) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.faq-item summary {
  border-radius: var(--radius);
  padding-left: 8px; padding-right: 8px;
  margin-left: -8px; margin-right: -8px;
  transition: color 200ms, background 200ms;
}
.faq-item summary:hover { background: rgba(26,122,92,0.03); }

.hero-search input {
  transition: border-color 240ms, box-shadow 240ms, transform 240ms;
}
.hero-search input:focus {
  transform: translateY(-1px);
}

/* Stagger-reveal and scent-drift moved to end of file */

/* Nota pyramid tap support on mobile */
@media (hover: none) and (pointer: coarse) {
  .product-card.nota-active .nota-pyramid-wrap { opacity: 1; }
}

/* Cookie banner fixes — stronger visual hierarchy */
.cookie-actions .cookie-accept {
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(26,122,92,0.3);
}
.cookie-actions .cookie-reject {
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.28);
  font-weight: 600;
  font-size: 0.88rem;
}
.cookie-actions .cookie-reject:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}
.cookie-actions .cookie-settings {
  font-weight: 500;
  font-size: 0.84rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-actions .cookie-settings:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  }
  .cookie-actions button {
    min-height: 48px;
  }
}

/* Ensure no horizontal overflow on mobile */
@media (max-width: 768px) {
  .hero-pills { padding: 0 8px; }
  .trust-strip { padding: 0 4px; }
}

/* ── Legal page structure enhancements ── */
.legal-content h2 {
  position: relative;
  padding-left: 16px;
}
.legal-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p + p { margin-top: 8px; }
.legal-content ul li {
  position: relative;
  padding-left: 6px;
}

/* ── Table scroll indicator ── */
.table-scroll {
  position: relative;
}
.table-scroll::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 0 6px 6px 0;
  opacity: 1;
  transition: opacity 300ms;
}
.table-scroll.scrolled-end::after { opacity: 0; }

/* ── Cookie banner — ensure footer clearance ── */
.site-footer {
  padding-bottom: 0;
}
.footer-bottom {
  padding-bottom: 20px;
}

/* ── Perfume-themed warm glow on product cards ── */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.16,1,.3,1);
  background: linear-gradient(180deg, transparent 60%, rgba(232,93,58,0.04) 100%);
  box-shadow: inset 0 -3px 16px rgba(232,93,58,0.07);
  pointer-events: none;
}
.product-card:hover::after {
  opacity: 1;
}

/* ── Warm amber glow on featured package ── */
.package-card.is-featured {
  transition: border-color 280ms, transform 280ms, box-shadow 280ms;
}
.package-card.is-featured:hover {
  box-shadow: 0 16px 40px -10px rgba(26,122,92,0.2), 0 0 28px -6px rgba(232,93,58,0.1);
}
.package-card:not(.is-featured):hover {
  box-shadow: 0 12px 32px -8px rgba(26,122,92,0.15), 0 0 0 1px rgba(26,122,92,0.08);
}

/* ── Guide tip hover ── */
.guide-tip {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}
.guide-tip:hover {
  transform: translateX(4px);
}
.guide-tip-icon {
  transition: background 240ms, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.guide-tip:hover .guide-tip-icon {
  background: rgba(26,122,92,0.14);
  transform: scale(1.08);
}

/* ── Team card hover glow ── */
.team-card:hover .team-img {
  box-shadow: 0 0 0 4px rgba(26,122,92,0.12);
  transition: box-shadow 280ms;
}
.team-img {
  transition: box-shadow 280ms;
}

/* ── Contact row hover refinement ── */
.contact-row {
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}
.contact-row:hover {
  background: rgba(26,122,92,0.02);
}

/* ── Testimonial quote mark deco ── */
.testimonial blockquote {
  position: relative;
}
.testimonial blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

/* ── Smoother reveal keyframes ── */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px) scale(0.98); filter: blur(2px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
.reveal.is-in {
  animation: reveal-up 0.9s cubic-bezier(.16,1,.3,1) both;
  animation-delay: calc(var(--i, 0) * 100ms);
}

/* ── Hero word entrance enhancement ── */
.hero-title .word {
  animation: word-enter 1s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(0.2s + var(--w) * 0.2s);
}

/* ── Scent-drift particles refined ── */
@keyframes scent-drift {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.09; }
  20% { transform: translate(6px, -14px) rotate(6deg) scale(1.08); opacity: 0.12; }
  45% { transform: translate(-5px, -28px) rotate(-4deg) scale(1.18); opacity: 0.07; }
  70% { transform: translate(8px, -40px) rotate(10deg) scale(1.12); opacity: 0.04; }
  100% { transform: translate(0, -54px) rotate(0deg) scale(1.28); opacity: 0; }
}
.hero-petal {
  animation: scent-drift 14s ease-in-out infinite;
}
.hero-petal:nth-child(2) { animation-delay: -5s; animation-duration: 17s; }
.hero-petal:nth-child(3) { animation-delay: -9s; animation-duration: 20s; }

/* ── Pill hover effect ── */
.pill {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
  cursor: default;
}
.pill:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.1);
}

/* ── Availability badge subtle pulse ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-badge,
  .update-item,
  .btn-primary::before,
  .timeline-dot,
  .hero-search input { transition: none !important; animation: none !important; }
  .reveal.is-in { animation: none !important; filter: none !important; }
  .hero-petal { animation: none !important; }
  .pill { transition: none !important; }
  .guide-tip,
  .guide-tip-icon,
  .contact-row,
  .team-img,
  .product-card::after { transition: none !important; }
}

@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .hero-deco, .hero-petal, .filter-sidebar, .filter-toggle { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
