/* nesaconcept — kurumsal sade e-ticaret */
:root {
  --paper: #FFFFFF;
  --paper-2: #FAFAFA;
  --ink: #15171C;
  --muted: #6E727A;
  --line: #ECEDEF;
  --accent: #1F3A5F;
  --accent-dark: #142944;
  --soft: #F2F4F7;
  --soft-2: #F7F8FA;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  /* İçerik genişlik kapağı — geniş ekranlarda içerik ortalanır, arkaplanlar tam-genişlik kalır */
  --maxw: 1320px;
  --gutter: 48px;
  --side: max(var(--gutter), calc((100% - var(--maxw)) / 2));
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
::selection { background: var(--accent); color: #fff; }

/* ============ HEADER ============ */
.topbar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--side);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--side);
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  justify-self: start;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-brand .logo-img { height: 36px; }

.nav { display: flex; gap: 8px; font-size: 14px; font-weight: 500; }
.nav a {
  padding: 8px 14px;
  color: var(--ink);
  position: relative;
  transition: color 0.18s;
}
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  align-items: center;
  font-size: 14px;
}
.header-actions a {
  padding: 8px 14px;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.18s;
}
.header-actions a:hover { color: var(--accent); }
.cart-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 10px 16px !important;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.cart-btn .count {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 70px var(--side) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 360px;
  margin: 0;
  text-wrap: pretty;
}
.foot-col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--ink); }
.foot-col a:hover { color: var(--accent); }
.newsletter p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
}
.newsletter-form {
  display: flex;
  border: 1px solid var(--line);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--ink);
  font-family: inherit;
  outline: none;
}
.newsletter-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom-meta { display: flex; align-items: center; gap: 24px; }
.footer-credit { display: inline-flex; align-items: center; gap: 9px; text-transform: none; letter-spacing: normal; font-family: var(--display); font-size: 13px; color: var(--muted); }
.footer-credit .nesa-credit-logo { height: 25px; width: auto; display: block; opacity: 0.8; transition: opacity .2s; }
.footer-credit a:hover .nesa-credit-logo { opacity: 1; }

/* ============ BUTTONS ============ */
.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.btn-lg { padding: 18px 30px; font-size: 14px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; }

/* ============ PILL / EYEBROW ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.with-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.with-line::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ PLACEHOLDER (lamba görseli) ============ */
.ph {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #EFEBE3;
}
.ph.square { aspect-ratio: 1; }
.ph.tall { aspect-ratio: 0.9; }
.ph.wide { aspect-ratio: 2.4; }
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.55) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.06) 0%, transparent 55%);
}
.ph::after {
  content: "";
  position: absolute; inset: 26%;
  background: rgba(255,255,255,0.5);
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  opacity: 0.7;
  box-shadow: inset 0 -16px 24px rgba(0,0,0,0.05);
}
.ph .lbl {
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(20,20,30,0.55);
  text-transform: uppercase;
  z-index: 2;
}
.ph .sub {
  position: absolute;
  right: 14px; top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(20,20,30,0.5);
  text-transform: uppercase;
  z-index: 2;
}

