/* ===================================================================
   TERRA NEVIDI — Premium Olive Oil E-Commerce
   Modern · Mobile-First · Accessible (WCAG 2.1 AA)
   =================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand colors — Modern: Koyu yeşil + beyaz + bakır */
  --color-primary:      #2D3E1F;   /* deep olive green */
  --color-primary-700:  #1F2C13;
  --color-primary-500:  #4A5D31;
  --color-accent:       #B87333;   /* copper */
  --color-accent-700:   #8E5421;
  --color-accent-200:   #E8C9A8;

  --color-bg:           #FFFFFF;
  --color-bg-soft:      #FAF7F2;   /* warm cream */
  --color-bg-darker:    #F2EDE4;
  --color-surface:      #FFFFFF;
  --color-border:       #E8E2D5;
  --color-divider:      #EFEAE0;

  --color-text:         #1A1F12;
  --color-text-soft:    #4A4D40;
  --color-text-muted:   #7A7A6E;
  --color-text-inverse: #FFFFFF;

  --color-success:      #2E7D32;
  --color-warning:      #ED6C02;
  --color-error:        #C62828;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Type scale (mobile first, 1.25 ratio) */
  --fs-xs:   0.75rem;   /* 12 */
  --fs-sm:   0.875rem;  /* 14 */
  --fs-base: 1rem;      /* 16 */
  --fs-md:   1.125rem;  /* 18 */
  --fs-lg:   1.375rem;  /* 22 */
  --fs-xl:   1.75rem;   /* 28 */
  --fs-2xl:  2.25rem;   /* 36 */
  --fs-3xl:  2.875rem;  /* 46 */

  /* Spacing (8px grid) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Radii */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 31, 18, 0.06);
  --shadow:    0 4px 12px rgba(26, 31, 18, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 31, 18, 0.12);
  --shadow-xl: 0 24px 60px rgba(26, 31, 18, 0.16);

  /* Layout */
  --container-max: 1280px;
  --header-height: 72px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 450ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--color-accent); }
ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 var(--sp-4) 0;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
p { margin: 0 0 var(--sp-4) 0; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--sp-3) var(--sp-4);
  z-index: 1000;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.section { padding: var(--sp-7) 0; }
.section-tight { padding: var(--sp-6) 0; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement {
  background: var(--color-primary-700);
  color: var(--color-text-inverse);
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  padding: 8px var(--sp-4);
  text-transform: uppercase;
}
.announcement strong { color: var(--color-accent-200); font-weight: 600; }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--t-base) var(--ease-out);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-height);
  gap: var(--sp-4);
}
.header__brand {
  display: flex; align-items: center; gap: var(--sp-2);
  color: var(--color-primary);
}
.header__brand:hover { color: var(--color-accent); }
.brand-mark { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
.brand-mark__sub { font-family: var(--font-body); font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-text-muted); display: block; margin-top: 2px; }
.header__logo { height: 44px; width: auto; max-width: 200px; object-fit: contain; }

/* Nav */
.nav { display: none; }
.nav__list { display: flex; gap: var(--sp-5); }
.nav__link {
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--color-text); padding: var(--sp-2) 0;
  position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-base) var(--ease-out);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: var(--sp-2); }
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--color-text);
  position: relative;
  transition: background var(--t-fast) var(--ease-out);
}
.icon-btn:hover { background: var(--color-bg-soft); color: var(--color-primary); }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px; line-height: 1;
}

.menu-toggle { display: inline-flex; }

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; right: 0;
  width: min(86vw, 360px); height: 100vh; height: 100dvh;
  background: var(--color-bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--t-base) var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4); border-bottom: 1px solid var(--color-divider); }
