/* avokadocuum — görsel mockup tasarım sistemi */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --cream: #f6f3eb;
  --cream-deep: #efe9dc;
  --white: #ffffff;
  --green: #2d4a22;
  --green-mid: #3a5c2c;
  --green-soft: #e8efe4;
  --ink: #1f2a1a;
  --muted: #6b7366;
  --line: #e2ddd2;
  --sale: #c0392b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 28px rgba(45, 74, 34, 0.08);
  --shadow-soft: 0 4px 16px rgba(45, 74, 34, 0.06);
  --max: 1180px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

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

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 235, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding-block: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(168px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, #f0e4a8 0 28%, transparent 29%),
    linear-gradient(145deg, #6b9a45, var(--green));
  flex-shrink: 0;
  position: relative;
}

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

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.nav-main a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}

.nav-main a:hover,
.nav-main a.is-active {
  color: var(--green);
}

.nav-main a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green);
  position: relative;
  transition: background 0.2s, transform 0.15s;
}

.icon-btn:hover {
  background: var(--green-soft);
}

.icon-btn:active {
  transform: scale(0.94);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  display: block;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

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

.btn-primary:hover {
  background: var(--green-mid);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.75rem;
}

/* ——— Hero ——— */
.hero-home {
  padding: 0;
}

.hero-panel {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  gap: 0;
  align-items: stretch;
  background-color: #f6f3eb;
  background-image: var(--hero-bg, none);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  border-radius: 0;
  padding: 56px clamp(1.25rem, 5vw, 4.5rem) 44px;
  overflow: hidden;
  position: relative;
  min-height: min(72dvh, 620px);
  box-shadow: none;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(246, 243, 235, 0.72) 0%,
    rgba(246, 243, 235, 0.48) 34%,
    rgba(246, 243, 235, 0.12) 58%,
    transparent 74%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 460px;
  width: min(100%, 460px);
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.2vw, 4.35rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 36ch;
  margin-bottom: 22px;
}

.hero-mini {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  margin-top: 30px;
  width: max-content;
  max-width: 100%;
}

.hero-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.hero-mini-item .mi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.hero-mini-item .mi svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-mini-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
  white-space: nowrap;
}

.hero-mini-item span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.3;
  white-space: nowrap;
}

.hero-visual {
  display: none;
}

/* ——— Section heads ——— */
.section {
  padding: 56px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head .leaf {
  display: none;
}

.section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  line-height: 1.2;
}

.section-head h2 .leaf-inline {
  flex-shrink: 0;
  margin-left: 0;
  vertical-align: middle;
}

.section-head h2 .leaf-inline svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
}

.section-head p {
  color: var(--muted);
  max-width: 42ch;
  margin-inline: auto;
  font-size: 0.98rem;
}

.section-head.left {
  text-align: left;
  margin-bottom: 22px;
}

.section-head.left h2 {
  text-transform: none;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
}

.section-head.left p {
  margin-inline: 0;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head-row .section-head {
  margin-bottom: 0;
  text-align: left;
}

.section-head-row .section-head h2 {
  text-transform: none;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
}

.section-head-row .section-head p {
  margin-inline: 0;
}

.link-more {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.link-more:hover {
  border-bottom-color: var(--green);
}

.bestsellers-block {
  margin-bottom: 48px;
}

.bestsellers-block .product-grid,
.cat-block .product-grid {
  margin-bottom: 0;
}

.cat-block + .cat-block {
  margin-top: 40px;
}

/* ——— Category cards (Doğallığın...) ——— */
.cat-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 10px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.cat-card .thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #faf8f3;
}

.cat-card .thumb img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.cat-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 4px;
}

.cat-card p {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 10px;
  flex: 1;
  line-height: 1.35;
}

.cat-card .btn-ghost {
  border: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
}

.cat-card .btn-ghost:hover {
  color: var(--green);
  border: none;
}

.trust-item .ti svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ——— Product cards (ürünler mockup) ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 24px;
  width: 100%;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 10px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

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

.product-card .sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sale);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 6px;
  z-index: 2;
}

.product-card .fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--muted);
  z-index: 2;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}

.product-card .fav:hover,
.product-card .fav.is-on {
  color: var(--sale);
  background: #fdecec;
}

