/* ============================================================
   ROSEVIA — Premium Çiçek Atölyesi
   Tasarım sistemi: fildişi zemin, antrasit, altın vurgu
   ============================================================ */
:root {
  --ivory: #faf7f2;
  --cream: #f3ede3;
  --ink: #191714;
  --ink-soft: #4a453e;
  --muted: #8a8378;
  --gold: #b5924c;
  --gold-light: #d9c69a;
  --rose: #b76e79;
  --rose-deep: #96434f;
  --line: #e5ddcf;
  --white: #ffffff;
  --green: #4a7c59;
  --shadow: 0 18px 45px -18px rgba(25, 23, 20, .22);
  --radius: 14px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; letter-spacing: .01em; }

/* ---------- üst şerit ---------- */
.topbar {
  background: var(--ink);
  color: #cfc8bc;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px; gap: 16px;
}
.topbar b { color: var(--gold-light); font-weight: 600; }
.topbar .right { display: flex; gap: 18px; }
.topbar a:hover { color: var(--white); }
@media (max-width: 720px) { .topbar .right { display: none; } .topbar .wrap { justify-content: center; text-align:center; } }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex; align-items: center; gap: 28px;
  min-height: 78px;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo .mark {
  font-family: var(--serif); font-size: 30px; font-weight: 700;
  letter-spacing: .06em; color: var(--ink);
}
.logo .mark span { color: var(--gold); }
.logo .sub {
  font-size: 9.5px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}
nav.main { display: flex; gap: 4px; margin-left: auto; }
nav.main a {
  padding: 10px 14px; font-size: 14px; letter-spacing: .05em;
  color: var(--ink-soft); border-radius: 8px; white-space: nowrap;
  transition: .18s;
}
nav.main a:hover, nav.main a.active { color: var(--ink); background: var(--cream); }
nav.main a.vip-link { color: var(--gold); font-weight: 600; }
.header-icons { display: flex; gap: 6px; align-items: center; }
.hicon {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; border: none; background: transparent;
  color: var(--ink); font-size: 19px; transition: .18s;
}
.hicon:hover { background: var(--cream); }
.hicon .count {
  position: absolute; top: 2px; right: 0;
  background: var(--rose-deep); color: #fff; font-size: 10.5px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: grid; place-items: center; padding: 0 4px;
}
.burger { display: none; }
@media (max-width: 1020px) {
  nav.main {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 12px 20px 20px;
  }
  nav.main.open { display: flex; }
  .burger { display: grid; margin-left: auto; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 560px; display: flex; align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  opacity: .55;
}
.hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,13,11,.82) 20%, rgba(15,13,11,.25) 65%, transparent);
}
.hero-in { position: relative; z-index: 2; color: var(--ivory); max-width: 640px; padding: 90px 0; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 18px;
}
.hero .kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(38px, 5.4vw, 64px); line-height: 1.08; font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead { margin: 22px 0 34px; font-size: 17.5px; color: #d8d2c8; max-width: 480px; font-weight: 300; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px; font-size: 14px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; border: 1px solid transparent;
  transition: .22s;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #9c7c3c; transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: var(--ivory); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: #33302b; transform: translateY(-1px); }
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--ivory); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- güven şeridi ---------- */
.trust {
  background: var(--cream); border-bottom: 1px solid var(--line);
}
.trust .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 22px 24px;
}
.trust .item { display: flex; align-items: center; gap: 13px; justify-content: center; }
.trust .ico { font-size: 24px; }
.trust .t b { display: block; font-size: 14px; letter-spacing: .03em; }
.trust .t span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .trust .wrap { grid-template-columns: repeat(2, 1fr); } }