.drawer__list { padding: var(--sp-4); }
.drawer__list a { display: block; padding: var(--sp-3) 0; font-size: var(--fs-md); border-bottom: 1px solid var(--color-divider); }
.drawer__cta { padding: var(--sp-4); margin-top: auto; border-top: 1px solid var(--color-divider); display: flex; flex-direction: column; gap: var(--sp-3); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(26, 31, 18, 0.5);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
body.no-scroll { overflow: hidden; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--t-base) var(--ease-out);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn--primary {
  background: var(--color-primary); color: var(--color-text-inverse);
}
.btn--primary:hover { background: var(--color-primary-700); color: var(--color-text-inverse); }
.btn--accent {
  background: var(--color-accent); color: var(--color-text-inverse);
}
.btn--accent:hover { background: var(--color-accent-700); color: var(--color-text-inverse); }
.btn--ghost {
  background: transparent; color: var(--color-primary); border-color: var(--color-primary);
}
.btn--ghost:hover { background: var(--color-primary); color: var(--color-text-inverse); }
.btn--light {
  background: var(--color-bg); color: var(--color-primary); border-color: var(--color-bg);
}
.btn--light:hover { background: transparent; color: var(--color-text-inverse); border-color: var(--color-text-inverse); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 10px 18px; min-height: 38px; font-size: var(--fs-xs); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1A0F0A 0%, #2D1A0F 60%, #4A3220 100%);
  color: var(--color-text-inverse);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500"><g fill="%23B87333" fill-opacity="0.06"><circle cx="80" cy="120" r="3"/><circle cx="220" cy="60" r="2"/><circle cx="350" cy="180" r="4"/><circle cx="450" cy="100" r="2"/><circle cx="100" cy="320" r="3"/><circle cx="270" cy="380" r="2"/><circle cx="400" cy="420" r="3"/></g></svg>');
  opacity: 0.7;
  pointer-events: none;
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 200ms var(--ease-out);
}
.hero-slider__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.06);
}
.hero-slider__nav:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.hero-slider__prev { left: 8px; }
.hero-slider__next { right: 8px; }
.hero-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-slider__dot {
  width: 28px; height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 250ms var(--ease-out);
}
.hero-slider__dot.is-active {
  background: var(--color-accent);
  width: 40px;
}
.hero-slider__dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero-slider__dot.is-active:hover { background: var(--color-accent); }

@media (min-width: 600px) {
  .hero-slider__prev { left: 16px; }
  .hero-slider__next { right: 16px; }
  .hero-slider__nav { width: 50px; height: 50px; }
  .hero-slider__dots { bottom: 20px; }
}
@media (min-width: 900px) {
  .hero-slider__prev { left: 24px; }
  .hero-slider__next { right: 24px; }
}
.hero__inner {
  position: relative; z-index: 1;
  padding: var(--sp-7) 0 var(--sp-8);
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--color-accent-200);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
}
.hero__eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--color-accent);
}
.hero h1 {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: var(--sp-4);
}
.hero h1 em {
  color: var(--color-accent-200);
  font-style: italic;
  font-weight: 300;
}
.hero__lead {
  font-size: var(--fs-md);
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.05em;
  text-align: center; line-height: 1.2;
  box-shadow: var(--shadow-lg);
}

/* ---------- SECTION HEAD ---------- */
.section-head { text-align: center; margin-bottom: var(--sp-6); }
.section-head__eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: var(--sp-3);
}
.section-head__lead { color: var(--color-text-soft); max-width: 600px; margin: 0 auto; font-size: var(--fs-md); }

/* ---------- BENEFITS BAR ---------- */
.benefits {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
}
.benefit {
  display: flex; align-items: center; gap: var(--sp-3);
  text-align: left;
}
.benefit__icon {
  flex: none;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}
.benefit__title { font-weight: 600; font-size: var(--fs-sm); margin-bottom: 2px; color: var(--color-text); }
.benefit__desc { color: var(--color-text-muted); font-size: var(--fs-xs); margin: 0; }

