/* ============================================================
   MOTTO STIL — Özgün Tasarım Sistemi
   "Moda bir duruştur."
   ============================================================ */

:root {
  /* Palet — marka görsellerinden türetildi */
  --cream: #f6efe4;
  --cream-2: #fbf7f0;
  --cream-3: #efe6d6;
  --ink: #2a2520;
  --ink-soft: #5b514791;
  --muted: #8a7d6d;
  --line: rgba(42, 37, 32, 0.12);
  --line-strong: rgba(42, 37, 32, 0.22);

  --terra: #b5533a;   /* kiremit / terrakota */
  --terra-deep: #9e3324;
  --brown: #7c5c43;
  --blue: #8fa9be;    /* puslu mavi */
  --gold: #b08d57;

  --shadow-sm: 0 2px 10px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 14px 40px rgba(42, 37, 32, 0.12);
  --shadow-lg: 0 30px 70px rgba(42, 37, 32, 0.16);

  --radius: 4px;
  --radius-lg: 14px;
  --maxw: 1240px;

  --ff-script: "Parisienne", cursive;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Temel ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.3px;
}

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
img { max-width: 100%; display: block; }

.container-x { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.eyebrow {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--terra);
  margin-bottom: 14px;
  display: inline-block;
}

.section { padding: clamp(56px, 9vw, 120px) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 5vw, 64px); }
.section-head h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); margin: 0 0 14px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

.text-terra { color: var(--terra); }
.script { font-family: var(--ff-script); font-weight: 400; line-height: 1; }

