/**
 * Grocery Homepage — Premium layout & components
 * Mobile-first, CSS custom properties
 */

/* -------------------------------------------------------------------------
   Fonts & reset
   ------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* -------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */
:root {
  --color-bg: #fafcf9;
  --color-surface: #ffffff;
  --color-text: #1a2e1f;
  --color-text-muted: #5c6f62;
  --color-primary: #2d6a4f;
  --color-primary-dark: #1b4332;
  --color-primary-soft: #d8f3dc;
  --color-border: rgba(45, 106, 79, 0.12);
  --color-overlay: rgba(27, 67, 50, 0.55);
  --shadow-sm: 0 1px 2px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 24px 60px rgba(27, 67, 50, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --transition: 0.35s var(--ease-out);
}

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   Header / navbar
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 252, 249, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.logo span {
  color: var(--color-primary);
  font-weight: 500;
}

/* Görsel logo (sosinavm-logo-*.png) */
.logo.logo--image {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  font-family: inherit;
  font-size: 0;
  font-weight: inherit;
  letter-spacing: 0;
  color: inherit;
  text-decoration: none;
}

.logo.logo--image:hover {
  opacity: 0.88;
}

.logo.logo--image .logo__img {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(52vw, 220px);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 768px) {
  .logo.logo--image .logo__img {
    height: 46px;
    max-width: 280px;
  }
}

.logo.logo--in-footer .logo__img {
  height: 32px;
  max-width: 200px;
}

@media (min-width: 768px) {
  .logo.logo--in-footer .logo__img {
    height: 38px;
    max-width: 240px;
  }
}

/* Desktop nav */
.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 0.25rem;
}

.nav-desktop a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
}

.nav-desktop a.is-active {
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
}

