/* Köyden Ürün — Design System */
:root {
  --primary: #2f4a2f;
  --primary-deep: #19331a;
  --primary-hover: #233823;
  --on-primary: #f8f3e9;
  --secondary: #6b8f3e;
  --secondary-soft: rgba(107, 143, 62, 0.14);
  --terracotta: #b5522d;
  --terracotta-deep: #8f3d1f;
  --sun: #f1c77b;
  --sun-soft: rgba(241, 199, 123, 0.28);
  --cream: #f8f3e9;
  --cream-deep: #f2ede3;
  --cream-darker: #e7e2d8;
  --white: #ffffff;
  --ink: #1e261e;
  --ink-muted: #434841;
  --outline: rgba(47, 74, 47, 0.12);
  --outline-strong: rgba(47, 74, 47, 0.22);
  --whatsapp: #25d366;
  --shadow-1: 0 4px 16px -2px rgba(47, 74, 47, 0.06);
  --shadow-2: 0 12px 28px -4px rgba(47, 74, 47, 0.12);
  --shadow-3: 0 16px 36px -6px rgba(30, 38, 30, 0.18);
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 9999px;
  --max: 1240px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  --header-h: 5.25rem;
  --announce-h: 2.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 2rem, var(--max));
  }
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary-deep);
  margin: 0;
}

.display {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.headline {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

.title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 36rem;
}

.muted {
  color: var(--ink-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-1);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-2);
}

.btn-terracotta {
  background: var(--terracotta);
  color: #fff;
}

.btn-terracotta:hover {
  background: var(--terracotta-deep);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  filter: brightness(0.95);
}

.btn-ghost {
  background: var(--white);
  color: var(--primary-deep);
  border: 1.5px solid var(--outline-strong);
}

.btn-ghost:hover {
  background: var(--cream-deep);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1.5px solid rgba(248, 243, 233, 0.35);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-sm {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

/* Icons (inline SVG wrappers) */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.cat-icon .icon,
.trust-icon .icon,
.why-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

/* Announce bar */
.announce {
  background: var(--primary-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.announce span.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
  display: inline-block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 233, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 0.7rem;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  position: relative;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-mark.circle {
  border-radius: 50%;
  background: #2f4a2f;
}

.brand-logo-h {
  height: 2.75rem;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  display: block;
}

.brand-logo-h.on-dark {
  mix-blend-mode: normal;
}

.footer-logo-wrap {
  display: inline-block;
  background: var(--cream);
  border: 1px solid rgba(241, 199, 123, 0.35);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  max-width: 100%;
}

.footer-logo-wrap img {
  height: 3.25rem;
  width: auto;
  max-width: min(260px, 100%);
  object-fit: contain;
  display: block;
}

.story-seal {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-2);
  background: var(--cream);
  border: 2px solid rgba(47, 74, 47, 0.12);
  overflow: hidden;
}

.story-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-text strong .k {
  color: var(--primary);
}

.brand-text strong .u {
  color: var(--terracotta);
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--on-primary);
  background: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  background: var(--white);
  color: var(--primary);
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--outline);
  padding: 1rem 0 1.25rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--outline);
}

.mobile-nav .btn {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 1100px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--announce-h));
  min-height: max(36rem, calc(100svh - var(--header-h) - var(--announce-h)));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(25, 51, 26, 0.92) 0%, rgba(25, 51, 26, 0.72) 42%, rgba(25, 51, 26, 0.35) 70%, rgba(47, 74, 47, 0.25) 100%),
    linear-gradient(to top, rgba(25, 51, 26, 0.75) 0%, transparent 45%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-1.5%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  max-width: 40rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-brand .k {
  color: #cbebc6;
}

.hero-brand .u {
  color: #ffb59c;
}

.hero-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sun);
  margin: 0 0 0.85rem;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero .lead {
  color: rgba(248, 243, 233, 0.88);
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(248, 243, 233, 0.78);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Trust strip */
.trust-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  padding: 1.25rem;
}