/* ---------- PRODUCT CARD ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--t-base) var(--ease-out);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-200);
}
.product-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-soft);
  position: relative;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__tags {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  display: flex; flex-direction: column; gap: 6px;
}
.tag {
  background: var(--color-primary); color: var(--color-text-inverse);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-sm);
}
.tag--accent { background: var(--color-accent); }
.tag--sale   { background: var(--color-error); }
.product-card__body { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.product-card__cat { font-size: var(--fs-xs); color: var(--color-accent); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.product-card__title { font-family: var(--font-body); font-size: var(--fs-md); font-weight: 600; margin: 0; line-height: 1.3; color: var(--color-text); }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__desc { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.5; margin: 0; }
.product-card__foot { display: flex; align-items: center; justify-content: flex-start; gap: var(--sp-3); margin-top: auto; padding-top: var(--sp-3); }
.price { display: flex; align-items: baseline; gap: var(--sp-2); flex-wrap: wrap; }
.price__current { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-primary); letter-spacing: -0.01em; }
.price__compare { font-size: var(--fs-sm); color: var(--color-text-muted); text-decoration: line-through; }

/* ---- BELİRGİN FİYAT (amt) — modern e-ticaret tipografisi ---- */
.amt {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.amt__currency {
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.7em;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0;
  transform: translateY(-2px);
}
.amt__value {
  font-feature-settings: "lnum" 1;
}
.amt--sm { font-size: 1rem; }
.amt--md { font-size: 1.25rem; }
.amt--lg { font-size: 1.75rem; }
.amt--xl { font-size: 2.25rem; }
.amt--muted { color: var(--color-text-muted); font-weight: 500; text-decoration: line-through; }
.amt--muted .amt__currency { color: var(--color-text-muted); }
/* Quick-add: sepet ikonu görselin sağ alt köşesinde — overflow problem yok, premium görünüm */
.product-card__quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
}
.product-card__cta {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--t-fast) var(--ease-out);
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
  flex: none;
}
.product-card__cta:hover { background: var(--color-accent); transform: scale(1.08); color: var(--color-text-inverse); }
.product-card__cta:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- STORY BLOCK ---------- */
.story {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
  align-items: center;
}
.story--alt { direction: rtl; }
.story--alt > * { direction: ltr; }
.story__media {
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius-lg);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__body p { color: var(--color-text-soft); font-size: var(--fs-md); }

/* ---------- PROCESS STEPS ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
.process-step {
  text-align: center;
  padding: var(--sp-5);
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--t-base) var(--ease-out);
  box-shadow: 0 1px 3px rgba(26, 31, 18, 0.04);
}
.process-step:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(26, 31, 18, 0.08);
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: var(--sp-3);
  background: transparent;
  transition: transform var(--t-base) var(--ease-out);
}
.process-step:hover .process-step__num {
  transform: scale(1.08);
}
.process-step__num img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.process-step h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.process-step p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  color: var(--color-text-inverse);
  text-align: center;
  padding: var(--sp-7) var(--sp-4);
  border-radius: var(--radius-lg);
  margin: var(--sp-6) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(184, 115, 51, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--color-text-inverse); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: var(--sp-3); }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: var(--fs-md); max-width: 560px; margin: 0 auto var(--sp-5); }
.cta-band__actions { display: inline-flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-4);
}
.testimonial {
  background: var(--color-bg-soft); padding: var(--sp-5);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-accent);
}
.testimonial__stars { color: var(--color-accent); margin-bottom: var(--sp-2); letter-spacing: 2px; }
.testimonial__quote { font-style: italic; color: var(--color-text-soft); margin-bottom: var(--sp-3); }
.testimonial__author { font-weight: 600; font-size: var(--fs-sm); }
.testimonial__role { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* ---------- AWARDS ---------- */
.awards {
  background: var(--color-bg-soft);
}
.awards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  align-items: center;
}
.award {
  text-align: center; padding: var(--sp-5) var(--sp-4);
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: all var(--t-base) var(--ease-out);
}
.award:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.award__icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award__icon img {
  max-height: 64px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.award__title { font-size: var(--fs-sm); font-weight: 600; color: var(--color-text); }
.award__sub { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: 2px; }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--color-bg-darker);
  padding: var(--sp-7) var(--sp-4);
  border-radius: var(--radius-lg);
  text-align: center;
}
.newsletter h2 { margin-bottom: var(--sp-2); font-size: var(--fs-xl); }
.newsletter p { color: var(--color-text-soft); margin-bottom: var(--sp-4); }
.newsletter__form {
  display: flex; flex-direction: column; gap: var(--sp-2); max-width: 480px; margin: 0 auto;
}
.newsletter__form input {
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  font-size: var(--fs-base);
}