/* Mobil menü — SVG ikon (net çizgiler, X morph) */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 999px;
  background: radial-gradient(
      120% 120% at 30% 20%,
      #ffffff 0%,
      #f2f8f4 45%,
      #e9f4ec 100%
    );
  box-shadow: 0 3px 14px rgba(27, 67, 50, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: var(--color-primary-dark);
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.25s ease, box-shadow var(--transition),
    background 0.3s ease, transform 0.2s ease, color 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(45, 106, 79, 0.32);
  box-shadow: 0 5px 20px rgba(27, 67, 50, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.nav-toggle:active {
  transform: scale(0.94);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.nav-toggle[aria-expanded="true"] {
  background: radial-gradient(
    140% 140% at 50% 0%,
    #d8f3dc 0%,
    #f0faf3 55%,
    #ffffff 100%
  );
  border-color: rgba(45, 106, 79, 0.42);
  color: var(--color-primary-dark);
}

.nav-toggle__svg {
  display: block;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.nav-toggle__g {
  transition: transform 0.48s var(--ease-spring), opacity 0.3s ease;
}

.nav-toggle__g--top {
  transform-origin: 12px 6px;
}

.nav-toggle__g--mid {
  transform-origin: 12px 12px;
}

.nav-toggle__g--bot {
  transform-origin: 12px 18px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__g--top {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__g--mid {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__g--bot {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobil dropdown — başlık altından açılır panel */
.nav-mobile-backdrop {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(21, 44, 34, 0.38);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s var(--ease-out), visibility 0.38s;
}

.nav-mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 105;
  max-height: min(72vh, 28rem);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0;
  background: linear-gradient(
    180deg,
    #fefffe 0%,
    #f6fcf8 42%,
    #eef6f0 100%
  );
  border-bottom: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 18px 50px rgba(27, 67, 50, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  overscroll-behavior: contain;
  transform: translateY(-14px) scale(0.98);
  transform-origin: 50% 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s var(--ease-spring), opacity 0.36s var(--ease-out),
    visibility 0.36s, box-shadow 0.4s ease;
}

.nav-mobile.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile__inner {
  padding: 1.15rem 0 1.35rem;
}

.nav-mobile__label {
  margin: 0 0 0.85rem;
  padding-left: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-mobile__list li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.45s var(--ease-spring);
}

.nav-mobile.is-open .nav-mobile__list li:nth-child(1) {
  transition-delay: 0.05s;
}

.nav-mobile.is-open .nav-mobile__list li:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-mobile.is-open .nav-mobile__list li:nth-child(3) {
  transition-delay: 0.15s;
}

.nav-mobile.is-open .nav-mobile__list li:nth-child(4) {
  transition-delay: 0.2s;
}

.nav-mobile.is-open .nav-mobile__list li {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile__list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1.05rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(45, 106, 79, 0.11);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(27, 67, 50, 0.05);
  transition: background var(--transition), border-color var(--transition),
    color var(--transition), box-shadow var(--transition), transform 0.22s ease;
}

.nav-mobile__list a::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.33;
  transform: rotate(-45deg) translateX(-1px);
  transition: opacity var(--transition), transform 0.25s var(--ease-out);
}

.nav-mobile__list a:hover,
.nav-mobile__list a:focus-visible {
  background: #fff;
  border-color: rgba(45, 106, 79, 0.22);
  color: var(--color-primary-dark);
  box-shadow: 0 8px 26px rgba(27, 67, 50, 0.1);
  transform: translateY(-2px);
}

.nav-mobile__list a:hover::after,
.nav-mobile__list a:focus-visible::after {
  opacity: 0.6;
  transform: rotate(-45deg) translateX(1px);
}

.nav-mobile__list a.is-active {
  background: linear-gradient(125deg, var(--color-primary-soft) 0%, #eaf7ed 100%);
  border-color: rgba(45, 106, 79, 0.28);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 18px rgba(45, 106, 79, 0.12);
}

.nav-mobile__list a.is-active::after {
  opacity: 0.55;
  border-color: var(--color-primary-dark);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .nav-mobile-backdrop {
    display: none !important;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow var(--transition),
    background var(--transition), color var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-card {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  background: var(--color-bg);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
}

.btn-card:hover {
  background: var(--color-primary-soft);
  border-color: transparent;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-primary-dark)
    url("../img/hero-market-produce.jpg")
    center / cover no-repeat;
  transform: scale(1.02);
  animation: heroKenburns 18s ease-in-out infinite alternate;
}

@keyframes heroKenburns {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(27, 67, 50, 0.35) 0%,
      rgba(27, 67, 50, 0.72) 55%,
      rgba(27, 67, 50, 0.88) 100%
    ),
    linear-gradient(90deg, rgba(27, 67, 50, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8f5e9;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__subtitle {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
}

/* Çoklu vitrin slaytları (admin: slider_banner) */
.hero--slider {
  display: block;
  padding-bottom: 4.5rem;
}

.hero--slider .hero__viewport {
  position: absolute;
  inset: 0;
}

.hero--slider .hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 0 4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s linear;
  z-index: 0;
}

.hero--slider .hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero--slider .hero__slide .hero__bg {
  position: absolute;
  inset: 0;
  animation: none;
}

.hero--slider .hero__slide.is-active .hero__bg {
  animation: heroKenburns 18s ease-in-out infinite alternate;
}

.hero--slider .hero__slide .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--slider .hero__slide .container {
  position: relative;
  z-index: 1;
}

.hero__bg--fallback {
  background-image: url("../img/hero-market-produce.jpg");
}

.hero__slider-nav {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(27, 67, 50, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s;
}

.hero__dot:hover,
.hero__dot:focus-visible {
  background: #fff;
  transform: scale(1.15);
  outline: none;
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .hero--slider .hero__slide {
    transition: opacity 0.2s ease;
  }

  .hero--slider .hero__slide.is-active .hero__bg {
    animation: none;
  }
}

/* Promo şeridi — carousel (slider_banner: promo_strip) */
.promo--slider {
  display: block;
  position: relative;
  min-height: min(52vh, 420px);
  padding-bottom: 4.5rem;
}

.promo--slider .promo__viewport {
  position: absolute;
  inset: 0;
}

.promo--slider .promo__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 10vw, 5.5rem) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s linear;
  z-index: 0;
}

.promo--slider .promo__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.promo--slider .promo__slide .promo__bg {
  position: absolute;
  inset: 0;
  animation: none;
}

.promo--slider .promo__slide.is-active .promo__bg {
  animation: heroKenburns 18s ease-in-out infinite alternate;
}

.promo--slider .promo__slide .promo__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo--slider .promo__slide .container {
  position: relative;
  z-index: 1;
}

.promo__slider-nav {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(27, 67, 50, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

/* İç sayfa banner carousel (page_header) */
.page-hero--slider {
  display: block;
  position: relative;
  padding: 0;
  min-height: min(52vh, 440px);
  padding-bottom: 3.25rem;
  overflow: hidden;
}

.page-hero--compact.page-hero--slider {
  min-height: min(42vh, 340px);
}

.page-hero--slider .page-hero__viewport {
  position: absolute;
  inset: 0;
}

.page-hero--slider .page-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(3rem, 12vw, 5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s linear;
  z-index: 0;
}

.page-hero--compact.page-hero--slider .page-hero__slide {
  padding: clamp(2.25rem, 8vw, 3.25rem) 0 clamp(2rem, 5vw, 2.75rem);
  align-items: center;
}

.page-hero--slider .page-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.page-hero--slider .page-hero__slide .page-hero__bg {
  position: absolute;
  inset: 0;
  animation: none;
  background-size: cover;
  background-position: center;
}

.page-hero--slider .page-hero__slide.is-active .page-hero__bg {
  animation: heroKenburns 18s ease-in-out infinite alternate;
}

.page-hero--slider .page-hero__slide .page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--slider .page-hero__slide .container {
  position: relative;
  z-index: 1;
}

.page-hero__slider-nav {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(27, 67, 50, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

/* -------------------------------------------------------------------------
   Section titles
   ------------------------------------------------------------------------- */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--alt {
  background: var(--color-surface);
}

.section__header {
  max-width: 560px;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.section__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
}

.section__lead {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* -------------------------------------------------------------------------
   About
   ------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-copy {
  order: 2;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-media {
  order: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-media:hover img {
  transform: scale(1.04);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-copy {
    order: 1;
  }

  .about-media {
    order: 2;
  }
}

/* -------------------------------------------------------------------------
   Catalog cards
   ------------------------------------------------------------------------- */
.catalog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.catalog-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 106, 79, 0.2);
}

.catalog-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.catalog-card__zoom {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: inherit;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.catalog-card__zoom:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.catalog-card__zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.65s var(--ease-out);
  display: block;
  pointer-events: none;
}

.catalog-card:hover .catalog-card__zoom img {
  transform: scale(1.06);
}

.catalog-card__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.catalog-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.catalog-card__title {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.catalog-card__date {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.catalog-card .btn-card {
  width: 100%;
}

/* -------------------------------------------------------------------------
   Features
   ------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature {
  padding: 2rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition),
    box-shadow var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 106, 79, 0.22);
  box-shadow: var(--shadow-md);
}

a.feature,
a.about-value-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.feature:focus-visible,
a.about-value-card:focus-visible {
  outline: 2px solid var(--color-primary-dark, #2d6a4f);
  outline-offset: 3px;
}

.feature__emoji {
  display: inline-block;
  font-size: 1.75rem;
  line-height: 1;
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  background: transparent;
  color: var(--color-primary-dark);
  border-radius: 16px;
}

.feature__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.feature__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------
   Promo banner
   ------------------------------------------------------------------------- */
.promo {
  position: relative;
  padding: clamp(3.5rem, 10vw, 5.5rem) 0;
  overflow: hidden;
}

.promo__bg {
  position: absolute;
  inset: 0;
  background: var(--color-primary-dark)
    url("../img/promo-banner-bg.jpg")
    center / cover no-repeat;
}

.promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 67, 50, 0.92) 0%,
    rgba(45, 106, 79, 0.75) 50%,
    rgba(74, 124, 89, 0.65) 100%
  );
}

.promo .container {
  position: relative;
  z-index: 1;
}

.promo__inner {
  max-width: 520px;
}

.promo__title {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.promo__text {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.promo__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: #fff;
  border-radius: 999px;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand:not(.logo--image) {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand:not(.logo--image) span {
  color: #95d5b2;
}

.footer-brand.logo--image {
  margin-bottom: 0.85rem;
}

.footer-col p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.footer-link {
  color: #b7e4c7;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer-link:hover {
  color: #fff;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #95d5b2;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background var(--transition), transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* -------------------------------------------------------------------------
   Catalog listing page & shared catalog UI
   ------------------------------------------------------------------------- */
.catalog-page {
  padding-bottom: 2rem;
}

.page-hero {
  position: relative;
  padding: clamp(3rem, 12vw, 5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-primary-dark)
    url("../img/hero-market-produce.jpg")
    center / cover no-repeat;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(27, 67, 50, 0.92) 0%,
    rgba(45, 106, 79, 0.78) 55%,
    rgba(27, 67, 50, 0.55) 100%
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  max-width: 640px;
}

.page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero__title {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero__lead em {
  font-style: normal;
  color: #c8f3d8;
  font-weight: 600;
}

.catalog-page__sections {
  padding-top: 2.5rem;
}

.catalog-block {
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.catalog-block--muted .catalog-card {
  opacity: 0.92;
}

.catalog-block--muted .catalog-card:hover {
  opacity: 1;
}

.catalog-block__head {
  margin-bottom: 1.5rem;
}

.catalog-block__title {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--color-primary-dark);
}

.catalog-block__sub {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.catalog-grid--page {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .catalog-grid--page {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-pill {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.catalog-pill--current {
  background: #fff;
  color: var(--color-primary-dark);
}

.catalog-pill--soon {
  background: #e8f5e9;
  color: var(--color-primary-dark);
}

.catalog-pill--past {
  background: rgba(30, 30, 30, 0.75);
  color: #f1f1f1;
}

.catalog-card__promo {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.catalog-card__desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.catalog-card__date--emphasis {
  font-weight: 600;
  color: var(--color-text);
}

.btn-card--muted {
  opacity: 0.65;
  cursor: not-allowed;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
}

/* -------------------------------------------------------------------------
   İletişim sayfası
   ------------------------------------------------------------------------- */
.contact-page {
  padding-bottom: clamp(3rem, 8vw, 4.5rem);
}

.page-hero--compact {
  padding: clamp(2.25rem, 8vw, 3.25rem) 0 clamp(2rem, 5vw, 2.75rem);
}

.page-hero__bg--soft {
  background:
    linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 45%, #a5d6a7 100%);
}

.page-hero__overlay--soft {
  background: linear-gradient(
    180deg,
    rgba(250, 252, 249, 0) 0%,
    rgba(250, 252, 249, 0.35) 100%
  );
}

.page-hero--compact .page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero--compact .page-hero__title {
  color: #fff;
}

.page-hero--compact .page-hero__lead {
  color: rgba(255, 255, 255, 0.9);
}

.contact-layout {
  margin-top: -0.5rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 2.5rem;
  }
}

.contact-panel {
  background: var(--color-surface);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-panel__title {
  margin: 0 0 1.25rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.contact-panel__block {
  margin-bottom: 1.25rem;
}

.contact-panel__block:last-child {
  margin-bottom: 0;
}

.contact-panel__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.contact-panel__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.contact-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--color-primary-dark);
}

/* İletişim paneli — footer ile aynı ikonlar, açık zemin */
.contact-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}

.contact-social a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.contact-social svg {
  width: 20px;
  height: 20px;
}

.contact-map-section {
  min-width: 0;
}

.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
  aspect-ratio: 16 / 11;
  min-height: 280px;
}

@media (min-width: 900px) {
  .contact-map-wrap {
    aspect-ratio: 4 / 3;
    min-height: 360px;
  }
}

.contact-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.contact-map-note {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------
   Hakkımızda sayfası
   ------------------------------------------------------------------------- */
.about-page {
  padding-bottom: 0;
}

.about-teaser-cta {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.about-page__split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-page__split {
    grid-template-columns: 1fr minmax(280px, 44%);
    gap: 3rem;
  }
}

.about-page__copy .section__label {
  margin-bottom: 0.5rem;
}

.about-page__copy .section__title {
  margin-top: 0;
}

.about-page__text {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-page__text:last-of-type {
  margin-bottom: 0;
}

.about-page__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.about-page__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page__mission {
  max-width: 42rem;
  margin-inline: auto;
}

.about-page__mission-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__mission-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.about-page__mission-list li:last-child {
  margin-bottom: 0;
}

.about-page__mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.about-page__values {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .about-page__values {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.about-value-card {
  padding: 1.75rem 1.35rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.about-value-card:hover {
  border-color: rgba(45, 106, 79, 0.22);
  box-shadow: var(--shadow-md);
}

.about-value-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.about-value-card__icon img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.about-value-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.about-value-card__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.about-page__cta-band {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding: clamp(2.75rem, 8vw, 4rem) 0;
  background: linear-gradient(
    115deg,
    var(--color-primary-dark) 0%,
    #2d6a4f 48%,
    #40916c 100%
  );
  color: rgba(255, 255, 255, 0.92);
}

.about-page__cta-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.about-page__cta-title {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.about-page__cta-text {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.6;
  opacity: 0.92;
}

.about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.about-page__cta-band .btn-primary {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.about-page__cta-band .btn-primary:hover {
  background: #f4fbf6;
  color: var(--color-primary-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

/* -------------------------------------------------------------------------
   Katalog görsel lightbox
   ------------------------------------------------------------------------- */
.catalog-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.catalog-lightbox[hidden] {
  display: none !important;
}

.catalog-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(15, 30, 22, 0.88);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.catalog-lightbox__backdrop:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.catalog-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(96vw, 1240px);
  max-height: min(90vh, 920px);
}

.catalog-lightbox__img {
  max-width: 100%;
  max-height: min(86vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  vertical-align: middle;
}

.catalog-lightbox__close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background var(--transition), transform 0.2s ease;
}

.catalog-lightbox__close:hover {
  background: var(--color-primary-soft);
}

.catalog-lightbox__close:active {
  transform: scale(0.96);
}

@media (max-width: 480px) {
  .catalog-lightbox__close {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
  }
}

/* -------------------------------------------------------------------------
   WhatsApp yüzen buton
   ------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow var(--transition),
    background 0.2s ease;
}

.wa-float:hover {
  background: #20bd5a;
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.wa-float:active {
  transform: scale(0.98);
}

.wa-float__icon {
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  .wa-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 60px;
    height: 60px;
  }

  .wa-float__icon {
    width: 32px;
    height: 32px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wa-float:hover,
  .wa-float:active {
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
