:root {
  --bg:       #ffffff;
  --bg-soft:  #f5f5f5;
  --bg-soft-2:#ededed;
  --ink:      #1a1a1a;
  --ink-2:    #595959;
  --muted:    #8c8c8c;
  --line:     #e6e6e6;
  --line-2:   #d6d6d6;
  --dark:     #1a1a1a;
  --sale:     #c8102e;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --r: 2px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
*, *::before, *::after { min-width: 0; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
em { font-style: italic; }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); font-weight: 400; }

/* ——— Announcement ——— */
.announce {
  background: var(--dark); color: #f2f2f2;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-align: center; padding: 9px 14px;
}

/* ——— Header ——— */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { font-family: var(--serif); font-weight: 500; font-size: 2rem; letter-spacing: 0.06em; line-height: 1; }
.brand-cell { display: flex; justify-content: center; }
.nav { display: none; gap: 30px; }
.nav a { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); transition: color .2s; }
.nav a:hover { color: var(--ink); }
.header-right { display: flex; justify-content: flex-end; }
.header-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--ink); border-radius: var(--r); padding: 9px 16px; transition: all .2s var(--ease);
}
.header-wa:hover { background: var(--ink); color: #fff; }
.header-wa:hover svg { fill: #fff; }
.header-wa svg { width: 14px; height: 14px; fill: var(--ink); transition: fill .2s; }
@media (min-width: 920px) { .nav { display: flex; } }

/* ——— Hero ——— */
.hero {
  position: relative; overflow: hidden;
  min-height: min(54svh, 520px);
  display: flex; align-items: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.hero-mark {
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: right center;
  font-size: 0.62rem; letter-spacing: 0.46em; text-transform: uppercase; color: var(--muted);
  display: none;
}
@media (min-width: 820px) { .hero-mark { display: block; } }
.hero-inner { position: relative; z-index: 2; padding: 54px 0; max-width: 720px; }
.hero-eyebrow { margin-bottom: 20px; opacity: 0; animation: rise .8s var(--ease) .05s forwards; }
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1.04; letter-spacing: 0.005em; color: var(--ink);
  opacity: 0; animation: rise .9s var(--ease) .15s forwards;
}
.hero-sub {
  margin-top: 22px; max-width: 46ch; font-size: 0.98rem; line-height: 1.7; color: var(--ink-2);
  opacity: 0; animation: rise .9s var(--ease) .3s forwards;
}
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: rise .9s var(--ease) .45s forwards; }

/* buttons */
.btn-dark, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer;
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--r); transition: all .25s var(--ease);
}
.btn-dark { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }

/* ——— Section heads ——— */
.section { padding: 64px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 32px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.1; margin-top: 5px; }

/* ——— Filters ——— */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 0.74rem; letter-spacing: 0.05em; padding: 9px 17px;
  border: 1px solid var(--line-2); border-radius: var(--r); color: var(--ink-2);
  background: #fff; transition: all .2s var(--ease); white-space: nowrap;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ——— Product grid ——— */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; } }
@media (min-width: 1040px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 48px 24px; } }

.product-card { display: flex; flex-direction: column; }
.product-card .media {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  background: var(--bg-soft); border-radius: var(--r);
}
.product-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .media img { transform: scale(1.05); }
.product-card .media .ph { width: 100%; height: 100%; display: grid; place-items: center; font-family: var(--serif); font-size: 2.6rem; color: #c9c9c9; }
.product-card .tag {
  position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--sale); color: #fff;
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.06em; padding: 4px 9px; border-radius: var(--r);
}
.product-card .quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  text-align: center; background: #fff; color: var(--ink);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px; border-radius: var(--r); opacity: 0; transform: translateY(8px); transition: all .3s var(--ease);
}
.product-card:hover .quick { opacity: 1; transform: translateY(0); }
.product-card .meta { padding: 13px 1px 0; }
.product-card .pname { font-size: 0.9rem; font-weight: 400; color: var(--ink); line-height: 1.35; }
.product-card .prow { margin-top: 5px; display: flex; align-items: baseline; gap: 8px; }
.product-card .pprice { font-size: 0.88rem; color: var(--ink); }
.product-card .pprice.sale { color: var(--sale); }
.product-card .pold { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; }
.empty {
  grid-column: 1 / -1; text-align: center; padding: 76px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-soft);
}
.empty .e-serif { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); }
.empty p { color: var(--muted); margin-top: 8px; font-size: 0.92rem; }

