/* ==========================================================================
   EMSE DRAPES — Tüm stiller
   1. Tokenlar          8. Ürün kartı / ızgara     15. Footer
   2. Reset & taban     9. Boş durum (empty)       16. Koleksiyon sayfası
   3. Tipografi        10. Editoryal hikâye        17. Ürün detay
   4. Butonlar         11. Hizmet şeridi           18. Sepet
   5. Header           12. Yorumlar                19. Toast
   6. Hero             13. Bülten                  20. Responsive
   7. Koleksiyonlar    14. Bölüm başlıkları
   ========================================================================== */

/* 1. TOKENLAR ============================================================= */
:root {
  --ink: #1f211d;
  --moss: #414a35;
  --brass: #a98342;
  --cream: #f5f0e8;
  --paper: #fbf9f4;
  --sand: #ece4d6;
  --text: #2c2e28;
  --muted: #8b877c;
  --line: #ded6c7;

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, 'Palatino Linotype', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1360px;
  --gut: 40px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. RESET & TABAN ======================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
select {
  font: inherit;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  display: block;
  flex: none;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.noscript {
  background: var(--brass);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 0.86rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 110px 0;
}

.section--tight {
  padding: 78px 0;
}

.section--sand {
  background: var(--sand);
}

.section--ink {
  background: var(--ink);
  color: var(--cream);
}

.hr-thin {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* 3. TİPOGRAFİ ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  margin: 0 0 1.1em;
}

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

em,
.italic {
  font-style: italic;
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}

.eyebrow--light {
  color: var(--sand);
  opacity: 0.85;
}

.lede {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 52ch;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 62px;
}

.section-head p {
  color: var(--muted);
  margin-top: 18px;
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
  max-width: none;
  margin-bottom: 52px;
}

.section-head--row .eyebrow {
  margin-bottom: 12px;
}

.link-more {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  transition: color 0.25s var(--ease);
}

.link-more:hover {
  color: var(--brass);
}

/* 4. BUTONLAR ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 38px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--primary:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
}

.btn--brass {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}

.btn--brass:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* 5. HEADER =============================================================== */
.announce {
  background: var(--ink);
  color: var(--sand);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 20px;
}

.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.hdr__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 12px var(--gut);
  max-width: var(--wrap);
  margin: 0 auto;
}

.hdr__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hdr__nav a {
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.hdr__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}

.hdr__nav a:hover {
  color: var(--brass);
}

.hdr__nav a:hover::after,
.hdr__nav a.is-active::after {
  width: 100%;
}

.brand {
  text-align: center;
  display: block;
}

.brand__name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.brand__tag {
  display: block;
  margin-top: 7px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.hdr__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.icon-btn:hover {
  color: var(--brass);
  background: rgba(169, 131, 66, 0.08);
}

/* Dil değiştirici */
.langsw {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-right: 6px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.langsw__btn {
  padding: 7px 3px;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.langsw__btn:hover {
  color: var(--ink);
}

.langsw__btn.is-active {
  color: var(--brass);
}

.langsw__sep {
  color: var(--line);
}

.mnav__foot .langsw {
  margin: 0;
  padding: 0;
  border: 0;
  gap: 7px;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.cart-badge {
  position: absolute;
  top: 5px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--brass);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.cart-badge.is-on {
  display: inline-flex;
}

.hdr__burger {
  display: none;
}

/* Arama paneli */
.search-panel {
  overflow: hidden;
  max-height: 0;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: max-height 0.42s var(--ease), border-color 0.42s var(--ease);
}

.search-panel.is-open {
  max-height: 190px;
  border-bottom-color: var(--line);
}

.search-panel__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px var(--gut) 38px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-family: var(--serif);
  font-size: 1.5rem;
  padding: 4px 0;
}

.search-form input::placeholder {
  color: var(--muted);
  font-style: italic;
}

.search-form input:focus {
  outline: none;
}

.search-hint {
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Mobil menü */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0.45s var(--ease);
}

.mnav.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.mnav__body {
  flex: 1;
  overflow-y: auto;
  padding: 40px 24px;
}

.mnav__body a {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--ink);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.mnav__foot {
  padding: 26px 24px 40px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 6. HERO ================================================================= */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background-color: var(--moss);
  background-image: linear-gradient(125deg, #2b3223 0%, #414a35 46%, #566041 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero.has-image {
  background-image: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.hero__bg.is-on {
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 24, 16, 0.78) 0%, rgba(20, 24, 16, 0.45) 52%, rgba(20, 24, 16, 0.15) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 130px var(--gut);
}

.hero__panel {
  max-width: 620px;
  color: #fff;
}

.hero__panel h1 {
  color: #fff;
  margin-bottom: 26px;
}

.hero__panel h1 em {
  color: #e2c893;
}

.hero__panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* 7. KOLEKSİYONLAR ======================================================== */
.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.1;
  background-color: var(--moss);
  background-image: linear-gradient(160deg, #4b5540 0%, #333c28 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.col-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
}

.col-card__img.is-on {
  opacity: 1;
}

.col-card:hover .col-card__img.is-on {
  transform: scale(1.05);
}

.col-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 19, 13, 0.85) 0%, rgba(16, 19, 13, 0.28) 45%, rgba(16, 19, 13, 0.06) 100%);
  transition: background 0.4s var(--ease);
}

.col-card:hover::after {
  background: linear-gradient(to top, rgba(16, 19, 13, 0.9) 0%, rgba(16, 19, 13, 0.42) 55%, rgba(16, 19, 13, 0.14) 100%);
}

.col-card__body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 32px 32px;
  color: #fff;
}

.col-card__idx {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.62);
}