.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.35rem;
}

.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-item h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.5rem 1.75rem;
    gap: 1rem;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
  align-items: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-head p {
  margin: 0;
  color: var(--ink-muted);
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--cream-darker);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s;
}

.filter-btn:hover {
  background: var(--cream-deep);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--on-primary);
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

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

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.product-card.is-hidden,
.detail-card.is-hidden,
.is-hidden {
  display: none !important;
}

.product-media {
  position: relative;
  background: var(--cream-deep);
  padding: 1rem;
}

.product-media .frame {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-darker);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  z-index: 1;
  padding: 0.3rem 0.65rem;
  border-radius: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-green {
  background: var(--secondary);
  color: #fff;
}

.badge-terra {
  background: var(--terracotta);
  color: #fff;
}

.badge-soft {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
  left: auto;
  right: 1.35rem;
}

.product-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}

.product-tag.terra {
  color: var(--terracotta);
}

.product-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-body > p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-box,
.pack-box {
  background: rgba(248, 243, 233, 0.7);
  border-radius: var(--radius-lg);
  padding: 0.75rem 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.price-row,
.pack-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.pack-row {
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.pack-row::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

.price-row span:first-child {
  color: var(--ink-muted);
  font-weight: 500;
}

.price-row .price {
  color: var(--primary-deep);
}

.price-row .price.accent {
  color: var(--terracotta);
}

.product-actions {
  margin-top: auto;
  display: grid;
  gap: 0.35rem;
}

.link-more {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 0.45rem;
  transition: color 0.2s;
}

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

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform 0.25s ease;
}

.cat-card:hover {
  transform: translateY(-3px);
}

.cat-card.soon {
  opacity: 0.72;
  background: rgba(255, 255, 255, 0.65);
}

.cat-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--secondary-soft);
  color: var(--primary);
  font-size: 1.5rem;
}

.cat-card.soon .cat-icon {
  background: var(--cream-darker);
  color: var(--ink-muted);
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.pill-live {
  background: var(--secondary-soft);
  color: var(--primary);
}

.pill-soon {
  background: var(--cream-darker);
  color: var(--ink-muted);
}

.cat-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.cat-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* Story */
.story-panel {
  display: grid;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: 1.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-1);
}

@media (min-width: 960px) {
  .story-panel {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 2.5rem;
    align-items: center;
  }
}

.story-logo {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(241, 199, 123, 0.22), transparent 50%),
    linear-gradient(165deg, #fffdf8 0%, var(--cream) 45%, var(--cream-deep) 100%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: grid;
  place-items: center;
}

.story-logo img {
  width: min(100%, 22rem);
}

.story-copy .eyebrow {
  margin-bottom: 0.65rem;
}

.story-copy h2 {
  margin-bottom: 1rem;
}

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

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.step {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
}

.step .num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.step h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step p {
  margin: 0 !important;
  font-size: 0.78rem;
}

/* Why */
.why-grid {
  display: grid;
  gap: 1rem;
}

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

@media (min-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.25s;
}

.why-card:hover {
  box-shadow: var(--shadow-2);
}

.why-icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: var(--radius-lg);
  background: var(--secondary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Gaziantep banner */
.gazi-banner {
  position: relative;
  overflow: hidden;
  background: var(--primary-deep);
  color: var(--cream);
  border-radius: 1.75rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-3);
}

.gazi-banner::before,
.gazi-banner::after {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  pointer-events: none;
}

.gazi-banner::before {
  right: -4rem;
  bottom: -5rem;
  background: rgba(171, 211, 121, 0.12);
  filter: blur(20px);
}

.gazi-banner::after {
  left: -5rem;
  top: -5rem;
  background: rgba(181, 82, 45, 0.18);
  filter: blur(24px);
}