.product-card .thumb {
  aspect-ratio: 3 / 4;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #faf8f3;
  width: 100%;
  border-radius: 10px;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: cover;
  transition: transform 0.35s;
}

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

.product-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green);
  margin-bottom: 4px;
  min-height: auto;
  padding: 0;
  line-height: 1.3;
}

.product-card h3 a:hover {
  color: var(--green-mid);
}

.product-card .product-meta,
.product-card .desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-box {
  margin: 0 0 12px;
}

.price {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
}

.price-old {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 11px 12px;
  background: var(--green);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}

.btn-cart:hover {
  background: var(--green-mid);
}

.btn-cart svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.cat-block {
  margin-bottom: 48px;
}

.cat-block:last-child {
  margin-bottom: 0;
}

/* ——— Trust bar ——— */
.trust-bar {
  background: transparent;
  padding: 8px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 26px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-item .ti {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ——— Promo band ——— */
.promo-band {
  padding: 28px 0 40px;
  width: 100%;
  background: transparent;
}

.promo-inner {
  position: relative;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  min-height: min(48dvh, 420px);
  isolation: isolate;
  box-shadow: var(--shadow-soft);
}

.promo-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
}

.promo-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center right;
  filter: none;
}

.promo-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(246, 243, 235, 0.92) 0%,
    rgba(246, 243, 235, 0.78) 32%,
    rgba(246, 243, 235, 0.28) 58%,
    transparent 78%
  );
  pointer-events: none;
}

.promo-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: min(48dvh, 420px);
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 34rem;
}

.promo-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  color: var(--green);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  max-width: 16ch;
}

.promo-copy p {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 36ch;
}

/* ——— Products page ——— */
.page-hero-shop {
  text-align: center;
  padding: 40px 0 12px;
}

.page-hero-shop h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.page-hero-shop h1 .leaf-inline {
  font-size: 1.35rem;
}

.page-hero-shop h1 .leaf-inline i {
  font-size: 1.35rem;
}

.page-hero-shop p {
  color: var(--muted);
  margin-bottom: 18px;
}

.page-hero-shop .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green);
  margin-bottom: 22px;
}

.page-hero-shop .divider::before,
.page-hero-shop .divider::after {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--line);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-pill:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-pill.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.shop-main {
  padding: 0 0 48px;
}

.shop-main .product-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--green);
  color: #c9d6c2;
  padding: 48px 0 20px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

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

.footer-brand .brand--footer {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 8px 10px;
  line-height: 0;
}

.footer-brand .brand-logo {
  height: 72px;
  max-width: 180px;
  border-radius: 10px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  max-width: 28ch;
  opacity: 0.85;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}

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

.footer-bottom {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ——— Inner shared ——— */
.page-wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 24px 0 48px;
}

.page-wrap.account-layout,
.page-wrap.cart-layout,
.page-wrap.checkout-layout,
.page-wrap.page-narrow {
  width: min(100% - 72px, 1080px);
  max-width: 1080px;
}

main:has(.account-layout) .page-hero,
main:has(.cart-layout) .page-hero,
main:has(.checkout-layout) .page-hero,
main:has(.page-narrow) .page-hero {
  width: min(100% - 72px, 1080px);
  max-width: 1080px;
  margin-inline: auto;
}

.page-hero {
  text-align: center;
  padding: 32px 0 8px;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green);
  font-weight: 700;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--green);
  margin: 10px auto 0;
}

.page-hero p {
  color: var(--muted);
  margin-top: 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.breadcrumb a:hover {
  color: var(--green);
}

/* Forms / account / cart */
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}

.field input,
.field select,
.field textarea,
.select,
.coupon input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--green-soft);
  border-color: var(--green);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

.field.full {
  grid-column: 1 / -1;
}

.shop-layout,
.cart-layout,
.checkout-layout,
.account-layout {
  display: grid;
  gap: 24px;
  align-items: start;
  width: 100%;
  padding: 8px 0 20px;
}

.shop-layout {
  grid-template-columns: 220px 1fr;
}

.cart-layout,
.checkout-layout {
  grid-template-columns: 1fr 320px;
}

.account-layout {
  grid-template-columns: 220px 1fr;
}