/* ---------- Butonlar ---------- */
.btn-motto {
  --bg: var(--ink);
  --fg: var(--cream-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  padding: 15px 32px;
  font-family: var(--ff-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-motto:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--fg); }
.btn-motto.outline { --bg: transparent; --fg: var(--ink); border-color: var(--line-strong); }
.btn-motto.outline:hover { --bg: var(--ink); --fg: var(--cream-2); border-color: var(--ink); }
.btn-motto.terra { --bg: var(--terra); --fg: #fff; }
.btn-motto.terra:hover { --bg: var(--terra-deep); }
.btn-motto.block { width: 100%; justify-content: center; }
.btn-motto.sm { padding: 11px 22px; font-size: 0.68rem; }

/* ---------- Duyuru bandı ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream-2);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 16px;
  font-weight: 300;
}
.topbar strong { color: var(--gold); font-weight: 500; }

/* ---------- Navbar ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(246, 239, 228, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.nav-wrap.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 74px;
}
.nav-left { display: flex; align-items: center; justify-self: start; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.brand { text-align: center; justify-self: center; }
.brand .word { font-family: var(--ff-script); font-size: 2.1rem; line-height: 0.9; color: var(--ink); }
.brand .sub { display: block; font-family: var(--ff-sans); font-size: 0.52rem; letter-spacing: 5px; text-transform: uppercase; color: var(--muted); margin-top: -2px; }

.nav-actions { display: flex; gap: 8px; align-items: center; justify-self: end; }
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: none; background: transparent; color: var(--ink);
  cursor: pointer; position: relative;
  transition: background 0.25s var(--ease);
}
.icon-btn:hover { background: rgba(42, 37, 32, 0.06); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 6px; right: 5px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--terra); color: #fff;
  font-family: var(--ff-sans); font-size: 0.6rem; font-weight: 600;
  border-radius: 50px; display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.hamburger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 90px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -0.5px;
}
.hero-copy h1 em { font-family: var(--ff-script); font-style: normal; color: var(--terra); display: block; font-size: 1.08em; }
.hero-copy p { font-size: 1.08rem; color: var(--muted); max-width: 440px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4 / 4.4;
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .tag {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--cream-2); border: 1px solid var(--line);
  padding: 16px 22px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 210px;
}
.hero-visual .tag .k { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--terra); }
.hero-visual .tag .v { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.hero-star { position: absolute; top: -14px; right: -10px; font-size: 2rem; color: var(--gold); }

/* ---------- Değerler şeridi ---------- */
.values { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value {
  padding: 40px 26px; text-align: center;
  border-left: 1px solid var(--line);
}
.value:first-child { border-left: none; }
.value svg { width: 34px; height: 34px; color: var(--terra); margin-bottom: 14px; stroke-width: 1.2; }
.value h3 { font-size: 1.32rem; margin: 0 0 6px; }
.value p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ---------- Kategori kartları ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3 / 4; display: flex; align-items: flex-end;
  color: #fff; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card .bg { position: absolute; inset: 0; z-index: 0; transition: transform 0.7s var(--ease); }
.cat-card:hover .bg { transform: scale(1.06); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,12,0.62) 0%, rgba(20,16,12,0.05) 55%); z-index: 1; }
.cat-card .cat-body { position: relative; z-index: 2; padding: 26px; width: 100%; }
.cat-card .cat-body span { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; }
.cat-card .cat-body h3 { font-size: 1.9rem; margin: 4px 0 0; color: #fff; }
.cat-card .cat-body .arrow { margin-top: 10px; font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center; }

/* ---------- Ürün kartı ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px); }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card-product { position: relative; }
.card-product .media {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.4s var(--ease);
}
.card-product:hover .media { box-shadow: var(--shadow-md); }
.card-product .media .swatch-art { position: absolute; inset: 0; z-index: 0; }
.card-product .media .mono {
  position: relative; z-index: 1;
  font-family: var(--ff-script); font-size: clamp(3rem, 6vw, 4.6rem);
  color: rgba(255,255,255,0.32); line-height: 1;
  transition: transform 0.5s var(--ease);
}
.card-product:hover .media .mono { transform: scale(1.08); }
.card-product .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

.badge-soft {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--cream-2); color: var(--ink);
  font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  padding: 5px 11px; border-radius: 50px;
}
.badge-soft.terra { background: var(--terra); color: #fff; }

.wish {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(251,247,240,0.9); color: var(--ink);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; transform: translateY(-6px); transition: all 0.3s var(--ease);
}
.card-product:hover .wish { opacity: 1; transform: translateY(0); }
.wish svg { width: 17px; height: 17px; }
.wish.on svg { fill: var(--terra); color: var(--terra); }

.add-bar {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  opacity: 0; transform: translateY(12px); transition: all 0.35s var(--ease);
}
.card-product:hover .add-bar { opacity: 1; transform: translateY(0); }
.btn-add {
  width: 100%; border: none; background: rgba(251,247,240,0.96);
  color: var(--ink); font-family: var(--ff-sans); font-size: 0.7rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  padding: 13px; border-radius: 50px; cursor: pointer; backdrop-filter: blur(6px);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-add:hover { background: var(--ink); color: var(--cream-2); }

.card-product .info { text-align: center; }
.card-product .info .cat { font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.card-product .info .name { font-family: var(--ff-serif); font-size: 1.28rem; margin: 3px 0 6px; }
.card-product .info .price { font-family: var(--ff-sans); font-size: 0.95rem; font-weight: 400; }
.card-product .info .price .old { color: var(--muted); text-decoration: line-through; margin-right: 8px; font-size: 0.85rem; }
.card-product .info .colors { display: flex; gap: 6px; justify-content: center; margin-top: 9px; }
.card-product .info .colors i { width: 13px; height: 13px; border-radius: 50%; display: inline-block; border: 1px solid var(--line-strong); }

/* Ürün görseli için renk sanatı (fotoğraf gelene kadar) */
.swatch-art { background: linear-gradient(150deg, var(--c1), var(--c2)); }
.swatch-art::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 45%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 10px, transparent 10px 22px);
}