.gazi-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 960px) {
  .gazi-banner {
    padding: 3rem;
  }

  .gazi-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

.gazi-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.gazi-banner h2 {
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.gazi-banner .lead {
  color: rgba(203, 235, 198, 0.9);
  margin-bottom: 1.25rem;
}

.gazi-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .gazi-list {
    grid-template-columns: 1fr 1fr;
  }
}

.gazi-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 500;
}

.gazi-list .mark {
  color: var(--sun);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.gazi-side {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(248, 243, 233, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
}

.gazi-side-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(248, 243, 233, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
}

.pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sun);
  display: inline-block;
  animation: pulse 1.6s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.gazi-side p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(203, 235, 198, 0.9);
}

.gazi-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gazi-stat small {
  display: block;
  font-size: 0.72rem;
  color: rgba(203, 235, 198, 0.75);
}

.gazi-stat strong {
  font-size: 0.95rem;
}

/* How to order */
.how-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.how-card {
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-1);
}

.how-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.how-card:nth-child(2) .how-num {
  background: var(--secondary-soft);
}

.how-card:nth-child(3) .how-num {
  background: var(--sun-soft);
  color: var(--terracotta-deep);
}

.how-card:nth-child(4) .how-num {
  background: #cbebc6;
}

.how-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.how-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* Final CTA */
.final-cta {
  background: var(--cream-deep);
  border: 1px solid var(--outline);
  border-radius: 1.75rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-1);
}

.final-cta h2 {
  margin: 0.75rem auto 0.85rem;
  max-width: 28rem;
}

.final-cta .lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
}

.final-cta .hero-ctas {
  justify-content: center;
  margin-bottom: 0.85rem;
}

.final-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(107, 143, 62, 0.12), transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(241, 199, 123, 0.18), transparent 45%),
    var(--cream);
  border-bottom: 1px solid var(--outline);
}

.page-hero h1 {
  margin: 0.5rem 0 0.75rem;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--primary-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--outline-strong);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(107, 143, 62, 0.2);
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.contact-card,
.panel {
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-1);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-list .ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--cream-deep);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-size: 0.9rem;
}

.contact-list span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Product detail list page extras */
.detail-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-card {
  display: grid;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

@media (min-width: 640px) {
  .detail-card {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.detail-card .media {
  background: var(--cream-deep);
  min-height: 16rem;
}

.detail-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-card .body {
  padding: 1.5rem 1.5rem 1.5rem 0.25rem;
}

@media (max-width: 639px) {
  .detail-card .body {
    padding: 0 1.25rem 1.35rem;
  }
}

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(248, 243, 233, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--outline);
  box-shadow: var(--shadow-3);
}

.mobile-cta .btn {
  flex: 1;
}

@media (min-width: 900px) {
  .mobile-cta {
    display: none;
  }
}

body.has-mobile-cta {
  padding-bottom: 5.5rem;
}

/* Footer */
.site-footer {
  background: var(--primary-deep);
  color: rgba(248, 243, 233, 0.85);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

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

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

.footer-brand .brand-text strong .k {
  color: #cbebc6;
}

.footer-brand .brand-text strong .u {
  color: #ffb59c;
}

.footer-brand .brand-text small {
  color: rgba(248, 243, 233, 0.65);
}

.footer-brand p {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  max-width: 18rem;
  color: rgba(203, 235, 198, 0.8);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(248, 243, 233, 0.78);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-addresses {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(203, 235, 198, 0.8);
}

.footer-addresses strong {
  display: block;
  color: rgba(248, 243, 233, 0.95);
  font-weight: 600;
  margin-top: 0.45rem;
}

.footer-addresses strong:first-child {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.social-follow-label {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sun);
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(248, 243, 233, 0.1);
  border: 1px solid rgba(248, 243, 233, 0.18);
  color: var(--cream);
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: rgba(248, 243, 233, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.shipping-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--sun-soft);
  color: var(--terracotta-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 243, 233, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(248, 243, 233, 0.55);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Utils */
.bg-cream {
  background: var(--cream);
}

.bg-linen {
  background: var(--cream-deep);
}

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

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}