.col-card__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1.15;
  margin: 10px 0 14px;
}

.col-card__go {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e2c893;
}

.col-card__go svg {
  transition: transform 0.3s var(--ease);
}

.col-card:hover .col-card__go svg {
  transform: translateX(5px);
}

/* 8. ÜRÜN KARTI / IZGARA ================================================== */
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 26px;
}

.pcard {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.pcard__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--sand);
  background-image: linear-gradient(150deg, #efe8db 0%, #ded6c7 100%);
  overflow: hidden;
  margin-bottom: 18px;
}

.section--sand .pcard__media {
  background-image: linear-gradient(150deg, #f7f3ea 0%, #e4dbc9 100%);
}

.pcard__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease);
}

.pcard__img.is-on {
  opacity: 1;
}

.pcard:hover .pcard__img.is-on {
  transform: scale(1.045);
}

.pcard__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(65, 74, 53, 0.28);
}

.pcard__ph.is-hidden {
  display: none;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge--sale {
  background: var(--brass);
  color: #fff;
}

.badge--right {
  left: auto;
  right: 14px;
}

.pcard__quick {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 14px;
  background: rgba(31, 33, 29, 0.92);
  color: var(--cream);
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.pcard:hover .pcard__quick {
  transform: translateY(0);
}

.pcard__cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.pcard__title {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 6px;
  transition: color 0.25s var(--ease);
}

.pcard:hover .pcard__title {
  color: var(--brass);
}

.pcard__sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.55;
}

.pcard__foot {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.price--old {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--brass);
}

.stars__num {
  margin-left: 6px;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* 9. BOŞ DURUM ============================================================ */
.empty {
  border: 1px dashed var(--line);
  background: var(--paper);
  padding: 88px 34px;
  text-align: center;
}

.section--sand .empty {
  background: rgba(251, 249, 244, 0.6);
  border-color: #d3c8b3;
}

.empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brass);
  margin-bottom: 26px;
}

.empty h3 {
  margin-bottom: 12px;
}

.empty p {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto;
}

.empty__cta {
  margin-top: 32px;
}

/* 10. EDİTORYAL HİKÂYE ==================================================== */
.story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 0;
}