/* ---------- Filtre çipleri ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.chip {
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink);
  padding: 9px 20px; border-radius: 50px; cursor: pointer;
  font-family: var(--ff-sans); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--cream-2); border-color: var(--ink); }

/* ---------- Editoryal banner ---------- */
.editorial { position: relative; overflow: hidden; }
.editorial .bg { position: absolute; inset: 0; }
.editorial .bg img { width: 100%; height: 100%; object-fit: cover; }
.editorial::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,16,12,0.72), rgba(20,16,12,0.28)); }
.editorial-inner { position: relative; z-index: 2; padding: clamp(70px, 12vw, 150px) 0; color: var(--cream-2); }
.editorial-inner .box { max-width: 560px; }
.editorial-inner .eyebrow { color: var(--gold); }
.editorial-inner h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--cream-2); margin: 0 0 20px; }
.editorial-inner p { color: rgba(251,247,240,0.82); font-size: 1.05rem; margin-bottom: 30px; }

/* ---------- Hakkımızda teaser ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-visual .badge-round {
  position: absolute; right: -20px; top: -20px;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--terra); color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-md);
}
.about-visual .badge-round .n { font-family: var(--ff-serif); font-size: 2.2rem; line-height: 1; }
.about-visual .badge-round .t { font-size: 0.56rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.about-copy p { color: #4d4439; margin-bottom: 18px; }
.signature { margin-top: 26px; }
.signature .sig-name { font-family: var(--ff-script); font-size: 2.4rem; color: var(--terra); line-height: 0.9; }
.signature .sig-role { font-size: 0.66rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }

/* ---------- Yardım / İletişim kartları ---------- */
.help { background: var(--cream-2); border-top: 1px solid var(--line); }
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; margin: 0 auto; }
.help-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.help-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.help-card .avatar {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(150deg, var(--terra), var(--brown));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 1.9rem; color: #fff;
}
.help-card .avatar svg { width: 30px; height: 30px; color: #fff; stroke-width: 1.5; }
.help-card h3 { font-size: 1.6rem; margin: 0 0 2px; }
.help-card .role { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.help-card .phone { font-family: var(--ff-serif); font-size: 1.35rem; color: var(--ink); margin-bottom: 18px; }
.help-card .btns { display: flex; gap: 10px; justify-content: center; }
.help-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 26px; }

/* ---------- Bülten ---------- */
.newsletter { background: var(--ink); color: var(--cream-2); }
.newsletter h2 { color: var(--cream-2); font-size: clamp(1.9rem, 4.5vw, 3rem); }
.newsletter p { color: rgba(251,247,240,0.7); }
.news-form { display: flex; gap: 10px; max-width: 480px; margin: 26px auto 0; }
.news-form input {
  flex: 1; background: transparent; border: 1px solid rgba(251,247,240,0.28);
  color: var(--cream-2); padding: 14px 20px; border-radius: 50px; font-family: var(--ff-sans);
  font-size: 0.9rem; outline: none;
}
.news-form input::placeholder { color: rgba(251,247,240,0.45); }
.news-form input:focus { border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: #211d19; color: rgba(251,247,240,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer .word { font-family: var(--ff-script); font-size: 2.6rem; color: var(--cream-2); line-height: 0.9; }
.footer .sub { font-size: 0.56rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); }
.footer p { font-size: 0.9rem; margin: 16px 0 0; max-width: 280px; }
.footer h4 { color: var(--cream-2); font-family: var(--ff-sans); font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 20px; font-weight: 500; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 11px; font-size: 0.9rem; }
.footer ul li a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(251,247,240,0.18); display: flex; align-items: center; justify-content: center; }
.socials a:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(251,247,240,0.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; }