.filters,
.cart-table,
.cart-summary,
.form-card,
.account-panel,
.account-nav,
.auth-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.filters,
.cart-summary,
.form-card,
.account-panel,
.auth-wrap {
  padding: 20px;
}

.account-nav {
  padding: 8px 0;
  height: fit-content;
}

.account-nav a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.account-nav a:last-child {
  border-bottom: none;
}

.account-nav a:hover,
.account-nav a.is-active {
  background: var(--green-soft);
  color: var(--green);
  box-shadow: inset 3px 0 0 var(--green);
}

.filters h2,
.cart-summary h2,
.form-card h2,
.account-panel h2,
.auth-wrap h1 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--green);
  text-align: left;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.auth-wrap {
  max-width: 420px;
  margin: 28px auto 40px;
}

.auth-wrap > p,
.auth-links {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-links {
  margin-top: 14px;
}

.auth-links a {
  color: var(--green);
  font-weight: 700;
}

.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-row img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.cart-row h3 {
  font-size: 0.9rem;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cart-row .unit {
  font-size: 0.8rem;
  color: var(--muted);
}

.cart-row .remove {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0c4c4;
  border-radius: 8px;
  background: #fff;
  color: var(--sale);
}

.cart-row .remove svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-total {
  font-weight: 700;
  color: var(--green);
  min-width: 5rem;
  text-align: right;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.summary-line.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.coupon {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.qty {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.qty button {
  width: 36px;
  height: 36px;
  color: var(--green);
}

.qty input {
  width: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

/* PDP */
.pdp {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  gap: 36px;
  padding: 12px 0 28px;
  align-items: start;
}

.pdp-gallery {
  max-width: 400px;
}

.pdp-main {
  background: var(--white);
  border-radius: var(--radius);
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: crosshair;
  box-shadow: var(--shadow-soft);
}

.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.08s linear;
  pointer-events: none;
}

.pdp-main.is-zooming img {
  transform: scale(2.2);
}

.zoom-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(45, 74, 34, 0.75);
  color: #fff;
  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
}

.pdp-main.is-zooming .zoom-hint,
.pdp-main:hover .zoom-hint {
  opacity: 0;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.pdp-thumbs button {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--white);
}

.pdp-thumbs button.is-active {
  border-color: var(--green);
}

.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info .cat-label {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pdp-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pdp-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.pdp-rating .stars {
  color: #c4922a;
}

.pdp-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.pdp-price .price {
  font-size: 1.7rem;
}

.pdp-unit {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.pdp-desc {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 46ch;
}

.pdp-options {
  margin-bottom: 16px;
}

.opt-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.opt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.chip:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green);
}

.pdp-buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.pdp-meta-list {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}

.stock-ok {
  color: var(--green);
  font-weight: 700;
}

.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pdp-trust-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--green);
  margin-bottom: 2px;
}

.pdp-trust-item span {
  font-size: 0.75rem;
  color: var(--muted);
}

.tabs {
  margin: 12px 0 40px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.tab-nav button {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-nav button.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-panel {
  padding: 22px 0;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.detail-list {
  list-style: disc;
  padding-left: 1.2rem;
  text-align: left;
  max-width: 520px;
  margin: 12px auto 0;
}

.spec-table {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
}

.spec-table th,
.spec-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  color: var(--green);
  width: 36%;
}

.review-list {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.review-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.order-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 16px;
  align-items: start;
}

.order-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.order-list {
  display: grid;
  gap: 8px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.order-item h3 {
  font-size: 0.9rem;
  color: var(--green);
}

.order-item p {
  font-size: 0.78rem;
  color: var(--muted);
}

.status {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
  height: fit-content;
  text-transform: uppercase;
}

.status.shipped {
  background: #e3f2fd;
  color: #1565c0;
}

.status.delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.pay-options {
  display: grid;
  gap: 8px;
}

.pay-option {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--white);
}

.pay-option:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.step.is-done,
.step.is-current {
  color: var(--green);
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.step.is-current .step-num,
.step.is-done .step-num {
  background: var(--green);
  color: #fff;
}

.split-2,
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.story-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-deep);
}

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

.story-copy h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 700;
}

.story-copy p {
  color: var(--muted);
  margin-bottom: 10px;
}

.story-copy blockquote {
  border-left: 3px solid var(--green);
  padding-left: 12px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
  margin: 14px 0;
}

.contact-block {
  margin-bottom: 16px;
}

.contact-block h3 {
  font-family: var(--font-serif);
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.contact-block p,
.contact-block a {
  color: var(--muted);
}

.faq-list {
  max-width: 720px;
  margin: 20px auto 40px;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-item summary {
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--green);
}

.faq-item p {
  padding: 0 16px 14px;
  color: var(--muted);
}

.prose {
  max-width: 720px;
  margin: 20px auto 40px;
  color: var(--muted);
}

.prose h2 {
  font-family: var(--font-serif);
  color: var(--green);
  margin: 16px 0 8px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 12px 0 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.blog-card figure {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-deep);
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-card time,
.blog-card h3 {
  display: block;
  padding: 0 14px;
}

.blog-card time {
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 12px;
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  padding-bottom: 8px;
  margin-top: 4px;
}

.blog-card-excerpt {
  padding: 0 14px 16px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Blog feature + article hero (wide short rounded card) */
.blog-feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  margin-bottom: 12px;
}

.blog-feature-media {
  min-height: 240px;
  aspect-ratio: 21 / 9;
  max-height: 280px;
}

.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.75rem;
}

.blog-feature-copy time {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.blog-feature-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.blog-feature-copy p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.article-hero {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 1.75rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  background: var(--cream-deep);
  aspect-ratio: 21 / 9;
  max-height: 320px;
}

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

.related-posts {
  margin-top: 2.75rem;
  padding-top: 0.5rem;
}

.related-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: grid;
  grid-template-rows: 140px auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.2s;
}

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

.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.related-card div {
  padding: 12px 14px 16px;
}

.related-card time {
  font-size: 0.72rem;
  color: var(--muted);
}

.related-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--green);
  margin-top: 4px;
  line-height: 1.25;
}

/* Contact extras */
.contact-intro {
  max-width: 52rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-layout {
  margin-bottom: 2.5rem;
}

.contact-info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.35rem;
}

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-lead {
  color: var(--muted);
  font-size: 0.92rem;
  margin: -0.35rem 0 1rem;
}

.map-section {
  margin-top: 1rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.map-section .section-head {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.map-card {
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  background: var(--cream-deep);
  aspect-ratio: auto;
  min-height: 360px;
  max-height: none;
  height: min(52dvh, 460px);
  width: 100%;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* About extras */
.about-values {
  margin: 3rem 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.value-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.value-card h3 {
  font-family: var(--font-serif);
  color: var(--green);
  font-size: 1.25rem;
  padding: 12px 14px 4px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0 14px 16px;
}

.story-reverse {
  margin: 2.5rem 0 3rem;
}

.story-reverse .story-visual {
  order: 2;
}

.about-cta {
  margin-top: 1rem;
  padding-bottom: 8px;
}

.success-box {
  max-width: 480px;
  margin: 40px auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow-soft);
}

.success-box .icon-ok {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.success-box h1 {
  font-family: var(--font-serif);
  color: var(--green);
  margin-bottom: 8px;
  font-weight: 700;
}

.check-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  margin: 8px 0 14px;
}

.mt-1 {
  margin-top: 8px;
}

.pdp-sale {
  position: static;
  display: inline-block;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(31, 42, 26, 0.4);
}

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

.mobile-panel {
  width: min(86vw, 320px);
  height: 100%;
  background: var(--white);
  padding: 16px;
  overflow-y: auto;
}

.mobile-panel .brand {
  display: inline-flex;
  margin: 8px 0 16px;
}

.mobile-panel .brand-logo {
  height: 56px;
  max-width: 160px;
}

.mobile-panel nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--green);
}

.mobile-close {
  float: right;
  font-size: 1.5rem;
  color: var(--muted);
}

/* Click effects */
.btn,
.btn-cart,
.icon-btn,
.filter-pill,
.fav,
.chip,
.qty button,
.tab-nav button,
.cart-row .remove {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.55s ease-out forwards;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.filter-pill .ripple,
.btn-ghost .ripple,
.chip .ripple,
.fav .ripple {
  background: rgba(45, 74, 34, 0.2);
}

@keyframes ripple-anim {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* Hide old top-links / cat-nav if present */
.top-links,
.cat-nav,
.trust-strip {
  display: none !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .cat-cards,
  .product-grid,
  .shop-main .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
  }

  .nav-main {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo {
    height: 48px;
    max-width: min(140px, 46vw);
  }

  .hero-panel,
  .promo-inner,
  .pdp,
  .split-2,
  .story,
  .shop-layout,
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .order-detail-grid,
  .trust-bar .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cat-cards,
  .product-grid,
  .shop-main .product-grid,
  .blog-grid,
  .related-rail,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-feature {
    grid-template-columns: 1fr;
  }

  .blog-feature-media {
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .story-reverse .story-visual {
    order: 0;
  }

  .article-hero {
    aspect-ratio: 16 / 9;
    max-height: 260px;
  }

  .map-card {
    height: 300px;
  }

  .card-pay-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 36px 1.25rem 28px;
    min-height: 420px;
    grid-template-columns: 1fr;
    /* Aynı --hero-bg; yalnızca kadraj ortalanır */
    background-position: center center;
    background-size: cover;
  }

  .hero-panel::before {
    background: linear-gradient(
      180deg,
      rgba(246, 243, 235, 0.68) 0%,
      rgba(246, 243, 235, 0.38) 52%,
      rgba(246, 243, 235, 0.14) 100%
    );
  }

  .hero-copy {
    max-width: none;
    width: 100%;
  }

  .hero-mini {
    flex-wrap: wrap;
    width: 100%;
    gap: 14px 20px;
  }

  .hero-mini-item span {
    white-space: normal;
  }

  .promo-inner {
    grid-template-columns: 1fr;
    min-height: 360px;
  }

  .promo-visual {
    min-height: 0;
    order: unset;
  }

  .promo-copy {
    min-height: 360px;
  }

  .promo-inner::after {
    background: linear-gradient(
      180deg,
      rgba(246, 243, 235, 0.9) 0%,
      rgba(246, 243, 235, 0.72) 55%,
      rgba(246, 243, 235, 0.35) 100%
    );
  }

  .pdp-gallery,
  .pdp-main {
    max-width: 320px;
    margin-inline: auto;
  }

  .pdp-trust {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .pdp-main {
    cursor: default;
  }

  .pdp-main.is-zooming img {
    transform: none;
  }

  .zoom-hint {
    display: none;
  }
}

@media (max-width: 560px) {
  .cat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cat-card {
    padding: 8px 8px 10px;
  }

  .cat-card .thumb {
    aspect-ratio: 1;
    margin-bottom: 8px;
    border-radius: 8px;
  }

  .cat-card h3 {
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
  }

  .cat-card p {
    display: none;
  }

  .cat-card .btn-ghost {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .product-grid,
  .shop-main .product-grid {
    gap: 18px;
  }

  .hero-mini {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-mini-item strong,
  .hero-mini-item span {
    white-space: normal;
  }

  .cart-row {
    grid-template-columns: 72px 1fr auto;
    padding: 14px 14px;
  }

  .cart-row .line-total {
    grid-column: 2 / 4;
    text-align: left;
  }

  .related-rail,
  .value-grid {
    grid-template-columns: 1fr;
  }
}


.leaf-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -2px;
  margin-left: 2px;
  color: var(--green);
  font-size: 0.95em;
  line-height: 1;
}

.leaf-inline i {
  font-size: 0.95em;
}

.section-head h2 .leaf-inline {
  flex-shrink: 0;
  margin-left: 0;
}

.section-head h2 .leaf-inline svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
}

/* Checkout / card payment */
.checkout-layout {
  align-items: stretch;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.checkout-summary .cart-summary {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.checkout-submit {
  margin-top: auto;
  width: 100%;
}

.pay-block + .checkout-submit,
.cart-summary > .checkout-submit {
  margin-top: 18px;
}

.pay-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pay-block h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.pay-options {
  display: grid;
  gap: 8px;
}

.pay-option {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.pay-option i {
  color: var(--green);
  width: 1.1rem;
  text-align: center;
}

.pay-option:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.check-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 4px 0 8px;
}

.card-pay-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.card-preview {
  background: linear-gradient(135deg, #2d4a22 0%, #3f6b32 55%, #1f3318 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  font-family: var(--font-sans);
}

.card-preview .chip {
  width: 42px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(145deg, #e8d48b, #c2a44a);
}

.card-preview .number {
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 1.2rem 0 0.75rem;
}

.card-preview .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.92;
}

.card-preview .meta strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
  font-weight: 700;
  text-transform: none;
}

.card-brands {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
}

.card-secure i {
  color: var(--green);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.product-card[hidden] {
  display: none !important;
}

/* Faz 3 — vitrin ekleri */
a.filter-pill {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(45,74,34,.06);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #2d4a22;
}
.faq-answer { margin-top: 10px; color: #555; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 12px 0 40px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45,74,34,.06);
  display: flex;
  flex-direction: column;
}
.blog-thumb {
  display: block;
  background: #f3f1ea;
}
.blog-thumb img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  height: auto;
}
.blog-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-body time {
  display: block;
  font-size: 0.78rem;
  color: #6b6b6b;
  font-weight: 600;
  padding: 0;
}
.blog-body h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: #2d4a22;
  margin: 0;
  line-height: 1.25;
}
.blog-body h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-body h2 a:hover { text-decoration: underline; }
.blog-card-excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.45;
  padding: 0;
}
.blog-body .link-more {
  margin-top: auto;
  font-weight: 700;
  color: #2d4a22;
}

/* Faz 4 — sipariş / hesap */
.order-list { display: grid; gap: 8px; }
.order-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8f6f0;
  color: #2d4a22;
  font-weight: 600;
  align-items: center;
}
.order-row:hover { background: #eef5e8; }
.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .order-row { grid-template-columns: 1fr 1fr; }
  .order-detail-grid { grid-template-columns: 1fr; }
}

/* —— Standart e-ticaret ekleri —— */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); color: #fff; }
.whatsapp-float svg { width: 28px; height: 28px; }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  max-width: 720px;
  margin: 0 auto;
  background: #243c1c;
  color: #f6f3eb;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; font-size: .88rem; line-height: 1.45; }
.cookie-banner a { color: #c8e6b8; text-decoration: underline; }

.ship-progress { margin-bottom: 14px; }
.ship-progress-text { font-size: .85rem; color: #4a5c3a; margin: 0 0 8px; }
.ship-progress-bar {
  height: 8px;
  background: #ebe6da;
  border-radius: 999px;
  overflow: hidden;
}
.ship-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #3d6b2f, #6aa84f);
  border-radius: 999px;
  transition: width .35s ease;
}

.stock-out-msg { color: #b42318; font-weight: 600; margin: 0 0 10px; }
.stock-out { color: #b42318; font-weight: 700; }
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 14px 0 8px;
  font-size: .85rem;
  color: #6b6b6b;
}
.share-row a { color: #2d4a22; font-weight: 700; text-decoration: none; }
.share-row a:hover { text-decoration: underline; }

.low-stock-badge { background: #fff4df; color: #8a5a00; }
.stock-badge { background: #fdecec; color: #b42318; }

.review-form {
  border-top: 1px solid #e6e0d4;
  padding-top: 16px;
}

@media print {
  .site-header, .site-footer, .cookie-banner, .whatsapp-float,
  .mobile-nav, .no-print, .account-nav, .flash-stack { display: none !important; }
  .page-wrap, .account-layout { display: block !important; }
  body { background: #fff; }
}

/* UI inputs — arama / bülten */
.ui-input {
  width: 100%;
  border: 1px solid var(--line, #e6e0d4);
  border-radius: var(--radius-sm, 10px);
  padding: 11px 14px;
  background: #fff;
  color: #2d4a22;
  font: inherit;
  font-size: 0.92rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ui-input:focus {
  outline: 2px solid var(--green-soft, #d7e8cf);
  border-color: var(--green, #2d4a22);
}
.ui-input::placeholder { color: #9a9a9a; }

.shop-search {
  max-width: 440px;
  margin: 0 auto 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.shop-search .ui-input { flex: 1; }

.footer-newsletter {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-newsletter .ui-input {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #f6f3eb;
}
.footer-newsletter .ui-input::placeholder { color: rgba(246,243,235,.65); }
.footer-newsletter .ui-input:focus {
  outline: 2px solid rgba(200,230,184,.45);
  border-color: rgba(200,230,184,.7);
  background: rgba(255,255,255,.16);
}

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