/* ---------- FORMS ---------- */
.form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form__row { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: var(--fs-sm); font-weight: 600; color: var(--color-text);
}
.form-group label .req { color: var(--color-error); }
.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  font-size: var(--fs-base);
  width: 100%;
  transition: border-color var(--t-fast) var(--ease-out);
  min-height: 48px;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 62, 31, 0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-help { font-size: var(--fs-xs); color: var(--color-text-muted); }
.form-error { color: var(--color-error); font-size: var(--fs-xs); }
.form-check { display: flex; align-items: flex-start; gap: var(--sp-2); }
.form-check input[type=checkbox] { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--color-primary); flex: none; }
.form-check label { font-size: var(--fs-sm); color: var(--color-text-soft); }

/* ---------- ALERTS / FLASH ---------- */
.alert {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
  border-left: 3px solid var(--color-primary);
  background: var(--color-bg-soft);
  font-size: var(--fs-sm);
}
.alert--success { border-color: var(--color-success); background: #E8F5E9; color: #1B5E20; }
.alert--warning { border-color: var(--color-warning); background: #FFF3E0; color: #6F3D00; }
.alert--error   { border-color: var(--color-error); background: #FFEBEE; color: #8E2424; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  font-size: var(--fs-sm); color: var(--color-text-muted);
  padding: var(--sp-3) 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb__sep { color: var(--color-text-muted); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-primary-700);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-8) 0 var(--sp-5);
  margin-top: var(--sp-7);
}
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  margin-bottom: var(--sp-5);
}
.footer h4 {
  color: var(--color-text-inverse); font-size: var(--fs-sm);
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.footer__brand .brand-mark { color: var(--color-text-inverse); font-size: 2rem; }
.footer__brand p { color: rgba(255, 255, 255, 0.7); margin-bottom: var(--sp-3); }
.footer__list a { display: block; padding: 6px 0; color: rgba(255, 255, 255, 0.75); font-size: var(--fs-sm); }
.footer__list a:hover { color: var(--color-accent-200); }
.footer__social { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text-inverse);
  transition: background var(--t-fast) var(--ease-out);
}
.footer__social a:hover { background: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--sp-4);
  display: flex; flex-direction: column; gap: var(--sp-3);
  font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* ---------- CART / CHECKOUT ---------- */