/* ---------- bölüm başlıkları ---------- */
section.block { padding: 72px 0; }
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.sec-head .kicker {
  font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.sec-head h2 { font-size: clamp(30px, 3.6vw, 42px); line-height: 1.15; }
.sec-head p { color: var(--muted); margin-top: 12px; font-size: 15.5px; }

/* ---------- kategori kartları ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 3.6; box-shadow: var(--shadow); display: block;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .lab {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 20px 18px;
  background: linear-gradient(transparent, rgba(15,13,11,.78));
  color: var(--ivory);
}
.cat-card .lab b { font-family: var(--serif); font-size: 21px; font-weight: 600; display: block; }
.cat-card .lab span { font-size: 12.5px; color: var(--gold-light); letter-spacing: .08em; }
@media (max-width: 900px) { .cats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- ürün kartı ---------- */
.grid-products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
@media (max-width: 1100px) { .grid-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .grid-products { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.pcard {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: .25s; position: relative;
  display: flex; flex-direction: column;
}
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pcard .imgbox { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); }
.pcard .imgbox img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.pcard:hover .imgbox img { transform: scale(1.05); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; color: #fff;
}
.badge.vip { background: linear-gradient(120deg, #8a6d2f, var(--gold)); }
.badge.yeni { background: var(--green); }
.badge.cok-satan { background: var(--rose-deep); }
.badge.indirim { background: var(--ink); }
.fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.92); font-size: 16px; display: grid; place-items: center;
  transition: .2s; color: var(--ink-soft);
}
.fav-btn:hover { transform: scale(1.1); }
.fav-btn.on { color: var(--rose-deep); }
.pcard .info { padding: 15px 16px 17px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pcard .name {
  font-family: var(--serif); font-size: 17.5px; font-weight: 600; line-height: 1.25;
  min-height: 2.5em;
}
.pcard .meta { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.pcard .meta .star { color: var(--gold); }
.pcard .prices { display: flex; align-items: baseline; gap: 9px; margin-top: auto; }
.pcard .price { font-size: 18px; font-weight: 600; letter-spacing: .01em; }
.pcard .old { font-size: 13.5px; color: var(--muted); text-decoration: line-through; }
.pcard .ship { font-size: 11.5px; color: var(--green); font-weight: 500; letter-spacing: .04em; }
.pcard .add {
  margin-top: 10px; width: 100%; padding: 11px; border-radius: 10px;
  border: 1px solid var(--ink); background: transparent; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500; transition: .2s;
}
.pcard .add:hover { background: var(--ink); color: var(--ivory); }

/* ---------- vip şerit ---------- */
.vip-band { background: var(--ink); color: var(--ivory); }
.vip-band .in {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  padding: 84px 0;
}
.vip-band img { border-radius: var(--radius); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); }
.vip-band .kicker { color: var(--gold-light); font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase; }
.vip-band h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 14px 0 18px; }
.vip-band p { color: #c9c2b6; font-weight: 300; margin-bottom: 14px; }
.vip-band ul { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.vip-band li { display: flex; gap: 12px; align-items: flex-start; color: #ded8cd; font-size: 15px; }
.vip-band li::before { content: "◆"; color: var(--gold); font-size: 11px; margin-top: 5px; }
@media (max-width: 900px) { .vip-band .in { grid-template-columns: 1fr; padding: 60px 0; } }

/* ---------- yorumlar ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
}
.quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.quote p { font-family: var(--serif); font-size: 17.5px; font-style: italic; line-height: 1.5; }
.quote .who { margin-top: 16px; font-size: 13px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- adımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { text-align: center; padding: 34px 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.step .no {
  font-family: var(--serif); font-size: 40px; color: var(--gold); font-weight: 600;
  display: block; margin-bottom: 8px;
}
.step b { font-size: 16.5px; display: block; margin-bottom: 6px; }
.step span { font-size: 14px; color: var(--muted); }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ---------- bülten ---------- */
.newsletter { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter .in { padding: 56px 0; text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter h2 { font-size: 30px; }
.newsletter p { color: var(--muted); margin: 10px 0 24px; }
.nl-form { display: flex; gap: 10px; }
.nl-form input {
  flex: 1; padding: 14px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); font-family: inherit; font-size: 14.5px; outline: none;
}
.nl-form input:focus { border-color: var(--gold); }
@media (max-width: 560px) { .nl-form { flex-direction: column; } }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: #b3aca0; font-size: 14px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 64px 0 44px;
}
footer .logo .mark { color: var(--ivory); }
footer h4 {
  color: var(--ivory); font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 18px; font-weight: 600;
}
footer ul { list-style: none; display: grid; gap: 10px; }
footer a:hover { color: var(--gold-light); }
footer .about { margin-top: 16px; font-weight: 300; line-height: 1.7; max-width: 300px; }
.foot-bottom {
  border-top: 1px solid #2e2b26; padding: 20px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: .04em;
}
.pay-badges { display: flex; gap: 8px; }
.pay-badges span {
  border: 1px solid #3a362f; border-radius: 6px; padding: 3px 10px; font-size: 11px;
  letter-spacing: .08em;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; left: 22px; bottom: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 28px; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  transition: .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- sayfa başlığı (iç sayfalar) ---------- */
.page-head {
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 46px 0 40px; text-align: center;
}
.page-head h1 { font-size: clamp(30px, 4vw, 44px); }
.page-head .crumb { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.page-head .crumb a:hover { color: var(--gold); }

/* ---------- koleksiyon layout ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; padding: 48px 0 80px; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }
aside.filters { display: flex; flex-direction: column; gap: 30px; align-self: start; position: sticky; top: 100px; }
@media (max-width: 900px) { aside.filters { position: static; } }
.fgroup h4 {
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line); font-weight: 600;
}
.fgroup label {
  display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 14.5px;
  color: var(--ink-soft); cursor: pointer;
}
.fgroup label:hover { color: var(--ink); }
.fgroup input { accent-color: var(--gold); width: 16px; height: 16px; }
.fgroup .cnt { margin-left: auto; font-size: 12px; color: var(--muted); }
.shop-top {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.shop-top .found { font-size: 14px; color: var(--muted); }
.shop-top select {
  padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--white); font-family: inherit; font-size: 14px; outline: none;
}
@media (min-width: 901px) { .shop-layout .grid-products { grid-template-columns: repeat(3, 1fr); } }
.empty-box { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-box .big { font-size: 46px; display: block; margin-bottom: 12px; }

/* ---------- ürün detay ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0 80px; align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 30px; } }
.pdp .gallery { position: sticky; top: 100px; }
@media (max-width: 900px) { .pdp .gallery { position: static; } }
.pdp .gallery img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pdp h1 { font-size: clamp(28px, 3vw, 38px); line-height: 1.15; margin: 6px 0 10px; }
.pdp .catline { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.pdp .rating { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.pdp .rating .star { color: var(--gold); }
.pdp .price-row { display: flex; align-items: baseline; gap: 14px; margin: 8px 0 4px; }
.pdp .price { font-size: 32px; font-weight: 600; font-family: var(--serif); }
.pdp .old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.pdp .tax { font-size: 12.5px; color: var(--muted); margin-bottom: 22px; }
.opt-title { font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin: 22px 0 10px; }
.size-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.size-opts button {
  padding: 11px 18px; border-radius: 10px; border: 1px solid var(--line); background: var(--white);
  font-size: 13.5px; transition: .15s; display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.size-opts button small { color: var(--muted); font-size: 11.5px; }
.size-opts button.sel { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.size-opts button.sel small { color: var(--gold-light); }
.pdp textarea, .pdp input[type="date"], .pdp select {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--white); font-family: inherit; font-size: 14.5px; outline: none; resize: vertical;
}
.pdp textarea:focus, .pdp input:focus, .pdp select:focus { border-color: var(--gold); }
.deliv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .deliv-grid { grid-template-columns: 1fr; } }
.pdp .actions { display: flex; gap: 12px; margin-top: 26px; }
.pdp .actions .btn { flex: 1; }
.acc { margin-top: 34px; border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  padding: 16px 4px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between;
}
.acc summary::after { content: "+"; color: var(--gold); font-size: 18px; }
.acc details[open] summary::after { content: "–"; }
.acc .body { padding: 0 4px 18px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- sepet ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; padding: 48px 0 80px; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 18px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; margin-bottom: 14px;
}
.cart-item img { width: 96px; height: 110px; object-fit: cover; border-radius: 10px; }
.cart-item .nm { font-family: var(--serif); font-size: 18px; font-weight: 600; }
.cart-item .sz { font-size: 13px; color: var(--muted); margin: 2px 0 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty button { width: 32px; height: 32px; border: none; background: none; font-size: 16px; }
.qty span { min-width: 30px; text-align: center; font-size: 14px; }
.cart-item .colR { text-align: right; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.cart-item .pr { font-weight: 600; font-size: 17px; }
.rm { border: none; background: none; color: var(--muted); font-size: 12.5px; text-decoration: underline; }
.rm:hover { color: var(--rose-deep); }
.summary {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: sticky; top: 100px;
}
.summary h3 { font-size: 22px; margin-bottom: 18px; }
.sline { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; color: var(--ink-soft); }
.sline.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-size: 18px; font-weight: 600; color: var(--ink); }
.summary .btn { width: 100%; margin-top: 18px; }
.free-ship-note { font-size: 12.5px; color: var(--green); margin-top: 12px; text-align: center; }

/* ---------- teslimat formu & adres arama ---------- */
.deliv-form { display: grid; gap: 10px; }
.deliv-form input, .deliv-form textarea {
  width: 100%; padding: 12px 15px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--ivory); font-family: inherit; font-size: 14px; outline: none; resize: vertical;
}
.deliv-form input:focus, .deliv-form textarea:focus { border-color: var(--gold); background: var(--white); }
.addr-wrap { position: relative; }
.addr-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 60;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); display: none; max-height: 280px; overflow-y: auto;
}
.addr-list.open { display: block; }
.addr-list .opt {
  display: flex; gap: 10px; align-items: flex-start; width: 100%; text-align: left;
  padding: 11px 14px; border: none; background: none; font-size: 13.5px; line-height: 1.4;
  border-bottom: 1px solid var(--line); color: var(--ink-soft); cursor: pointer; font-family: inherit;
}
.addr-list .opt:last-child { border-bottom: none; }
.addr-list .opt:hover { background: var(--cream); color: var(--ink); }
.addr-list .opt .pin { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.addr-list .opt b { color: var(--ink); display: block; font-weight: 500; }
.addr-list .opt small { color: var(--muted); }
.addr-list .hint { padding: 11px 14px; font-size: 13px; color: var(--muted); }
.addr-picked {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--gold-light); border-radius: 10px;
  padding: 11px 14px; font-size: 13.5px; line-height: 1.45; color: var(--ink-soft);
}
.addr-picked .pin { color: var(--gold); }
.addr-picked b { color: var(--ink); display: block; font-weight: 500; }
.addr-picked .change {
  margin-left: auto; border: none; background: none; color: var(--rose-deep);
  font-size: 12px; text-decoration: underline; flex-shrink: 0; cursor: pointer; font-family: inherit;
}

/* ---------- iletişim / hakkımızda ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 60px 0 80px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-card h3 { font-size: 24px; margin-bottom: 18px; }
.cline { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.cline:last-child { border: none; }
.cline .ic { font-size: 20px; }
.cline b { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-grid { display: grid; gap: 14px; margin-top: 8px; }
.form-grid input, .form-grid textarea {
  padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--white);
  font-family: inherit; font-size: 14.5px; outline: none; width: 100%;
}
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--gold); }
.prose { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; font-size: 16.5px; color: var(--ink-soft); }
.prose h2 { font-size: 30px; color: var(--ink); margin: 34px 0 14px; }
.prose p { margin-bottom: 16px; font-weight: 300; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 26px; right: 26px; z-index: 300;
  background: var(--ink); color: var(--ivory); padding: 15px 24px; border-radius: 12px;
  font-size: 14px; box-shadow: var(--shadow); display: flex; gap: 10px; align-items: center;
  opacity: 0; transform: translateY(14px); transition: .3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: none; }
.toast .gold { color: var(--gold-light); }

/* animasyon */
.reveal { opacity: 0; transform: translateY(24px); transition: .7s cubic-bezier(.2,.7,.3,1); }
.reveal.vis { opacity: 1; transform: none; }
