@import url('font.css');

:root {
  --ink: #0d0d0d;
  --ink-2: #2a2a2a;
  --muted: #6e6b66;
  --muted-2: #9a968f;
  --line: #e3e0da;
  --line-2: #cfcbc3;
  --paper: #ffffff;
  --sand: #faf9f7;
  --sand-2: #f2efe9;
  --gold: #a98f6b;
  --gold-soft: #cbb8a0;
  --serif: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --wrap: 1280px;
  --pad: clamp(18px, 4vw, 48px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: .005em;
  line-height: 1.12;
  margin: 0;
}

h1 { font-size: clamp(38px, 6.4vw, 78px); }
h2 { font-size: clamp(28px, 4.2vw, 50px); }
h3 { font-size: clamp(20px, 2.4vw, 27px); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.wrap-wide { max-width: 1600px; }

.ico { width: 1em; height: 1em; flex: none; }

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.lead { font-size: 16.5px; color: var(--muted); max-width: 62ch; }

/* ---------- ust bar ---------- */

.topbar {
  background: var(--ink);
  color: #f3f1ed;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; }
.topbar a { color: inherit; opacity: .85; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { opacity: 1; }
.topbar-r { display: flex; align-items: center; gap: 20px; }
.topbar .ico { width: 13px; height: 13px; }

/* ---------- baslik ---------- */

.head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; }
.logo-tx { font-family: var(--serif); font-size: 27px; letter-spacing: .06em; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 0; color: var(--ink-2);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink); transition: right .3s ease;
}
.nav a:hover::after, .nav a.on::after { right: 0; }

.head-act { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border: 1px solid var(--ink); background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn .ico { width: 15px; height: 15px; }

.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger .ico { width: 24px; height: 24px; }

/* ---------- giris gorseli ---------- */

.hero { position: relative; background: var(--sand-2); overflow: hidden; }
.hero-img { position: relative; height: clamp(440px, 76vh, 820px); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,.42) 0%, rgba(8,8,8,.16) 42%, rgba(8,8,8,.58) 100%);
}
.hero-in {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding-bottom: clamp(44px, 7vw, 92px);
}
.hero-tx { color: #fff; max-width: 780px; }
.hero-tx .kicker { color: rgba(255,255,255,.82); }
.hero-tx h1 { color: #fff; margin-bottom: 18px; }
.hero-tx p { color: rgba(255,255,255,.88); font-size: 17px; max-width: 54ch; margin-bottom: 30px; }
.hero-act { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- bolumler ---------- */

.sec { padding: clamp(56px, 9vw, 118px) 0; }
.sec-sand { background: var(--sand); }
.sec-ink { background: var(--ink); color: #f1efeb; }
.sec-ink h2, .sec-ink h3 { color: #fff; }
.sec-ink .lead { color: rgba(255,255,255,.72); }

.sec-h { margin-bottom: clamp(30px, 4vw, 54px); }
.sec-h.center { text-align: center; }
.sec-h.center .lead { margin-left: auto; margin-right: auto; }
.sec-h.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }

/* ---------- urun izgarasi ---------- */

.pgrid { display: grid; gap: clamp(16px, 2.2vw, 30px) clamp(12px, 1.6vw, 22px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }

.pcard { display: block; position: relative; }
.pcard-img {
  position: relative; display: block; aspect-ratio: 2 / 3;
  background: var(--sand-2); overflow: hidden;
}
.pcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.3,1), opacity .5s ease;
}
.pcard-img img.alt { position: absolute; inset: 0; opacity: 0; }
.pcard:hover .pcard-img img.alt { opacity: 1; }
.pcard:hover .pcard-img img { transform: scale(1.045); }

.pcard-tag {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 11px;
}

.pcard-b { padding: 15px 2px 0; }
.pcard-b h3 { font-size: 18px; line-height: 1.3; margin-bottom: 7px; }
.pcard-meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }

.dots { display: flex; align-items: center; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.dot {
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid var(--line-2); box-shadow: inset 0 0 0 2px #fff;
}
.dot-more { font-size: 10.5px; color: var(--muted-2); letter-spacing: .08em; }

/* ---------- urun detay ---------- */

.pd { display: grid; gap: clamp(26px, 4vw, 64px); grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: start; }

.pd-gal { display: grid; gap: 10px; grid-template-columns: 82px minmax(0, 1fr); }
.pd-thumbs { display: flex; flex-direction: column; gap: 9px; max-height: 760px; overflow-y: auto; scrollbar-width: thin; }
.pd-thumb {
  aspect-ratio: 2 / 3; background: var(--sand-2); border: 1px solid transparent;
  cursor: pointer; padding: 0; overflow: hidden; transition: border-color .2s ease, opacity .2s ease;
  opacity: .72;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.on { border-color: var(--ink); opacity: 1; }
.pd-thumb:hover { opacity: 1; }

.pd-main { position: relative; aspect-ratio: 2 / 3; background: var(--sand-2); overflow: hidden; }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }

.pd-info { position: sticky; top: 104px; }
.pd-info h1 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 12px; }
.pd-sku { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 26px; }

.pd-block { padding: 22px 0; border-top: 1px solid var(--line); }
.pd-label { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px 7px 8px; border: 1px solid var(--line-2); background: #fff;
  cursor: pointer; font-size: 12px; letter-spacing: .04em;
  transition: border-color .2s ease, background .2s ease;
}
.swatch:hover { border-color: var(--muted); }
.swatch.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.swatch i {
  width: 17px; height: 17px; border-radius: 50%; display: block;
  border: 1px solid rgba(0,0,0,.14); box-shadow: inset 0 0 0 2px #fff;
}
.swatch.on i { border-color: rgba(255,255,255,.4); box-shadow: inset 0 0 0 2px var(--ink); }

.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size {
  min-width: 46px; text-align: center; padding: 9px 13px;
  border: 1px solid var(--line-2); font-size: 12.5px; letter-spacing: .08em; color: var(--ink-2);
}

.pd-desc { font-size: 14.5px; color: var(--muted); }
.pd-desc p { margin-bottom: .8em; }

.pd-act { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; margin-top: 24px; }
.pd-act .btn { width: 100%; }
.pd-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; line-height: 1.6; }

.wa { background: #1faa59; border-color: #1faa59; }
.wa:hover { background: transparent; color: #1faa59; border-color: #1faa59; }

/* ---------- serit ---------- */

.strip { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); background: var(--line); }
.strip-i { background: var(--paper); padding: clamp(24px, 3.4vw, 40px); }
.strip-i .ico { width: 22px; height: 22px; color: var(--gold); margin-bottom: 14px; }
.strip-i h3 { font-size: 20px; margin-bottom: 8px; }
.strip-i p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- subeler ---------- */

.bgrid { display: grid; gap: clamp(16px, 2.4vw, 28px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.branch { border: 1px solid var(--line); padding: clamp(22px, 3vw, 34px); background: var(--paper); transition: border-color .25s ease; }
.branch:hover { border-color: var(--line-2); }
.branch h3 { font-size: 22px; margin-bottom: 4px; }
.branch-tag { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.branch-l { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); margin-top: 14px; }
.branch-l .ico { width: 15px; height: 15px; margin-top: 4px; color: var(--muted-2); }
.branch-act { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ---------- alt bilgi ---------- */

.foot { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(46px, 6vw, 78px) 0 0; }
.foot-top { display: grid; gap: clamp(26px, 4vw, 54px); grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr)); padding-bottom: 44px; }
.foot h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.foot-logo img { height: 46px; width: auto; filter: invert(1) brightness(2); margin-bottom: 18px; }
.foot p { font-size: 13.5px; line-height: 1.75; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot a { font-size: 13.5px; }
.foot a:hover { color: #fff; }
.foot-soc { display: flex; gap: 10px; margin-top: 20px; }
.foot-soc a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; transition: background .2s ease, border-color .2s ease;
}
.foot-soc a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.foot-soc .ico { width: 17px; height: 17px; }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.foot-bot a { display: inline-flex; align-items: center; gap: 8px; }
.foot-bot img { height: 17px; width: auto; opacity: .6; }

/* ---------- yuzen whatsapp ---------- */

.wafab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1faa59; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(0,0,0,.24);
  transition: transform .2s ease;
}
.wafab:hover { transform: translateY(-2px); }
.wafab .ico { width: 27px; height: 27px; }

/* ---------- sayfa basligi ---------- */

.phead { padding: clamp(40px, 6vw, 82px) 0 clamp(26px, 3.4vw, 46px); border-bottom: 1px solid var(--line); }
.phead h1 { margin-bottom: 14px; }
.crumb { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.crumb a:hover { color: var(--ink); }
.crumb span { margin: 0 8px; opacity: .5; }

/* ---------- icerik ---------- */

.rich { font-size: 15.5px; color: var(--ink-2); max-width: 78ch; }
.rich h2 { margin: 1.6em 0 .5em; }
.rich h3 { margin: 1.4em 0 .4em; }
.rich ul, .rich ol { padding-left: 1.2em; margin: 0 0 1.1em; }
.rich li { margin-bottom: .4em; }
.rich a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- form ---------- */

.form { display: grid; gap: 14px; }
.f label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.f input, .f textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); background: #fff;
  font: inherit; font-size: 14px; color: var(--ink);
}
.f input:focus, .f textarea:focus { outline: 0; border-color: var(--ink); }
.f textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }

.note { padding: 15px 18px; border-left: 2px solid var(--gold); background: var(--sand); font-size: 14px; }
.note.ok { border-color: #1faa59; }

/* ---------- bos ---------- */

.empty { text-align: center; padding: clamp(50px, 8vw, 100px) 0; color: var(--muted); }
.empty .ico { width: 34px; height: 34px; color: var(--line-2); margin: 0 auto 16px; }

/* ---------- belirme ---------- */

[data-reveal] { opacity: 0; transform: translateY(16px); }
.revealed[data-reveal] { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); transition-delay: var(--d, 0ms); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- duyarli ---------- */

@media (max-width: 1000px) {
  .pd { grid-template-columns: 1fr; }
  .pd-info { position: static; }
  .pd-gal { grid-template-columns: 1fr; }
  .pd-thumbs { flex-direction: row; max-height: none; overflow-x: auto; order: 2; }
  .pd-thumb { width: 72px; flex: none; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    gap: 4px; padding: 90px 32px 32px; transform: translateX(100%);
    transition: transform .34s cubic-bezier(.2,.7,.3,1); z-index: 80;
    border-left: 1px solid var(--line);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 15px; letter-spacing: .1em; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .burger { display: block; }
  .head-act .btn { display: none; }
  .topbar { display: none; }
  .navveil { position: fixed; inset: 0; background: rgba(10,10,10,.42); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .navveil.on { opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 10px; }
  .pcard-b h3 { font-size: 15.5px; }
  .pd-act { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}