.cart-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.cart-line {
  display: grid; grid-template-columns: 80px 1fr; gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-divider);
  align-items: center;
}
.cart-line__media { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--color-bg-soft); }
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__title { font-weight: 600; margin: 0 0 4px; font-size: var(--fs-sm); }
.cart-line__sku { font-size: var(--fs-xs); color: var(--color-text-muted); }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-pill); overflow: hidden; }
.qty-control button { width: 32px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
.qty-control button:hover { background: var(--color-bg-soft); }
.qty-control input { width: 40px; text-align: center; border: 0; background: transparent; height: 36px; }
.cart-line__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.cart-summary {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  position: sticky; top: calc(var(--header-height) + var(--sp-3));
}
.cart-summary__row { display: flex; justify-content: space-between; padding: var(--sp-2) 0; }
.cart-summary__row--total { font-size: var(--fs-md); font-weight: 700; border-top: 1px solid var(--color-border); padding-top: var(--sp-3); margin-top: var(--sp-2); }

/* ---------- PRODUCT DETAIL ---------- */
.pdp { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.pdp__media { display: flex; flex-direction: column; gap: var(--sp-3); }
.pdp__main-img {
  aspect-ratio: 1; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--color-bg-soft);
}
.pdp__main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
.pdp__thumb {
  aspect-ratio: 1; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t-fast) var(--ease-out);
}
.pdp__thumb.is-active, .pdp__thumb:hover { border-color: var(--color-primary); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__title { font-size: var(--fs-2xl); margin-bottom: var(--sp-2); }
.pdp__cat { font-size: var(--fs-xs); color: var(--color-accent); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.pdp__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(184,115,51,0.06), rgba(45,62,31,0.03));
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
}
.pdp__price .price__current { font-size: var(--fs-2xl); }
.pdp__short { color: var(--color-text-soft); font-size: var(--fs-md); margin-bottom: var(--sp-4); }
.pdp__specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3);
  background: var(--color-bg-soft); padding: var(--sp-4); border-radius: var(--radius-lg);
  margin-bottom: var(--sp-4);
}
.pdp__spec b { display: block; font-size: var(--fs-xs); color: var(--color-text-muted); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.pdp__spec span { font-size: var(--fs-sm); font-weight: 600; }
.pdp__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.pdp__description { padding-top: var(--sp-5); border-top: 1px solid var(--color-divider); }

/* ---------- ADMIN-LIKE TABLES ON FRONT ---------- */
.table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.table th, .table td { padding: var(--sp-3); border-bottom: 1px solid var(--color-divider); text-align: left; }
.table th { color: var(--color-text-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: var(--fs-xs); }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--t-base) var(--ease-out);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card__media { aspect-ratio: 16/10; background: var(--color-bg-soft); overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease-out); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: var(--fs-xs); color: var(--color-text-muted); margin-bottom: var(--sp-2); }
.blog-card__title { font-family: var(--font-display); font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.blog-card__excerpt { color: var(--color-text-soft); font-size: var(--fs-sm); margin-bottom: var(--sp-3); flex: 1; }
.blog-card__more { color: var(--color-accent); font-weight: 600; font-size: var(--fs-sm); }
.article {
  max-width: 760px; margin: 0 auto;
  padding: var(--sp-5) 0;
}
.article h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.article p, .article ul, .article ol { font-size: var(--fs-md); color: var(--color-text-soft); line-height: 1.75; }
.article img { border-radius: var(--radius-lg); margin: var(--sp-5) 0; }

/* ---------- WHATSAPP FAB + BUBBLE ---------- */
.wa-widget {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fab-whatsapp {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform var(--t-base) var(--ease-out);
  position: relative;
}
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .55; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Bubble (tooltip) — WhatsApp butonunun ÜZERİNE çıkar */
.wa-bubble[hidden] { display: none !important; }
.wa-bubble {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 14px 36px 14px 16px;
  width: 260px;
  max-width: calc(100vw - 32px);
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  border: 1px solid var(--color-border);
}
.wa-bubble.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
/* Aşağıyı işaret eden ok (WhatsApp butonuna doğru) */
.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transform: rotate(45deg);
}
.wa-bubble__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-soft);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.wa-bubble__close:hover { background: var(--color-border); }
.wa-bubble strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
}
.wa-bubble p {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0 0 10px;
  line-height: 1.45;
}
.wa-bubble__cta {
  display: inline-block;
  background: #25D366;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.wa-bubble__cta:hover { background: #1da851; color: #fff; text-decoration: none; }

/* Footer payments (kredi kartı) */
.footer__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 16px;
}
.footer__payments img {
  max-height: 30px;
  width: auto;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}

/* ===================================================================
   RESPONSIVE — TABLET & DESKTOP
   =================================================================== */
@media (min-width: 600px) {
  .container { padding: 0 var(--sp-5); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .awards__grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-line { grid-template-columns: 100px 1fr auto; }
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  .newsletter__form { flex-direction: row; }
  .newsletter__form input { flex: 1; }
}

@media (min-width: 900px) {
  .nav { display: block; }
  .menu-toggle { display: none; }
  .section { padding: var(--sp-8) 0; }
  .hero__inner { grid-template-columns: 1.1fr 1fr; padding: var(--sp-8) 0; gap: var(--sp-7); }
  .benefits__grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .story { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .story--alt .story__media { order: 2; }
  .pdp { grid-template-columns: 1.1fr 1fr; gap: var(--sp-7); }
  .cart-grid { grid-template-columns: 1.5fr 1fr; gap: var(--sp-6); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .wa-widget { bottom: 24px; right: 24px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 var(--sp-6); }
  .process-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Print */
@media print {
  .header, .footer, .fab-whatsapp, .announcement { display: none; }
  .section { padding: 8px 0; }
}