/* ——— Product detail ——— */
.product { padding-block: 30px 80px; }
.back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 24px; transition: color .2s; }
.back:hover { color: var(--ink); }
.product-layout { display: grid; gap: 28px; }
@media (min-width: 880px) { .product-layout { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; } }
.gallery .main { aspect-ratio: 3 / 4; background: var(--bg-soft); border-radius: var(--r); overflow: hidden; }
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .main .ph { width: 100%; height: 100%; display: grid; place-items: center; font-family: var(--serif); font-size: 4.2rem; color: #c9c9c9; }
.thumbs { display: flex; gap: 9px; margin-top: 11px; flex-wrap: wrap; }
.thumbs button { width: 64px; aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-2); background: var(--bg-soft); cursor: pointer; padding: 0; }
.thumbs button.active { outline: 1.5px solid var(--ink); outline-offset: 2px; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding-top: 4px; }
.product-info .cat { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.product-info h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 5vw, 2.9rem); line-height: 1.1; margin-top: 8px; }
.product-info .prices { margin-top: 16px; display: flex; align-items: baseline; gap: 12px; }
.product-info .price { font-size: 1.4rem; color: var(--ink); }
.product-info .price.sale { color: var(--sale); }
.product-info .old { font-size: 1.02rem; color: var(--muted); text-decoration: line-through; }
.product-info .save { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--sale); border: 1px solid var(--sale); border-radius: var(--r); padding: 3px 8px; }
.divider { height: 1px; background: var(--line); margin: 24px 0; }
.var-group { margin-bottom: 18px; }
.var-group .label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.var-options { display: flex; gap: 8px; flex-wrap: wrap; }
.var { font-size: 0.82rem; padding: 9px 16px; border: 1px solid var(--line-2); border-radius: var(--r); color: var(--ink-2); transition: all .2s; }
.var:hover { border-color: var(--ink); color: var(--ink); }
.desc { color: var(--ink-2); font-size: 0.95rem; line-height: 1.8; white-space: pre-line; }
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 11px; width: 100%;
  margin-top: 26px; padding: 17px 24px; background: var(--ink); color: #fff;
  border: 1px solid var(--ink); border-radius: var(--r); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; transition: all .25s var(--ease);
}
.btn-wa:hover { background: #000; }
.btn-wa svg { width: 18px; height: 18px; fill: #fff; }
.note { text-align: center; color: var(--muted); font-size: 0.78rem; margin-top: 11px; }
.assurances { margin-top: 24px; display: grid; gap: 11px; border-top: 1px solid var(--line); padding-top: 22px; }
.assurances li { list-style: none; display: flex; gap: 11px; align-items: center; font-size: 0.84rem; color: var(--ink-2); }
.assurances li b { font-weight: 500; color: var(--ink); }
.assurances .ic { color: var(--ink); flex-shrink: 0; }
.assurances a { text-decoration: underline; text-underline-offset: 2px; }

/* ——— Trust strip ——— */
.trust { border-top: 1px solid var(--line); background: var(--bg-soft); }
.trust .row { display: grid; grid-template-columns: 1fr; gap: 16px; padding-block: 30px; text-align: center; }
@media (min-width: 720px) { .trust .row { grid-template-columns: repeat(3, 1fr); } }
.trust .item { font-size: 0.8rem; color: var(--ink-2); }
.trust .item b { display: block; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.7rem; margin-bottom: 4px; color: var(--ink); }

/* ——— Footer ——— */
.site-footer { margin-top: auto; background: var(--dark); color: #c4c4c4; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 22px; padding-block: 54px 32px; }
@media (min-width: 780px) { .footer-cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 42px; } }
.footer-cols .fbrand { font-family: var(--serif); font-size: 1.8rem; color: #fff; letter-spacing: 0.04em; }
.footer-cols .ftag { margin-top: 11px; font-size: 0.84rem; line-height: 1.75; color: #9a9a9a; max-width: 28ch; }
.footer-cols h4 { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 15px; font-weight: 500; }
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-cols a, .footer-cols li { font-size: 0.85rem; color: #adadad; transition: color .2s; }
.footer-cols a:hover { color: #fff; }
.footer-social { display: flex; gap: 11px; margin-top: 18px; }
.footer-social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #333; border-radius: 50%; transition: all .2s; }
.footer-social a:hover { border-color: #fff; }
.footer-social svg { width: 16px; height: 16px; fill: #c4c4c4; }
.footer-bottom { border-top: 1px solid #2e2e2e; padding-block: 19px; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom .copy { font-size: 0.74rem; color: #909090; }
.footer-bottom .pay { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #909090; }

/* ——— Content / legal ——— */
.page { padding: 54px 0 78px; }
.page-head { text-align: center; margin-bottom: 38px; }
.page-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 6vw, 3.1rem); margin-top: 9px; }
.article { max-width: 800px; margin: 0 auto; color: var(--ink-2); font-size: 0.95rem; line-height: 1.85; }
.article h2 { font-family: var(--sans); font-weight: 500; font-size: 1.02rem; color: var(--ink); margin: 30px 0 10px; }
.article h3 { font-weight: 500; font-size: 0.95rem; color: var(--ink); margin: 22px 0 8px; }
.article p { margin-bottom: 14px; }
.article ul, .article ol { margin: 0 0 16px 20px; }
.article li { margin-bottom: 8px; }
.article a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.article .muted { color: var(--muted); font-size: 0.86rem; }
.info-table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: 0.92rem; }
.info-table td { border: 1px solid var(--line-2); padding: 12px 15px; vertical-align: top; }
.info-table td:first-child { width: 38%; color: var(--ink); background: var(--bg-soft); }
.contact-grid { display: grid; gap: 16px; max-width: 720px; margin: 0 auto; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.contact-card .lbl { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.contact-card .val { font-size: 1.02rem; color: var(--ink); }

/* ——— Header: nav gizliyken (tablet/mobil) logo solda, WhatsApp sağda ——— */
@media (max-width: 919px) {
  .site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 60px; }
  .brand-cell { justify-content: flex-start; }
  .brand { font-size: 1.55rem; }
  .header-wa { padding: 8px 13px; font-size: 0.66rem; }
}

/* ——— Mobile refinements ——— */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 34px 0 46px; }
  .section-head { display: block; margin-bottom: 20px; }
  .section-head .left { margin-bottom: 14px; }
  .section-head h2 { font-size: 1.7rem; }
  /* kategori filtrelerini tek satır yatay kaydırma yap */
  .filters {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    margin: 0 -18px; padding: 2px 18px 6px; scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .chip { flex: 0 0 auto; }
  .grid { gap: 22px 12px; }
  .product-card .pname { font-size: 0.88rem; }
  .announce { font-size: 0.62rem; letter-spacing: 0.1em; }
  .trust .row { padding-block: 24px; gap: 18px; }
  .footer-cols { padding-block: 40px 26px; gap: 26px 18px; }
  .product { padding-block: 22px 60px; }
}

/* ——— Motion ——— */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-cta { opacity: 1 !important; }
}