/* swatch tonları */
.ph[data-tone="kemik"]   { background: #D8D2C5; }
.ph[data-tone="kagit"]   { background: #E8E4D7; }
.ph[data-tone="kum"]     { background: #E5DFCB; }
.ph[data-tone="sis"]     { background: #D6DAE1; }
.ph[data-tone="bej"]     { background: #E0D8CC; }
.ph[data-tone="bulut"]   { background: #DFE2E7; }
.ph[data-tone="tas"]     { background: #DCD6CB; }
.ph[data-tone="zeytin"]  { background: #DCDCD2; }

.ph-frame {
  background: var(--paper-2);
  padding: 24px;
  border: 1px solid var(--line);
}
.ph-frame.lg { padding: 32px; }

/* ============ HOME ============ */
.hero {
  background: var(--paper);
}
.hero-inner {
  padding: 80px var(--side) 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  color: var(--accent);
  font-weight: 500;
}
.hero p.lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin-top: 28px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.eyebrow-mb {
  margin-bottom: 28px;
}
.hero-art { position: relative; }
.hero-tag {
  position: absolute;
  left: -1px;
  bottom: -1px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 22px;
}
.hero-tag .name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-top: 4px;
}
.hero-tag .price {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

/* section */
.section {
  padding: 100px var(--side);
  border-top: 1px solid var(--line);
}
.section.muted { background: var(--paper-2); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 32px;
}
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head h2 {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  max-width: 600px;
}

/* ürün grid */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.products.dense { row-gap: 56px; }

.card { cursor: pointer; display: block; }
.card-img-wrap {
  position: relative;
  margin-bottom: 16px;
  background: var(--paper-2);
  padding: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.card-badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.card-quick {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s;
  z-index: 2;
}
.card:hover .card-quick {
  opacity: 1;
  transform: translateY(0);
}
.card-quick .btn { width: 100%; padding: 11px; }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.card-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.18s;
}
.card:hover .card-name { color: var(--accent); }
.card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.card-price {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink);
}

/* süreç */
.process-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.process-head h2 {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.process-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 540px;
  padding-top: 8px;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: none; }
.process-step .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
}
.process-step .t {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.process-step .d {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* alıntı */
.quote-section {
  padding: 120px var(--side);
  text-align: center;
  border-top: 1px solid var(--line);
}
.quote-section p.q {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 auto;
  max-width: 1000px;
  text-wrap: balance;
  color: var(--ink);
}
.quote-section .by {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ COLLECTION ============ */
.collection-hero {
  padding: 80px var(--side) 48px;
}
.collection-hero .eyebrow { margin-bottom: 18px; display: block; }
.collection-titlerow {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.collection-titlerow h1 {
  font-family: var(--display);
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.02;
}
.collection-titlerow h1 em { color: var(--accent); font-style: italic; }
.collection-titlerow p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.filter-bar {
  padding: 12px var(--side);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  position: sticky;
  top: 78px;
  background: var(--paper);
  z-index: 5;
}
.filter-bar a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}
.filter-bar a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.filter-bar .sort {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ PDP ============ */
.crumbs {
  padding: 14px var(--side);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs .here { color: var(--ink); }

.pdp {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 56px;
  /* Sol galeri büyür ve sola yaslanır ama ~50px boşluk kalır */
  padding: 48px var(--side) 80px 50px;
  align-items: start;
}
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.pdp-thumbs button {
  padding: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--paper-2);
}
.pdp-thumbs button.active { border-color: var(--accent); }

.pdp-info { padding-left: 8px; }
.pdp-info .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.pdp-info h1 {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.08;
}
.pdp-info .sub {
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.pdp-price {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
}
.pdp-price-meta {
  font-size: 13px;
  color: var(--muted);
}
.pdp-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 28px;
  max-width: 480px;
}

/* Güven / sertifika — sade satır (Yerli üretim · Patentli tasarım) */
.pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
}
.pdp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
}
.pdp-trust-item svg {
  flex: none;
  color: var(--accent);
}

.specs {
  margin-top: 28px;
  border: 1px solid var(--line);
}
.specs .row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.specs .row:last-child { border-bottom: none; }
.specs .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.engrave-block { margin-top: 28px; }
.engrave-block label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.engrave-block input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 13px;
  background: var(--paper);
  outline: none;
  color: var(--ink);
}
.engrave-block input:focus { border-color: var(--accent); }

.add-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}
.qty button {
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty .v {
  width: 36px;
  text-align: center;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 14px;
}

.bullets {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}
.bullets div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bullets div::before {
  content: "";
  margin-top: 8px;
  width: 4px; height: 4px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============ ABOUT ============ */
.about-hero {
  padding: 100px var(--side) 80px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
}
.about-hero h1 {
  font-family: var(--display);
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}
.about-hero h1 em { color: var(--accent); font-style: italic; }
.about-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}
.about-eyebrow { display: block; margin-bottom: 18px; }
.about-art {
  padding: 0 var(--side) 80px;
}
.about-art-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

/* utility */
.center { text-align: center; }
.cta-section {
  padding: 80px var(--side);
  text-align: center;
  border-top: 1px solid var(--line);
}

/* ============ RENK SEÇİMİ (PDP) ============ */
.color-block {
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.color-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.color-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.color-active {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.color-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.swatch {
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.18s;
}
.swatch:hover { border-color: var(--ink); }
.swatch.active { border-color: var(--accent); }
.swatch .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid;
  flex-shrink: 0;
  display: inline-block;
}
.swatch .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ============ HERO ZENGİNLEŞTİRME ============ */
.hero-meta-row {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .v {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-meta .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-trust {
  position: absolute;
  right: -1px;
  top: -1px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 200px;
}
.hero-trust .stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 12px;
}
.hero-trust .v {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}
.hero-trust .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-2);
}
.hero-marquee .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-marquee svg { color: var(--accent); flex-shrink: 0; }

/* ============ TESTIMONIAL ŞERİT ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.testimonial {
  background: var(--paper);
  padding: 36px 32px;
}
.testimonial .stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial p {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-wrap: pretty;
}
.testimonial .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

/* ============ INSTAGRAM ŞERİT ============ */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.ig-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.ig-cell .ig-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 25, 38, 0.4);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.ig-cell:hover .ig-overlay { opacity: 1; }

/* ============ FORMS GENERIC ============ */
.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  background: var(--paper);
  outline: none;
  color: var(--ink);
  transition: border-color 0.18s;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field .hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
}
.checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  width: 14px; height: 14px;
  accent-color: var(--accent);
}
.checkbox-row a { color: var(--ink); border-bottom: 1px solid var(--line); }
.checkbox-row a:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* ============ PAGE HERO (genel sayfa başlığı) ============ */
.page-hero {
  padding: 80px var(--side) 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { display: block; margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0;
  max-width: 1000px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero p.lead {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  text-wrap: pretty;
}

/* ============ İLETİŞİM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 80px var(--side);
}
.contact-info-block {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 500;
}
.contact-info-block p {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.4;
}
.contact-info-block .sub {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 400;
}

.map-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 0;
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,58,95,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,58,95,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin {
  position: absolute;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.map-pin .where {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
}
.map-pin .what {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.map-pin::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(31,58,95,0.12);
}

/* ============ AUTH (giriş / kayıt) ============ */
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 90px);
}
.auth-art {
  background: var(--paper-2);
  border-right: 1px solid var(--line);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-art .quote {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-wrap: balance;
  margin: 60px 0;
  max-width: 480px;
}
.auth-art .by {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.auth-form {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}
.auth-form h1 {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  line-height: 1.05;
}
.auth-form .sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.auth-form .switch {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}
.auth-form .switch a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  margin-bottom: 10px;
  transition: border-color 0.18s;
}
.social-btn:hover { border-color: var(--ink); }

/* ============ SEPET SAYFASI ============ */
.cart-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding: 56px var(--side) 80px;
}
.cart-list { border-top: 1px solid var(--line); }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item-img {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 12px;
  aspect-ratio: 1;
}
.cart-item-info .n {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cart-item-info .s {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.cart-item-info .opts {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cart-item-info .opts span { color: var(--ink); }
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}
.cart-item-price {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
}
.remove-link {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}
.remove-link:hover { color: var(--accent); }

.cart-summary {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--paper-2);
  align-self: start;
}
.cart-summary h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
}
.summary-row.muted { color: var(--muted); }
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 16px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.summary-row .v { font-family: var(--mono); font-weight: 500; }
.coupon-row {
  display: flex;
  margin: 18px 0;
  border: 1px solid var(--line);
}
.coupon-row input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  outline: none;
}
.coupon-row button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  cursor: pointer;
}

/* ============ ÖDEME (CHECKOUT) ============ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding: 48px var(--side) 80px;
}
.checkout-step {
  border: 1px solid var(--line);
  margin-bottom: 18px;
  background: var(--paper);
}
.checkout-step.active { border-color: var(--accent); }
.checkout-step.done { background: var(--paper-2); }
.checkout-step-head {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.checkout-step.done .checkout-step-head { border-bottom: none; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--soft-2);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.checkout-step.active .step-num { background: var(--accent); color: #fff; border-color: var(--accent); }
.checkout-step.done .step-num { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.step-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1;
}
.step-edit {
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
}
.checkout-step-body { padding: 24px; }
.checkout-step.done .checkout-step-body {
  padding: 6px 24px 18px;
  font-size: 14px;
  color: var(--muted);
}
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ship-opt {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
}
.ship-opt.sel { border-color: var(--accent); background: var(--soft-2); }
.ship-opt input { accent-color: var(--accent); }
.ship-opt .name { font-weight: 500; font-size: 14px; }
.ship-opt .desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ship-opt .price {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.payment-tab {
  position: relative;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: border-color .15s ease, background .15s ease;
}
.payment-tab:hover { border-color: var(--muted); }
.payment-tab.sel { border-color: var(--accent); background: var(--soft-2); }
.payment-tab .pay-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink, #1a1a1a);
  margin-bottom: 4px;
  background: var(--paper);
}
.payment-tab.sel .pay-ico { border-color: var(--accent); color: var(--accent); }
.payment-tab .label {
  font-size: 13.5px;
  font-weight: 500;
}
.payment-tab .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Görsel kart + form yan yana ---- */
.card-entry {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 4px;
}
.card-entry-visual { position: sticky; top: 110px; }
.card-entry-fields { min-width: 0; }
.card-entry-fields .form-row { margin-bottom: 0; }
.card-entry-fields .form-row + .form-row { margin-top: 14px; }
@media (max-width: 768px) {
  .card-entry { grid-template-columns: 1fr; gap: 18px; }
  .card-entry-visual { position: static; }
}

/* ---- Görsel kart önizlemesi ---- */
.card-preview {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1.586 / 1;
  margin: 0;
  padding: 20px 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2b2b2f 0%, #4a4a52 55%, #6c5b4a 100%);
  box-shadow: 0 14px 34px -16px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  font-family: var(--mono);
}
.card-preview::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.card-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-chip {
  width: 38px; height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #e8d9a8, #c9a861);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.card-brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .95;
}
.card-number {
  font-size: 19px;
  letter-spacing: .14em;
  white-space: nowrap;
}
.card-preview-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.card-field { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.card-cap {
  font-size: 8.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .65;
}
.card-val {
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Taksit seçenekleri ---- */
.installments {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 16px 18px 18px;
}
.installments-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.inst-title { font-size: 14px; font-weight: 500; }
.inst-note { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.inst-note strong { color: var(--ink, #1a1a1a); }
.inst-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inst-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.inst-opt:hover { border-color: var(--muted); }
.inst-opt.sel { border-color: var(--accent); background: var(--soft-2); }
.inst-opt input { accent-color: var(--accent); flex: 0 0 auto; }
.inst-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.inst-n { font-size: 13.5px; font-weight: 500; }
.inst-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.inst-per {
  margin-left: auto;
  text-align: right;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.inst-per strong { color: var(--ink, #1a1a1a); font-size: 13px; }
.inst-disclaimer {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
}

.order-summary {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-self: start;
}
.order-summary h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.order-line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.order-line .img {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 6px;
  aspect-ratio: 1;
}
.order-line .n {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.order-line .s {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.order-line .p {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
}
.order-totals { padding: 18px 24px; }
.order-totals .summary-row { font-size: 13px; }
.order-totals .summary-row.total { font-size: 20px; }

/* ============ SİPARİŞ TAMAMLANDI ============ */
.thanks-hero {
  padding: 100px var(--side) 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.thanks-hero .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.thanks-hero h1 {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.thanks-hero h1 em { color: var(--accent); font-style: italic; }
.thanks-hero p.lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.order-card {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.order-card-head {
  padding: 24px 32px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-card-head .order-id {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.order-card-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px;
  gap: 24px;
  position: relative;
}
.timeline::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.tl-step { text-align: center; position: relative; z-index: 1; }
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  margin: 0 auto 16px;
}
.tl-step.done .tl-dot { background: var(--accent); border-color: var(--accent); }
.tl-step.cur .tl-dot {
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(31,58,95,0.15);
}
.tl-step .t {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.tl-step .d {
  font-size: 12px;
  color: var(--muted);
}

/* ============ KVKK / GIZLILIK / SSS ============ */
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  padding: 56px var(--side) 100px;
}
.legal-toc {
  position: sticky;
  top: 110px;
  align-self: start;
}
.legal-toc h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid var(--line);
}
.legal-toc li a {
  display: block;
  padding: 4px 14px;
  font-size: 13px;
  color: var(--muted);
}
.legal-toc li a:hover, .legal-toc li a.active {
  color: var(--accent);
  border-left: 1px solid var(--accent);
  margin-left: -1px;
}
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  scroll-margin-top: 110px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
}
.legal-content ul li { margin-bottom: 6px; }
.legal-content .updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ============ PDP YORUMLAR ============ */
.reviews-section {
  padding: 80px var(--side);
  border-top: 1px solid var(--line);
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: start;
}
.rating-summary .num {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.rating-summary .num em { color: var(--accent); font-style: normal; }
.rating-summary .stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
  margin: 14px 0 6px;
}
.rating-summary .of {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-bar {
  display: grid;
  grid-template-columns: 30px 1fr 50px;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.rating-bar .track {
  height: 6px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.rating-bar .fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
}

.review-list {
  display: flex;
  flex-direction: column;
}
.review-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
}
.review-item .who-block .stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-item .who-block .who {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}
.review-item .who-block .when {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.review-item .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 12px;
}
.review-item .body h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.review-item .body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.review-item .body .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 18px;
}

/* SSS / Q&A */
.qa-list {
  border-top: 1px solid var(--line);
}
.qa-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
}
.qa-item .q-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.qa-item .a-tag { color: var(--muted); }
.qa-item .text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}
.qa-item.q .text { font-weight: 500; }
.qa-item.a { border-bottom: 1px solid var(--line); }
.qa-item.a .text { color: var(--muted); }
.qa-item .who-line {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* küçük başarı/hata kutuları */
.callout {
  padding: 16px 20px;
  border-left: 2px solid var(--accent);
  background: var(--soft-2);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  margin: 18px 0;
}
.callout strong { font-weight: 600; }


/* ============ MINI CART DRAWER ============ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(21, 23, 28, 0.32);
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 90;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 440px;
  max-width: 100vw;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px -20px rgba(21,23,28,0.18);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 100;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 {
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; margin: 0;
}
.drawer-head .count-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 10px;
}
.drawer-close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.drawer-close:hover { background: var(--soft); color: var(--ink); }

.drawer-progress {
  padding: 14px 28px;
  background: var(--soft-2);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer-progress .bar {
  height: 3px; background: var(--line); border-radius: 2px; overflow: hidden;
}
.drawer-progress .bar > span {
  display: block; height: 100%; background: var(--accent); width: 72%;
}

.drawer-items {
  flex: 1; overflow-y: auto;
  padding: 8px 28px;
}
.dr-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.dr-item:last-child { border-bottom: none; }
.dr-item .ph {
  width: 72px; height: 88px;
}
.dr-item .ph .lbl { font-size: 9px; letter-spacing: 0.16em; }
.dr-info .name {
  font-family: var(--display);
  font-size: 14px; font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.dr-info .opt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.dr-info .qty-row {
  display: flex; align-items: center; gap: 10px;
}
.dr-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.dr-qty button {
  width: 24px; height: 24px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 14px;
}
.dr-qty button:hover { color: var(--ink); }
.dr-qty .v { font-size: 12px; min-width: 20px; text-align: center; }
.dr-info .remove {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.dr-info .remove:hover { color: var(--accent); }
.dr-price {
  font-family: var(--display);
  font-size: 14px; font-weight: 500;
  text-align: right;
}

.drawer-empty {
  padding: 60px 28px;
  text-align: center;
  color: var(--muted);
}
.drawer-empty .ico {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.drawer-empty p { font-size: 14px; margin: 0 0 18px; }

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 22px 28px 26px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 14px;
}
.drawer-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--muted);
}
.drawer-row.total {
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  color: var(--ink);
}
.drawer-row.total .lbl { font-size: 13px; font-weight: 400; color: var(--muted); }
.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.drawer-actions .btn { padding: 14px 16px; font-size: 13px; }
.drawer-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 520px) {
  .cart-drawer { width: 100vw; }
  .drawer-head, .drawer-items, .drawer-foot { padding-left: 22px; padding-right: 22px; }
}


/* ============ HERO v2 ============ */
.hero2 { background: var(--paper); border-bottom: 1px solid var(--line); }
.hero2-top {
  max-width: 980px;
  margin: 0 auto;
  padding: 88px 48px 64px;
  text-align: center;
}
.hero2-top .eyebrow.with-line { justify-content: center; margin-bottom: 28px; }
.hero2-top h1 {
  font-family: var(--display);
  font-size: clamp(40px, 7.4vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.hero2-top h1 em { color: var(--accent); font-weight: 500; }
.hero2-top .lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
.hero2-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.hero2-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
}
.hero2-meta > div {
  display: flex; flex-direction: column; gap: 4px;
  text-align: center;
}
.hero2-meta .v {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero2-meta .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero2-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
/* Öne çıkan ürün sayısına göre kolon: 4'ten az ürün varsa boş kolon kalmasın */
.hero2-strip[data-tiles="1"] { grid-template-columns: 1fr; }
.hero2-strip[data-tiles="2"] { grid-template-columns: repeat(2, 1fr); }
.hero2-strip[data-tiles="3"] { grid-template-columns: repeat(3, 1fr); }
.hero2-tile {
  position: relative;
  width: 100%; /* grid track'i tam doldur — aspect-ratio+max-height genişliği daraltmasın */
  aspect-ratio: 4/5;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.hero2-tile .ph {
  position: absolute; inset: 0;
  width: auto; height: auto; aspect-ratio: auto; /* .ph.tall oranını iptal et, tile'ı tam doldur */
  display: flex; align-items: center; justify-content: center;
}
.hero2-tile .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero2-tile-meta {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: baseline; gap: 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  padding: 12px 16px;
  backdrop-filter: blur(4px);
}
/* Uzun ürün adı fiyatı alt satıra itmesin: ad tek satır + … , fiyat sabit */
.hero2-tile-meta > span:first-child {
  min-width: 0; flex: 1 1 auto;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hero2-tile-meta > span:last-child { flex: 0 0 auto; white-space: nowrap; }
.hero2-tile:hover { transform: translateY(-2px); }

/* ============ MOBILE NAV (hamburger) ============ */
.menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 10px;
  color: var(--ink);
  align-items: center;
  margin-left: auto;
}
.menu-btn svg { display: block; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-head .logo-img { height: 36px; }
.mobile-nav-close {
  background: none; border: none; cursor: pointer;
  padding: 10px; color: var(--ink);
}
.mobile-nav-list {
  display: flex; flex-direction: column;
  padding: 24px;
}
.mobile-nav-list a {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-list a.active { color: var(--accent); }
.mobile-nav-foot {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-nav-foot a {
  font-size: 14px;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
}
.mobile-nav-foot a strong { color: var(--ink); font-weight: 500; }

/* ============ RESPONSIVE — 1024 ============ */
@media (max-width: 1024px) {
  .topbar { padding: 8px 24px; font-size: 10px; }
  .header-inner { padding: 18px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 72px; }
  .hero-trust, .hero-tag { display: none; }
  .hero h1 { font-size: clamp(40px, 8vw, 72px); }
  .hero2-top { padding: 64px 24px 48px; }
  .hero2-strip, .hero2-strip[data-tiles] { grid-template-columns: repeat(2, 1fr); }
  .hero2-strip[data-tiles="1"] { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .section { padding-left: 24px !important; padding-right: 24px !important; }
  .section-head { padding-left: 0 !important; padding-right: 0 !important; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-head { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 24px 40px; }
  .pdp { grid-template-columns: 1fr; gap: 40px; padding: 32px 24px 64px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .collection-titlerow { grid-template-columns: 1fr; gap: 24px; }
  .testimonials { grid-template-columns: 1fr; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .auth-wrap { grid-template-columns: 1fr; min-height: auto; }
  .cart-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px 64px; }
  .checkout-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px 64px; }
  .legal-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px 64px; }
  .reviews-head { grid-template-columns: 1fr; gap: 32px; }
  .timeline { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}

/* ============ RESPONSIVE — 768 (tablet → mobile) ============ */
@media (max-width: 768px) {
  .topbar { display: none; }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 14px 18px;
    gap: 12px;
  }
  .header-actions { display: none; }
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .logo-img { height: 38px; }

  /* Hero v1 (eski) */
  .hero-inner { padding: 40px 18px 56px; gap: 32px; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero p.lead { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-meta-row { gap: 20px; flex-wrap: wrap; }
  .hero-meta { flex: 1 1 calc(50% - 10px); }
  .hero-meta .v { font-size: 22px; }

  /* Hero v2 */
  .hero2-top { padding: 48px 20px 40px; }
  .hero2-top .lead { font-size: 15px; margin-bottom: 24px; }
  .hero2-cta { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; margin-bottom: 40px; }
  .hero2-cta .btn { justify-content: center; }
  .hero2-meta { grid-template-columns: 1fr 1fr; gap: 18px 12px; padding-top: 24px; }
  .hero2-meta .v { font-size: 20px; }
  .hero2-strip, .hero2-strip[data-tiles] { grid-template-columns: 1fr 1fr; }
  .hero2-strip[data-tiles="1"] { grid-template-columns: 1fr; }
  .hero2-tile { aspect-ratio: 1/1; padding: 0; }
  .hero2-tile-meta { font-size: 12px; padding: 9px 12px; }

  .hero-marquee { padding: 14px 18px; font-size: 10px; gap: 10px 18px; flex-wrap: wrap; justify-content: center; }

  /* Products grid */
  .products { grid-template-columns: 1fr 1fr; gap: 16px; }
  .card-meta { padding: 12px 0; }
  .card-name { font-size: 14px; }
  .card-price { font-size: 14px; }
  .card-quick { display: none; }

  /* Section heads */
  .section { padding-top: 56px !important; padding-bottom: 56px !important; padding-left: 18px !important; padding-right: 18px !important; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .section-head h2, h2 { font-size: clamp(26px, 5.6vw, 33px) !important; }
  .eyebrow { font-size: 10px; }

  /* Process */
  .process { grid-template-columns: 1fr; }
  .process > div { border-right: none !important; }
  .process-head { padding: 40px 18px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 0 18px 40px;
  }
  .footer-brand { grid-column: 1 / -1; padding-right: 0 !important; }
  .newsletter { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 14px;
    align-items: flex-start !important;
    padding: 24px 18px !important;
    text-align: left;
  }

  /* Buttons */
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn-lg { padding: 14px 22px; font-size: 14px; }

  /* PDP */
  .pdp { padding: 24px 18px 48px; gap: 28px; }
  .pdp-thumbs { grid-template-columns: repeat(4, 1fr); }
  .pdp-info h1 { font-size: clamp(28px, 7vw, 38px); }
  .specs .row { grid-template-columns: 110px 1fr; padding: 10px 14px; font-size: 13px; }

  /* Breadcrumb: mobilde uzun ürün adı satırı taşırıyor — son adımı (ürün adı, zaten H1'de var) gizle */
  .crumbs { padding: 12px 18px; gap: 6px; letter-spacing: 0.10em; }
  .crumbs .here,
  .crumbs svg:last-of-type { display: none; }

  /* Sepete ekle: mobilde sayfa kayınca alta sabitlenen satın-alma barı */
  #add-to-cart-form .add-row {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    margin: 0;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 22px rgba(0,0,0,0.10);
  }
  #add-to-cart-form .add-row .btn-block { flex: 1; }
  /* sabit bar içeriği örtmesin */
  .pdp { padding-bottom: 92px; }

  /* Atölye */
  .about-hero-grid { padding: 40px 18px; gap: 28px; }

  /* Koleksiyon */
  .collection-titlerow { padding: 32px 18px !important; }

  /* İletişim */
  .contact-grid { padding: 40px 18px; gap: 28px; }
  .form-row.two, .form-row.three { grid-template-columns: 1fr; }

  /* Auth */
  .auth-wrap { min-height: auto; }
  .auth-form { padding: 40px 24px !important; }
  .auth-aside { padding: 32px 24px !important; }

  /* Sepet */
  .cart-wrap { padding: 24px 18px 48px; }
  .cart-item {
    grid-template-columns: 84px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 14px;
    padding: 18px 0;
  }
  .cart-item .ph { width: 84px !important; height: 100px !important; }
  .cart-item-price { grid-column: 1 / -1; text-align: right; }

  /* Checkout */
  .checkout-grid { padding: 24px 18px 48px; }
  .payment-tabs { grid-template-columns: 1fr; }

  /* Legal */
  .legal-wrap { padding: 24px 18px 48px; }
  .legal-nav { position: static !important; margin-bottom: 24px; }

  /* Order */
  .order-line { grid-template-columns: 48px 1fr auto; padding: 14px 18px; gap: 12px; }
  .timeline { grid-template-columns: 1fr; padding: 20px; gap: 18px; }

  /* Reviews */
  .reviews-head { gap: 24px; margin-bottom: 32px; }
  .review-item { grid-template-columns: 1fr !important; gap: 16px; }

  /* Q&A */
  .qa-item { grid-template-columns: 60px 1fr !important; gap: 14px; padding: 16px 0 !important; }

  /* IG */
  .ig-strip { grid-template-columns: repeat(2, 1fr); }

  /* Drawer mobil */
  .cart-drawer { width: 100vw; max-width: 100vw; }
  .drawer-head, .drawer-items { padding-left: 18px; padding-right: 18px; }
  .drawer-foot { padding: 18px 18px 22px; }
  .drawer-actions { grid-template-columns: 1fr; }
}

/* ============ RESPONSIVE — 480 (small phones) ============ */
@media (max-width: 480px) {
  .logo-img { height: 34px; }
  .hero2-top h1 { font-size: clamp(26px, 8.4vw, 34px); }
  .hero h1 { font-size: clamp(26px, 8.4vw, 36px); }
  h2 { font-size: clamp(22px, 6.4vw, 28px) !important; }
  .footer-credit { font-size: 12px; }
  .hero2-meta { grid-template-columns: 1fr 1fr; }
  .hero2-tile { padding: 0; }
  .products { grid-template-columns: 1fr; }
}

/* === nesaconcept: gerçek ürün görseli olan placeholder kutuları === */
/* Dekoratif parlama (::before) ve yumurta deseni (::after) gerçek görselde gizlenir */
.ph.has-img::before,
.ph.has-img::after,
.ph:has(img)::before,
.ph:has(img)::after { content: none !important; display: none !important; background: none !important; }
/* Görsel, oranı .ph'den (örn. square = 1:1) alan kutuyu orantılı doldurur */
.ph.has-img,
.ph:has(img) { background: var(--paper-2); }
.ph > img,
.ph .card-photo { display: block; width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

/* Gerçek ürün görseli olan kartlarda çerçeve boşluğunu kaldır — görsel kutuyu kenardan kenara doldurur */
.card-img-wrap:has(img) { padding: 0; }

/* ===== Görsel yükleme: skeleton (shimmer) + yumuşak fade-in =====
   Markup'a dokunmadan app.js tarafından sınıflar eklenir.
   .nc-skel  → yüklenirken wrapper'da kayan shimmer arkaplan
   .nc-fade  → görsel başlangıçta saydam, yüklenince yumuşak belirir */
@keyframes nc-shimmer {
  0%   { background-position: 180% 0; }
  100% { background-position: -180% 0; }
}
.nc-skel {
  background-image: linear-gradient(100deg, var(--soft-2) 25%, var(--soft) 45%, var(--soft-2) 65%) !important;
  background-size: 220% 100% !important;
  background-repeat: no-repeat !important;
  animation: nc-shimmer 1.25s ease-in-out infinite;
}
.nc-fade { opacity: 0; transition: opacity .55s ease; }
.nc-fade.nc-loaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .nc-skel { animation: none; }
  .nc-fade { transition: none; }
}

/* Hover'da ikinci görsele hızlı fade geçişi */
.ph.has-hover { position: relative; }
.ph.has-hover .card-photo-2 {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover .ph.has-hover .card-photo-2 { opacity: 1; }

/* === nesaconcept: modern ürün galerisi (editöryel grid + lightbox) === */
.pdp-info { position: sticky; top: 96px; align-self: start; }

/* Masonry: her görsel kendi doğal oranında, kırpılmadan; sıkı boşluk */
.gallery-grid {
  column-count: 2;
  column-gap: 8px;
}
.gallery-cell {
  position: relative; overflow: hidden; margin: 0 0 8px; padding: 0;
  display: block; width: 100%;
  break-inside: avoid; -webkit-column-break-inside: avoid;
  border: 1px solid var(--line);
  background: var(--paper-2);
  cursor: zoom-in;
}
/* Editöryel oran sınıfları artık görseli kırpmıyor — doğal oran korunur */
.gallery-cell.g-wide,
.gallery-cell.g-tall,
.gallery-cell.g-sq { aspect-ratio: auto; }
.gallery-cell img {
  width: 100%; height: auto; display: block; object-fit: contain;
  transition: transform .55s cubic-bezier(.2,.6,.2,1);
}
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-zoom {
  position: absolute; left: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px; border-radius: 2px;
  background: rgba(21,23,28,0.80); color: #fff;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.gallery-cell:hover .gallery-zoom { opacity: 1; transform: translateY(0); }
@media (max-width: 600px) { .gallery-grid { column-count: 2; column-gap: 6px; } .gallery-cell { margin-bottom: 6px; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(15,16,20,0.93); padding: 40px; }
.lightbox.open { display: flex; animation: lb-fade .18s ease both; }
.lightbox.open .lb-stage img { animation: lb-pop .22s cubic-bezier(.2,.7,.3,1) both; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-pop  { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .lightbox.open, .lightbox.open .lb-stage img { animation: none; }
}
.lb-stage { margin: 0; display: flex; position: relative; min-width: 60px; min-height: 60px; }
.lb-stage img { max-width: 88vw; max-height: 86vh; object-fit: contain; display: block;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45); }
/* Lightbox görseli yüklenirken: görseli sakla + dönen yükleme göstergesi */
.lb-stage.is-loading img { opacity: 0; }
.lb-stage.is-loading::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.22);
  border-top-color: rgba(255,255,255,0.85);
  animation: lb-spin .7s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .lb-stage.is-loading::after { animation: none; }
}
.lb-close, .lb-nav {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-close { position: absolute; top: 22px; right: 26px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.82); font-family: var(--mono); font-size: 12px; letter-spacing: .14em; }

@media (max-width: 860px) {
  .pdp-info { position: static; }
  .lightbox { padding: 14px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 14px; right: 14px; }
}

/* Kart hover'ında ikinci ürün görseli (varsa) üste biner ve belirir */
.ph.has-img { position: relative; }
.ph .card-photo-2 { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; z-index: 2; }
.card:hover .ph.has-hover .card-photo-2 { opacity: 1; }

/* ===== MONTAJ HİZMETİ (PDP) ===== */
.montaj-box { margin-top: 14px; }
.montaj-toggle {
  width: 100%; display: flex; align-items: center; gap: 12px; text-align: left;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 2px;
  padding: 14px 16px; cursor: pointer; transition: border-color .2s, background .2s;
  font-family: inherit; color: var(--ink);
}
.montaj-toggle:hover { border-color: var(--accent); }
.montaj-toggle.is-active { border-color: var(--accent); background: var(--soft-2); }
.montaj-toggle .mt-ico { flex: 0 0 auto; display: inline-flex; align-items: center; }
.montaj-toggle .mt-ico img { display: block; width: 22px; height: 22px; object-fit: contain; }
.montaj-toggle .mt-txt { display: flex; flex-direction: column; gap: 2px; flex: 1 1 auto; }
.montaj-toggle .mt-txt strong { font-family: var(--display); font-weight: 500; font-size: 15px; }
.montaj-toggle .mt-txt small { color: var(--muted); font-size: 12.5px; line-height: 1.35; }
.montaj-toggle .mt-arrow { flex: 0 0 auto; color: var(--muted); }
.montaj-selected {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 10px; padding: 12px 14px; border-radius: 2px;
  background: var(--soft-2); border: 1px solid var(--accent);
  font-size: 13.5px; line-height: 1.45; color: var(--ink);
}
.montaj-selected[hidden] { display: none; }
.montaj-selected .ms-check { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.montaj-selected .ms-text { flex: 1 1 180px; }
.montaj-selected .ms-edit { background: none; border: none; color: var(--accent); text-decoration: underline; cursor: pointer; font-size: 12.5px; font-family: var(--mono); }
.montaj-selected .ms-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 20px; line-height: 1; padding: 0 4px; }
.montaj-selected .ms-remove:hover { color: var(--ink); }

/* Montaj modal */
.montaj-modal { position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center; padding: 24px; }
.montaj-modal.open { display: flex; animation: lb-fade .18s ease both; }
.montaj-modal .mm-overlay { position: absolute; inset: 0; background: rgba(15,16,20,0.55); }
.montaj-modal .mm-box {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: 32px; box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: lb-pop .22s cubic-bezier(.2,.7,.3,1) both;
}
.montaj-modal .mm-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; color: var(--muted); padding: 4px; }
.montaj-modal .mm-close:hover { color: var(--ink); }
.montaj-modal h3 { font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; margin: 10px 0 10px; }
.montaj-modal .mm-lead { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 0 22px; }
.montaj-modal .mm-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.montaj-modal .mm-fields label { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.montaj-modal select {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  padding: 11px 12px; border: 1px solid var(--line); border-radius: 2px; background: var(--paper);
  text-transform: none; letter-spacing: 0; cursor: pointer;
}
.montaj-modal select:focus { outline: none; border-color: var(--accent); }
.montaj-modal select:disabled { background: var(--paper-2); color: var(--muted); cursor: not-allowed; }
.montaj-modal .mm-error { margin-top: 14px; color: #b3261e; font-size: 13px; }
.montaj-modal .mm-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 26px; }
@media (max-width: 480px) {
  .montaj-modal .mm-box { padding: 24px 20px; }
  .montaj-modal .mm-fields { grid-template-columns: 1fr; }
  .montaj-modal .mm-actions { flex-direction: column-reverse; }
  .montaj-modal .mm-actions .btn { width: 100%; justify-content: center; }
}

/* ===== PDP ürün açıklama bölümü ===== */
.pdp-detail { border-top: 1px solid var(--line); }
.pdp-detail-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 64px; align-items: start; }
.pdp-detail-main .eyebrow, .pdp-detail-features .eyebrow { display: block; margin-bottom: 14px; }
.pdp-detail-main h2 { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 22px; line-height: 1.1; }
.pdp-richtext { color: var(--ink); font-size: 16px; line-height: 1.75; }
.pdp-richtext p { margin: 0 0 16px; color: #2c2f36; }
.pdp-richtext h2, .pdp-richtext h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; margin: 28px 0 12px; color: var(--ink); }
.pdp-richtext h2 { font-size: 22px; } .pdp-richtext h3 { font-size: 18px; }
.pdp-richtext ul, .pdp-richtext ol { margin: 0 0 16px; padding-left: 20px; color: #2c2f36; }
.pdp-richtext li { margin-bottom: 8px; }
.pdp-richtext a { color: var(--accent); text-decoration: underline; }
.pdp-detail-features { position: sticky; top: 96px; background: var(--paper-2); border: 1px solid var(--line); padding: 28px; }
.pdp-detail-features ul { list-style: none; margin: 0; padding: 0; }
.pdp-detail-features li { position: relative; padding: 0 0 14px 26px; margin-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.pdp-detail-features li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pdp-detail-features li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* İlgili blog yazıları (Öne Çıkanlar boşken) */
.pdp-related .pdp-blog-list { list-style: none; margin: 0; padding: 0; }
.pdp-related .pdp-blog-list li { padding: 0 0 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.pdp-related .pdp-blog-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pdp-related .pdp-blog-list li::before { content: none; }
.pdp-related .pdp-blog-list a { display: flex; gap: 12px; align-items: center; text-decoration: none; color: var(--ink); }
.pdp-related .pdp-blog-thumb { flex: none; width: 56px; height: 56px; border-radius: 8px; overflow: hidden; background: var(--paper); }
.pdp-related .pdp-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-related .pdp-blog-ttl { font-size: 13.5px; line-height: 1.4; font-weight: 500; }
.pdp-related .pdp-blog-list a:hover .pdp-blog-ttl { color: var(--accent); }

/* ===== BLOG / YAŞAM ===== */
.blog-hero { padding: 80px var(--side) 40px; border-bottom: 1px solid var(--line); }
.blog-hero .eyebrow { display: block; margin-bottom: 16px; }
.blog-hero h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 60px); font-weight: 500; letter-spacing: -0.03em; margin: 0 0 16px; line-height: 1.04; }
.blog-hero p { color: var(--muted); font-size: 17px; max-width: 620px; margin: 0; line-height: 1.6; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; padding: 56px var(--side) 100px; }
.blog-card { display: flex; flex-direction: column; cursor: pointer; }
.blog-card-img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); margin-bottom: 16px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.6,.2,1); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card .cat { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.25; margin: 0 0 10px; color: var(--ink); transition: color .18s; }
.blog-card:hover h3 { color: var(--accent); }
.blog-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 12px; }
.blog-card .meta { margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }

/* Site container'ı ile hizalı editöryel makale düzeni */
.article-wrap { max-width: var(--maxw); margin: 0 auto; padding: 56px var(--side) 80px; }
.article-head, .article-body, .article-tags, .article-cta { max-width: 880px; margin-left: auto; margin-right: auto; }
.article-cover { max-width: 1120px; margin-left: auto; margin-right: auto; }
.article-head { margin-bottom: 36px; }
.article-head .cat { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.article-head h1 { font-family: var(--display); font-size: clamp(30px, 4.4vw, 50px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.08; margin: 14px 0 16px; }
.article-head .article-meta { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.article-cover { aspect-ratio: 16/9; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); margin-bottom: 40px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 17px; line-height: 1.8; color: #2c2f36; }
.article-body p { margin: 0 0 22px; }
.article-body h2 { font-family: var(--display); font-size: clamp(24px, 3vw, 30px); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); margin: 40px 0 16px; line-height: 1.15; }
.article-body h3 { font-family: var(--display); font-size: 20px; font-weight: 500; color: var(--ink); margin: 30px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body .blog-fig { margin: 32px 0; }
.article-body .blog-fig img { width: 100%; height: auto; display: block; border: 1px solid var(--line); background: var(--paper-2); }
.article-body .blog-fig figcaption { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: var(--muted); text-align: center; margin-top: 10px; text-transform: uppercase; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.article-tags a { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 6px 12px; border-radius: 2px; }
.article-tags a:hover { color: var(--accent); border-color: var(--accent); }
.article-cta { margin-top: 44px; padding: 32px; background: var(--paper-2); border: 1px solid var(--line); text-align: center; }
.article-cta h3 { font-family: var(--display); font-size: 24px; font-weight: 500; margin: 0 0 10px; }
.article-cta p { color: var(--muted); margin: 0 0 18px; }
.article-related { padding: 0 var(--side) 90px; }
.article-related .section-head { margin-bottom: 32px; }

@media (max-width: 900px) {
  .pdp-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-detail-features { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}