.story__media {
  position: relative;
  min-height: 620px;
  background-color: var(--moss);
  background-image: linear-gradient(150deg, #4d5742 0%, #2f3725 100%);
  overflow: hidden;
}

.story__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.story__img.is-on {
  opacity: 1;
}

.story__stamp {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  width: 128px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.story__stamp-s {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 6px;
}

.story__body {
  padding: 90px clamp(24px, 6vw, 92px);
  background: var(--paper);
}

.story__body h2 {
  margin-bottom: 26px;
}

.story__body p {
  color: var(--muted);
  max-width: 48ch;
}

.stats {
  display: flex;
  gap: 56px;
  margin-top: 46px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.stat__n {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brass);
}

.stat__t {
  display: block;
  margin-top: 10px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 11. HİZMET ŞERİDİ ======================================================= */
.svcs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.svc {
  padding: 46px 32px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.svc:last-child {
  border-right: 0;
}

.svc__icon {
  display: inline-flex;
  color: var(--brass);
  margin-bottom: 20px;
}

.svc h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}

.svc p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* 12. YORUMLAR ============================================================ */
.quotes {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.quotes__mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--brass);
  opacity: 0.5;
  margin-bottom: 26px;
}

.quotes__stage {
  position: relative;
  min-height: 220px;
}

.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s var(--ease);
}

.quote.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  line-height: 1.45;
  color: var(--cream);
  margin: 0 0 30px;
}

.quote__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

.quote__role {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.55);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.dot {
  width: 34px;
  height: 2px;
  background: rgba(245, 240, 232, 0.28);
  transition: background 0.3s var(--ease);
}

.dot.is-active {
  background: var(--brass);
}

/* 13. BÜLTEN ============================================================== */
.news {
  background: var(--brass);
  color: #fff;
  padding: 96px 0;
}

.news__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.news h2 {
  color: #fff;
}

.news p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 18px;
  max-width: 42ch;
}

.news__form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.news__form input {
  flex: 1;
  min-width: 0;
  padding: 19px 22px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 0.92rem;
}

.news__form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.news__form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.news__form button {
  padding: 19px 34px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
}

.news__form button:hover {
  background: #fff;
  color: var(--ink);
}

.news__note {
  margin-top: 14px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

/* 14. FOOTER ============================================================== */
.ftr {
  background: var(--ink);
  color: rgba(245, 240, 232, 0.72);
  padding: 92px 0 0;
}

.ftr__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 66px;
}

.ftr__brand-name {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  line-height: 1;
}

.ftr__brand-tag {
  display: block;
  margin-top: 9px;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}

.ftr__about {
  margin: 24px 0 26px;
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 34ch;
}

.ftr__social {
  display: flex;
  gap: 10px;
}

.ftr__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  color: var(--cream);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.ftr__social a:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: #fff;
}

.ftr h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 24px;
}

.ftr__list li {
  margin-bottom: 13px;
}

.ftr__list a {
  font-size: 0.88rem;
  transition: color 0.25s var(--ease);
}

.ftr__list a:hover {
  color: var(--brass);
}

.ftr__contact li {
  display: flex;
  gap: 13px;
  margin-bottom: 17px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.ftr__contact svg {
  color: var(--brass);
  margin-top: 4px;
}

.ftr__soon {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.45);
}