/* ---------- Sepet (offcanvas) ---------- */
.cart-panel {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--cream); z-index: 1060; transform: translateX(100%);
  transition: transform 0.45s var(--ease); display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-panel.open { transform: translateX(0); }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,16,12,0.5); z-index: 1055;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.5rem; margin: 0; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { width: 46px; height: 46px; margin-bottom: 16px; opacity: 0.5; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item .thumb { width: 66px; height: 84px; border-radius: 8px; flex-shrink: 0; position: relative; overflow: hidden; }
.cart-item .ci-body { flex: 1; min-width: 0; }
.cart-item .ci-name { font-family: var(--ff-serif); font-size: 1.1rem; }
.cart-item .ci-meta { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.5px; }
.cart-item .ci-price { font-size: 0.9rem; margin-top: 4px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 50px; margin-top: 8px; }
.qty button { width: 28px; height: 28px; border: none; background: transparent; cursor: pointer; font-size: 1rem; color: var(--ink); }
.qty span { min-width: 26px; text-align: center; font-size: 0.85rem; }
.ci-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.72rem; text-decoration: underline; margin-top: 6px; padding: 0; }
.cart-foot { border-top: 1px solid var(--line); padding: 22px 24px; background: var(--cream-2); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.cart-total .lbl { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.cart-total .amt { font-family: var(--ff-serif); font-size: 1.8rem; }
.cart-foot .hint { font-size: 0.76rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- Mobil alt menü ---------- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040;
  background: rgba(246,239,228,0.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}
.mobile-bar .mb-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px; font-size: 0.58rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); position: relative; }
.mobile-bar a.active { color: var(--terra); }
.mobile-bar svg { width: 22px; height: 22px; stroke-width: 1.4; }
.mobile-bar .mb-count { position: absolute; top: 2px; right: calc(50% - 20px); min-width: 15px; height: 15px; padding: 0 3px; background: var(--terra); color: #fff; font-size: 0.55rem; border-radius: 50px; display: none; align-items: center; justify-content: center; }
.mobile-bar .mb-count.show { display: flex; }

/* ---------- Toast ---------- */
.toast-motto {
  position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 120%);
  background: var(--ink); color: var(--cream-2); padding: 14px 26px; border-radius: 50px;
  font-size: 0.82rem; letter-spacing: 1px; z-index: 1080; box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease); display: flex; align-items: center; gap: 10px;
}
.toast-motto.show { transform: translate(-50%, 0); }
.toast-motto svg { width: 18px; height: 18px; color: var(--gold); }

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-hero { text-align: center; padding: clamp(50px, 8vw, 90px) 0 clamp(30px, 5vw, 50px); }
.page-hero .eyebrow { color: var(--terra); }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); margin: 6px 0 12px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.breadcrumb-x { text-align: center; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.breadcrumb-x a:hover { color: var(--terra); }

/* Reveal animasyonu
   Gizli başlangıç durumu YALNIZCA JS aktifken (.js) uygulanır;
   böylece JS kapalıysa veya observer çalışmazsa içerik hep görünür kalır. */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.in, .js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .reveal { transition: none; }
}

/* ============================================================
   RESPONSIVE — Mobil öncelikli iyileştirmeler
   ============================================================ */
@media (max-width: 991px) {
  .nav { grid-template-columns: auto 1fr auto; height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: inline-flex; justify-self: start; }
  .brand .word { font-size: 1.8rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(3) { border-left: none; }
  .value:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  body { padding-bottom: 66px; } /* mobil alt menü için */
  .mobile-bar { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin: 0 auto; width: 100%; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual .tag { left: 12px; bottom: 12px; }
  .cat-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat-card { aspect-ratio: 16 / 11; }
  .about-split { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .about-visual .badge-round { right: 8px; top: -14px; width: 92px; height: 92px; }
  .help-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .news-form { flex-direction: column; }
  .news-form .btn-motto { justify-content: center; }
  .editorial-inner { padding: 60px 0; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-product .info .name { font-size: 1.1rem; }
  .filters { gap: 7px; }
  .chip { padding: 8px 15px; font-size: 0.66rem; }
}

/* Mobil menü paneli */
.mmenu {
  position: fixed; top: 0; left: 0; height: 100%; width: min(340px, 88%);
  background: var(--cream-2); z-index: 1060; transform: translateX(-100%);
  transition: transform 0.42s var(--ease); padding: 26px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.mmenu.open { transform: translateX(0); }
.mmenu .word { font-family: var(--ff-script); font-size: 2.4rem; margin-bottom: 30px; }
.mmenu a.mm-link { font-family: var(--ff-serif); font-size: 1.7rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mmenu a.mm-link:hover { color: var(--terra); padding-left: 8px; }
.mmenu .mm-foot { margin-top: auto; font-size: 0.8rem; color: var(--muted); }