.ftr__bar {
  border-top: 1px solid rgba(245, 240, 232, 0.13);
  padding: 26px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.ftr__copy {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.pays {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay {
  padding: 7px 13px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(245, 240, 232, 0.72);
}

/* 15. SAYFA BAŞLIĞI / BREADCRUMB ========================================= */
.phead {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 58px 0 62px;
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.crumbs a:hover {
  color: var(--brass);
}

.crumbs [data-crumb-cat] {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.crumbs span[aria-current] {
  color: var(--ink);
}

.phead h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
}

.phead__sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.crumbs-only {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.crumbs-only .crumbs {
  margin-bottom: 0;
}

/* 16. KOLEKSİYON SAYFASI ================================================= */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 50px;
}

.toolbar__count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.toolbar__sort label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.select {
  position: relative;
}

.select select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 46px 12px 18px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
  border-radius: 0;
}

.select select:focus {
  outline: none;
  border-color: var(--brass);
}

.select__ico {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.chip {
  padding: 11px 21px;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.25s var(--ease);
}

.chip:hover {
  border-color: var(--ink);
}

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* 17. ÜRÜN DETAY ========================================================= */
.pdp {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.pdp__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--sand);
  background-image: linear-gradient(150deg, #efe8db 0%, #ded6c7 100%);
  overflow: hidden;
}

.pdp__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.pdp__img.is-on {
  opacity: 1;
}

.pdp__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(65, 74, 53, 0.3);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pdp__ph.is-hidden {
  display: none;
}

.pdp__info {
  padding-top: 6px;
}

.pdp__cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.pdp__info h1 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  margin-bottom: 14px;
}

.pdp__sub {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.pdp__rate {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.pdp__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

.pdp__price .price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
}

.pdp__price .price--old {
  font-size: 1.05rem;
}

.save {
  padding: 5px 11px;
  background: var(--brass);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pdp__vat {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.pdp__desc {
  color: var(--muted);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.pdp__desc.is-empty {
  font-style: italic;
  opacity: 0.8;
}

.feats {
  margin-bottom: 34px;
}

.feats li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--brass);
}

.buybox {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 30px;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
}

.qty button {
  width: 50px;
  height: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.qty button:hover {
  background: var(--ink);
  color: var(--cream);
}

.qty__val {
  min-width: 52px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.buybox .btn {
  flex: 1;
  min-width: 220px;
}

.meta {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.meta li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 0.86rem;
  color: var(--muted);
}

.meta svg {
  color: var(--brass);
  margin-top: 3px;
}

.meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* 18. SEPET ============================================================== */
.cart {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(34px, 4vw, 60px);
  align-items: start;
}

.cart__rows {
  border-top: 1px solid var(--line);
}

.crow {
  display: grid;
  grid-template-columns: 108px 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.crow__media {
  position: relative;
  width: 108px;
  aspect-ratio: 4 / 5;
  background-color: var(--sand);
  background-image: linear-gradient(150deg, #efe8db 0%, #ded6c7 100%);
  overflow: hidden;
}

.crow__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.crow__img.is-on {
  opacity: 1;
}

.crow__cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.crow__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.25;
}

.crow__title:hover {
  color: var(--brass);
}

.crow__unit {
  margin-top: 7px;
  font-size: 0.8rem;
  color: var(--muted);
}

.crow .qty {
  border-color: var(--line);
}

.crow .qty button {
  width: 40px;
  min-height: 42px;
}

.crow .qty__val {
  min-width: 40px;
  font-size: 0.86rem;
}

.crow__sum {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  min-width: 112px;
  text-align: right;
}

.crow__del {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--muted);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.crow__del:hover {
  color: #a8442f;
  background: rgba(168, 68, 47, 0.08);
}

.cart__foot {
  margin-top: 30px;
}

.summary {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 38px 34px;
  position: sticky;
  top: 124px;
}

.summary h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.srow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.srow span:first-child {
  color: var(--muted);
}

.srow strong {
  font-weight: 700;
  color: var(--ink);
}

.srow--free strong {
  color: var(--moss);
}

.srow--total {
  margin: 24px 0 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.srow--total span:first-child {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.srow--total strong {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
}

.ship-note {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 15px 17px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 22px 0;
}

.ship-note strong {
  color: var(--brass);
}

.ship-bar {
  height: 3px;
  background: var(--line);
  margin-top: 12px;
  overflow: hidden;
}

.ship-bar i {
  display: block;
  height: 100%;
  background: var(--brass);
  transition: width 0.5s var(--ease);
}

.summary__safe {
  margin-top: 22px;
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* 19. TOAST ============================================================== */
.toasts {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 290px;
  max-width: 380px;
  padding: 17px 22px;
  background: var(--ink);
  color: var(--cream);
  border-left: 3px solid var(--brass);
  box-shadow: 0 18px 40px rgba(31, 33, 29, 0.22);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.toast.is-on {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  color: var(--brass);
  margin-top: 3px;
}

.toast__t {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.toast__d {
  margin-top: 5px;
  font-size: 0.84rem;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.5;
}

/* 20. RESPONSIVE ========================================================= */
@media (max-width: 1200px) {
  :root {
    --gut: 30px;
  }

  .hdr__nav {
    gap: 20px;
  }

  .ftr__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
  }

  .ftr__col--contact {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(245, 240, 232, 0.13);
    padding-top: 34px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 82px 0;
  }

  .hdr__inner {
    grid-template-columns: 1fr auto 1fr;
    min-height: 82px;
  }

  .hdr__nav {
    display: none;
  }

  .hdr__burger {
    display: inline-flex;
  }

  .hero {
    min-height: 72vh;
  }

  .hero__inner {
    padding: 100px var(--gut);
  }

  .cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .col-card__body {
    padding: 24px 22px;
  }

  .col-card__name {
    font-size: 1.45rem;
  }

  .pgrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 22px;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story__media {
    min-height: 420px;
  }

  .story__body {
    padding: 62px var(--gut);
  }

  .svcs {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc:nth-child(2n) {
    border-right: 0;
  }

  .svc:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .news__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pdp {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pdp__media {
    max-width: 560px;
  }

  .cart {
    grid-template-columns: 1fr;
  }

  .summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 62px 0;
  }

  .section--tight {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 34px;
  }

  .announce {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 9px 14px;
  }

  .hdr__inner {
    min-height: 70px;
    gap: 8px;
    padding: 10px var(--gut);
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .langsw {
    margin-right: 2px;
    padding-right: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .brand__tag {
    letter-spacing: 0.2em;
    font-size: 0.52rem;
  }

  .search-form input {
    font-size: 1.15rem;
  }

  .search-panel.is-open {
    max-height: 220px;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    padding: 88px var(--gut) 96px;
  }

  .hero__cta {
    gap: 12px;
  }

  .hero__cta .btn {
    flex: 1;
    min-width: 150px;
    padding: 15px 20px;
  }

  .hero__scroll {
    display: none;
  }

  .cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .col-card {
    aspect-ratio: 16 / 10;
  }

  .pgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 14px;
  }

  .pcard__title {
    font-size: 1.08rem;
  }

  .pcard__sub {
    display: none;
  }

  .pcard__quick {
    transform: translateY(0);
    font-size: 0.6rem;
    padding: 11px;
  }

  .stats {
    gap: 30px;
    margin-top: 34px;
  }

  .stat__n {
    font-size: 1.95rem;
  }

  .svcs {
    grid-template-columns: 1fr;
  }

  .svc {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 32px 24px;
  }

  .svc:last-child {
    border-bottom: 0;
  }

  .quotes__mark {
    font-size: 5rem;
  }

  .quotes__stage {
    min-height: 280px;
  }

  .news {
    padding: 62px 0;
  }

  .news__form {
    flex-direction: column;
  }

  .news__form button {
    padding: 17px;
  }

  .ftr {
    padding-top: 62px;
  }

  .ftr__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 46px;
  }

  .ftr__col--contact {
    padding-top: 0;
    border-top: 0;
  }

  .ftr__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .phead {
    padding: 40px 0 44px;
  }

  .toolbar {
    padding: 20px 0;
    margin-bottom: 34px;
  }

  .buybox {
    flex-direction: column;
  }

  .buybox .qty {
    align-self: flex-start;
  }

  .buybox .btn {
    width: 100%;
  }

  .crow {
    grid-template-columns: 84px 1fr auto;
    grid-template-areas:
      'media info del'
      'media qty sum';
    gap: 8px 18px;
    padding: 22px 0;
  }

  .crow__media {
    grid-area: media;
    width: 84px;
    align-self: start;
  }

  .crow__info {
    grid-area: info;
  }

  .crow__qtywrap {
    grid-area: qty;
    margin-top: 10px;
  }

  .crow__sum {
    grid-area: sum;
    align-self: end;
    min-width: 0;
  }

  .crow__del {
    grid-area: del;
    justify-self: end;
  }

  .summary {
    padding: 30px 24px;
  }

  .toasts {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .toast {
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 400px) {
  /* Çok dar ekranda dil seçimi yalnızca mobil menüde kalır. */
  .hdr__actions .langsw {
    display: none;
  }

  .pgrid {
    grid-template-columns: 1fr;
  }

  .pcard__sub {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
