/* =========================================================
   PONÇİK SİTE STİLLERİ
   Ana renkleri ve genel ölçüleri aşağıdaki :root bölümünden
   kolayca değiştirebilirsiniz.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --navy: #1c134d;
  --pink: #ed0078;
  --paper: #fffdfb;
  --soft: #f7f3f6;
  --ink: #211d2d;
  --muted: #746f7c;
  --line: #e8e2e7;
  --green: #1f9d59;
  --white: #ffffff;
  --content-width: 1440px;
  --header-height: 80px;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(28, 19, 77, 0.1);
}

/* Temel ayarlar */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Üst bilgi bandı */
.notice {
  min-height: 34px;
  padding: 8px max(24px, calc((100vw - var(--content-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.notice #rate-status { opacity: 0.68; }

/* Header ve navigasyon */
.site-header {
  width: 100%;
  height: var(--header-height);
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.3vw, 36px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(28, 19, 77, 0.08);
  background: rgba(255, 253, 251, 0.96);
  backdrop-filter: blur(14px);
}
.logo { width: 156px; flex: 0 0 auto; }
.logo img { width: 100%; height: auto; }
.main-nav {
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
}
.main-nav a {
  position: relative;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a::after {
  content: "";
  height: 2px;
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  background: var(--pink);
  transition: right 0.2s ease;
}
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.lang-switch {
  padding: 3px;
  display: flex;
  border-radius: 999px;
  background: var(--soft);
}
.lang-switch button {
  width: 36px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}
.lang-switch button.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 3px 10px rgba(28, 19, 77, 0.1);
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-radius: 5px;
  font-weight: 800;
  cursor: pointer;
}
.header-cta {
  height: 42px;
  padding: 0 17px;
  white-space: nowrap;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

/* Ana banner: masaüstünde dengeli iki sütun */
.hero {
  width: min(100%, 1600px);
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 650px;
  grid-column: 2;
  grid-row: 1;
  position: relative;
  inset: auto;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  inset: auto;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(28, 19, 77, 0.52) 10%, transparent 36%);
}
.hero-copy {
  width: auto;
  margin: 0;
  padding: clamp(54px, 6vw, 96px);
  padding-right: clamp(34px, 4vw, 72px);
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 2;
  color: var(--white);
}
.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #ff64ae; }
.hero h1 {
  max-width: 650px;
  margin: 18px 0 24px;
  font: 600 clamp(52px, 5vw, 82px) / 0.97 "Manrope", sans-serif;
  letter-spacing: -0.065em;
}
.hero p {
  max-width: 530px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}
.button { min-height: 51px; padding: 0 22px; font-size: 11px; }
.button-primary { background: var(--pink); color: var(--white); }
.button-light { background: var(--white); color: var(--navy); }
.button-dark { background: var(--navy); color: var(--white); }

/* Avantajlar */
.benefits {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 27px max(24px, calc((100vw - var(--content-width)) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.benefits > div {
  min-height: 50px;
  padding: 0 clamp(16px, 2vw, 30px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.benefits > div:last-child { border-right: 0; }
.benefits strong { font: 700 13px "Manrope", sans-serif; }
.benefits span { margin-top: 4px; color: var(--muted); font-size: 9px; }

/* Genel bölüm yapısı */
.section {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(74px, 7vw, 108px) clamp(24px, 4vw, 58px);
}
.section-head {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}
.section h2,
.page-hero h1 {
  margin: 10px 0 0;
  color: var(--navy);
  font: 650 clamp(34px, 4vw, 53px) / 1.05 "Manrope", sans-serif;
  letter-spacing: -0.055em;
}
.search {
  width: min(360px, 100%);
  height: 47px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}
.search input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 11px; }
.filters {
  margin-bottom: 31px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filters button {
  height: 36px;
  padding: 0 15px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}
.filters button.active { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* Ürün kartları */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(30px, 3vw, 42px) clamp(12px, 1.5vw, 22px);
}
.product-card { min-width: 0; }
.product-photo {
  aspect-ratio: 0.77;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-photo img { transform: scale(1.035); }
.product-badge {
  padding: 7px 9px;
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 3px;
  background: var(--pink);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-overlay {
  height: 42px;
  position: absolute;
  right: 10px;
  bottom: -52px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  transition: bottom 0.22s ease;
}
.product-card:hover .product-overlay { bottom: 10px; }
.product-meta { padding: 14px 2px 0; }
.product-meta-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.product-meta h3 { margin: 0; font: 700 13px / 1.35 "Manrope", sans-serif; }
.sku { margin-top: 5px; display: block; color: var(--muted); font-size: 9px; }
.price { white-space: nowrap; color: var(--pink); font: 800 14px "Manrope", sans-serif; }
.swatches { margin-top: 11px; display: flex; align-items: center; gap: 5px; }
.swatch { width: 14px; height: 14px; border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px #d4ced3; }
.swatches small { margin-left: 4px; color: var(--muted); font-size: 8px; }
.product-list-add {
  width: 100%;
  min-height: 40px;
  margin-top: 13px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}
.product-list-add:hover { background: var(--navy); color: var(--white); }
.loading, .empty { grid-column: 1 / -1; padding: 70px 20px; text-align: center; color: var(--muted); font-size: 12px; }

/* Toptan / perakende blokları */
.wholesale { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 18px; }
.wholesale-card,
.retail-card {
  min-height: 420px;
  padding: clamp(34px, 4vw, 56px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}
.wholesale-card {
  color: var(--white);
  background: radial-gradient(circle at 100% 0, rgba(237, 0, 120, 0.4), transparent 42%), var(--navy);
}
.retail-card { background: linear-gradient(145deg, #fce5ef, #f5eef4); }
.wholesale h2 { max-width: 590px; color: inherit; }
.wholesale p { max-width: 570px; margin: 20px 0 28px; color: inherit; opacity: 0.72; line-height: 1.7; }

/* Hakkımızda */
.about {
  padding-top: 72px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
  border-top: 1px solid var(--line);
}
.about p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }

/* Mağazalar sayfası */
.page-hero {
  padding: clamp(75px, 8vw, 110px) 24px;
  text-align: center;
  background: linear-gradient(135deg, #fff4f8, #f1edf6);
}
.page-hero p { margin: 18px auto 0; color: var(--muted); }
.stores-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.store-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.store-map { height: 320px; background: var(--soft); }
.store-map iframe { width: 100%; height: 100%; border: 0; }
.store-info { padding: 28px; }
.store-info h2 { margin: 0 0 14px; font-size: 25px; }
.store-info p { margin: 8px 0; color: var(--muted); line-height: 1.55; }
.store-actions { margin-top: 22px; display: flex; gap: 8px; }
.store-actions a { min-height: 42px; padding: 0 15px; display: flex; align-items: center; border-radius: 4px; background: var(--navy); color: var(--white); font-size: 9px; font-weight: 800; }
.store-actions a:last-child { background: var(--soft); color: var(--navy); }
.not-found { grid-column: 1 / -1; padding: 90px 20px; text-align: center; }
.not-found h1 { color: var(--navy); }

/* Ürün detay sayfası */
.detail-wrap { min-height: 670px; }
.back-link { margin-bottom: 28px; display: inline-flex; color: var(--muted); font-size: 10px; font-weight: 700; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: clamp(45px, 6vw, 90px); }
.detail-gallery { min-width: 0; display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
.detail-thumbs { min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.detail-thumb { padding: 0; aspect-ratio: 0.78; overflow: hidden; border: 1px solid transparent; border-radius: 5px; background: var(--soft); cursor: pointer; }
.detail-thumb.active { border-color: var(--pink); }
.detail-thumb img, .detail-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-main { min-width: 0; aspect-ratio: 0.78; overflow: hidden; border-radius: var(--radius); background: var(--soft); }
.detail-copy { min-width: 0; padding: 25px 0; }
.detail-copy h1 { margin: 10px 0 8px; color: var(--navy); font: 650 clamp(31px, 4vw, 52px) / 1.05 "Manrope", sans-serif; letter-spacing: -0.05em; }
.detail-price { margin: 25px 0; color: var(--pink); font: 800 27px "Manrope", sans-serif; }
.detail-divider { height: 1px; margin: 25px 0; background: var(--line); }
.detail-label { margin: 0 0 10px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.color-list { display: flex; flex-wrap: wrap; gap: 8px; }
.color-choice { height: 37px; padding: 0 13px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); cursor: pointer; font-size: 9px; font-weight: 700; }
.color-choice.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.specs { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.specs div { min-width: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
.specs dt { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.specs dd { margin: 5px 0 0; overflow-wrap: anywhere; font-size: 11px; font-weight: 700; }
.detail-actions { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.detail-order { width: 100%; margin: 0; background: var(--green); color: var(--white); }
.detail-list-add { width: 100%; min-height: 49px; background: var(--navy); color: var(--white); }

/* Ürün listesi ve PDF çekmecesi */
body.list-open { overflow: hidden; }
.order-list-trigger {
  min-height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 800;
}
.order-list-icon { color: var(--pink); font-size: 16px; line-height: 1; }
.order-list-trigger b {
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 8px;
}
.order-list-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(18, 11, 43, 0.54);
  backdrop-filter: blur(3px);
}
.order-list-overlay[hidden] { display: none; }
.order-list-drawer {
  width: min(480px, 94vw);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  box-shadow: -22px 0 60px rgba(17, 10, 42, 0.22);
  animation: order-list-in 0.24s ease both;
}
@keyframes order-list-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
.order-list-drawer > header {
  min-height: 92px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.order-list-drawer > header small { color: var(--pink); font-size: 8px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.order-list-drawer > header h2 { margin: 4px 0 0; color: var(--navy); font-size: 23px; }
.order-list-drawer > header button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 24px;
}
.order-list-items { min-height: 0; padding: 18px 22px; flex: 1; overflow-y: auto; }
.order-list-empty { min-height: 55vh; display: grid; place-content: center; justify-items: center; text-align: center; }
.order-list-empty span { color: var(--pink); font-size: 37px; }
.order-list-empty h3 { margin: 14px 0 5px; color: var(--navy); font-size: 18px; }
.order-list-empty p { max-width: 280px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.order-list-item {
  padding: 13px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 15px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.order-list-item > img { width: 96px; height: 125px; object-fit: cover; border-radius: 5px; background: var(--soft); }
.order-list-item-copy { min-width: 0; }
.order-list-item-copy h3 { margin: 2px 0 3px; overflow: hidden; color: var(--navy); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.order-list-item-copy > small { color: var(--muted); font-size: 8px; }
.order-list-item-copy label { margin-top: 10px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px; color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.order-list-item-copy select { min-width: 0; height: 31px; padding: 0 8px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: var(--ink); font-size: 9px; }
.order-list-qty { margin-top: 9px; display: flex; align-items: center; gap: 7px; }
.order-list-qty button { width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: var(--navy); cursor: pointer; }
.order-list-qty strong { min-width: 22px; text-align: center; font-size: 10px; }
.order-list-qty span { color: var(--muted); font-size: 8px; }
.order-list-remove { margin-top: 8px; padding: 0; border: 0; background: transparent; color: #b54a61; cursor: pointer; font-size: 8px; font-weight: 800; }
.order-list-drawer > footer { padding: 18px 22px 21px; border-top: 1px solid var(--line); background: var(--white); }
.order-list-drawer > footer[hidden] { display: none; }
.order-list-total { margin-bottom: 13px; display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 9px; }
.order-list-total strong { color: var(--navy); }
.order-list-secondary,
.order-list-send { width: 100%; min-height: 45px; border-radius: 5px; cursor: pointer; font-size: 9px; font-weight: 800; }
.order-list-secondary { border: 1px solid var(--navy); background: var(--white); color: var(--navy); }
.order-list-send { margin-top: 8px; border: 0; background: var(--pink); color: var(--white); }
.order-list-secondary:disabled,
.order-list-send:disabled { cursor: wait; opacity: 0.6; }
.pdf-note { margin-top: 9px; display: block; color: var(--muted); text-align: center; font-size: 8px; line-height: 1.5; }
.order-list-toast { max-width: min(400px, 88vw); padding: 12px 16px; position: fixed; z-index: 150; right: 22px; bottom: 22px; border-radius: 5px; background: var(--navy); color: var(--white); box-shadow: var(--shadow); font-size: 10px; font-weight: 700; }
.order-list-toast[hidden] { display: none; }

/* Footer */
.site-footer {
  padding: 70px max(24px, calc((100vw - var(--content-width)) / 2)) 25px;
  display: grid;
  grid-template-columns: minmax(250px, 1.7fr) minmax(160px, 1fr) minmax(180px, 1fr);
  gap: clamp(35px, 5vw, 70px);
  color: var(--white);
  background: #17112f;
}
.site-footer img { width: 165px; filter: brightness(0) invert(1); }
.site-footer p { color: rgba(255, 255, 255, 0.55); font-size: 11px; line-height: 1.7; }
.site-footer > div:not(:first-child) { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
.site-footer strong { margin-bottom: 7px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer a { color: rgba(255, 255, 255, 0.62); font-size: 10px; }
.site-footer .footer-bottom { grid-column: 1 / -1; margin-top: 20px; padding-top: 20px; display: block; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.4); font-size: 8px; }
.site-footer.compact { grid-template-columns: minmax(250px, 2fr) minmax(180px, 1fr); }
.whatsapp { height: 49px; padding: 0 18px; position: fixed; right: 22px; bottom: 20px; z-index: 30; display: flex; align-items: center; border-radius: 999px; background: var(--green); color: var(--white); box-shadow: 0 10px 30px rgba(31, 157, 89, 0.3); font-size: 10px; font-weight: 800; }

/* =========================================================
   RESPONSIVE KIRILIMLAR
   ========================================================= */

/* Küçük masaüstü / büyük tablet */
@media (max-width: 1280px) {
  .header-cta { display: none; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 11px; }
  .hero { grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr); min-height: 610px; }
  .hero-image { min-height: 610px; }
  .hero-copy { padding: 55px 45px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Tablet ve mobil navigasyon */
@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .site-header { padding: 0 20px; justify-content: space-between; }
  .menu-toggle { display: grid; place-items: center; order: 1; }
  .logo { width: 130px; order: 2; margin-right: auto; }
  .header-actions { order: 3; }
  .order-list-label { display: none; }
  .main-nav {
    width: min(360px, 88vw);
    height: calc(100vh - var(--header-height));
    margin: 0;
    padding: 28px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: 20px 20px 50px rgba(28, 19, 77, 0.15);
    transform: translateX(-110%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .main-nav a::after { display: none; }

  .hero { width: 100%; min-height: 620px; display: block; }
  .hero-image { width: 100%; min-height: 620px; position: absolute; inset: 0; object-position: 62% center; }
  .hero-shade { position: absolute; inset: 0; display: block; background: linear-gradient(90deg, rgba(20, 13, 48, 0.9), rgba(20, 13, 48, 0.44)); }
  .hero-copy { width: min(620px, 90vw); min-height: 620px; margin: 0 auto 0 5vw; padding: 70px 0; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; }
  .hero h1 { font-size: clamp(50px, 8vw, 72px); }

  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
  .benefits > div:nth-child(2) { border-right: 0; }
  .wholesale { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: minmax(0, 1fr); }
  .detail-copy { padding-top: 5px; }
}

/* Telefon */
@media (max-width: 700px) {
  .notice { min-height: 30px; padding: 7px 16px; font-size: 8px; }
  .notice #rate-status { display: none; }
  .site-header { padding: 0 14px; gap: 9px; }
  .logo { width: 118px; }
  .menu-toggle { width: 38px; }
  .lang-switch button { width: 32px; height: 29px; }
  .order-list-trigger { min-width: 38px; padding: 0 7px; gap: 4px; }
  .order-list-icon { display: none; }

  .hero, .hero-image, .hero-copy { min-height: 570px; }
  .hero-copy { width: auto; margin: 0; padding: 55px 24px; }
  .hero h1 { margin-top: 16px; font-size: clamp(45px, 14vw, 58px); }
  .hero p { font-size: 14px; }

  .benefits { padding: 22px 14px; }
  .benefits > div { padding: 0 12px; }
  .section { padding: 72px 18px; }
  .section-head { align-items: stretch; flex-direction: column; }
  .search { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 9px; }
  .product-meta-top { display: block; }
  .price { margin-top: 8px; display: block; }
  .product-overlay { right: 8px; bottom: 8px; left: 8px; }
  .product-card:hover .product-overlay { bottom: 8px; }

  .wholesale-card, .retail-card { min-height: 370px; padding: 35px 27px; }
  .about { grid-template-columns: 1fr; gap: 25px; }
  .site-footer, .site-footer.compact { padding: 56px 22px 24px; grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .site-footer > div:first-child { grid-column: 1 / -1; }
  .store-map { height: 270px; }

  .detail-gallery { grid-template-columns: minmax(0, 1fr); }
  .detail-thumbs { order: 2; flex-direction: row; overflow-x: auto; }
  .detail-thumb { flex: 0 0 66px; }
  .detail-actions { grid-template-columns: 1fr; }
}

/* Çok küçük telefon */
@media (max-width: 430px) {
  .product-meta h3 { font-size: 11px; }
  .product-photo { aspect-ratio: 0.72; }
  .swatches { display: none; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div:first-child,
  .site-footer .footer-bottom { grid-column: auto; }
  .whatsapp { width: 50px; padding: 0; justify-content: center; font-size: 0; }
  .whatsapp::after { content: "WA"; font-size: 10px; }
  .specs { grid-template-columns: 1fr; }
  .order-list-drawer { width: 100%; }
  .order-list-items { padding: 12px; }
  .order-list-drawer > footer { padding: 15px 16px 18px; }
  .order-list-item { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
  .order-list-item > img { width: 82px; height: 112px; }
}

/* Tek sütun ürünler: dar ekranlar */
@media (max-width: 350px) {
  .product-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* =========================================================
   V6 · ÜYELİK, ÇOKLU DİL/PARA BİRİMİ VE BANNER SİSTEMİ
   ========================================================= */

select { font: inherit; }
.header-actions { min-width: 0; gap: 8px; }
.header-select {
  min-width: 76px;
  height: 42px;
  padding: 5px 9px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}
.header-select span { color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.header-select select { width: 100%; padding: 0; border: 0; outline: 0; background: transparent; color: var(--navy); font-size: 10px; font-weight: 800; cursor: pointer; }
.member-trigger {
  max-width: 150px;
  min-height: 42px;
  padding: 0 14px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.price-locked { border: 0; background: transparent; color: var(--pink); cursor: pointer; font-size: 9px; font-weight: 800; line-height: 1.25; text-align: right; }
.detail-price-lock { font-size: 13px; text-align: left; }

.hero-link-area { position: absolute; inset: 0; z-index: 2; }
.hero-copy { z-index: 4; pointer-events: none; }
.hero-copy .button { pointer-events: auto; }
.hero-arrow {
  width: 43px;
  height: 43px;
  position: absolute;
  top: 50%;
  z-index: 6;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(20,13,48,.45);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots { position: absolute; right: 0; bottom: 22px; left: 0; z-index: 6; display: flex; justify-content: center; gap: 7px; }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 1px solid var(--white); border-radius: 50%; background: transparent; }
.hero-dots button.active { width: 24px; border-radius: 99px; background: var(--white); }

.recommendation-section { padding-top: 68px; padding-bottom: 68px; }
.recommendation-section + .recommendation-section { padding-top: 0; }
.weekly-section { padding-top: 68px !important; background: var(--soft); }
.weekly-grid { grid-template-columns: minmax(260px, 360px); }
.wholesale { grid-template-columns: 1fr; }
.wholesale-card { width: 100%; }
.site-footer.compact { grid-template-columns: minmax(240px, 1.6fr) minmax(150px, .8fr) minmax(190px, 1fr); }

body.auth-open { overflow: hidden; }
.auth-overlay { position: fixed; inset: 0; z-index: 130; padding: 20px; display: grid; place-items: center; overflow-y: auto; background: rgba(18,11,43,.64); backdrop-filter: blur(7px); }
.auth-overlay[hidden] { display: none; }
.auth-modal { width: min(510px, 100%); max-height: calc(100vh - 40px); padding: 40px; position: relative; overflow-y: auto; border-radius: 10px; background: var(--white); box-shadow: 0 28px 90px rgba(17,10,42,.28); }
.auth-close { width: 38px; height: 38px; position: absolute; top: 14px; right: 14px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--navy); font-size: 22px; }
.auth-kicker { color: var(--pink); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.auth-modal h2 { margin: 8px 0 22px; color: var(--navy); font: 700 29px "Manrope", sans-serif; }
.auth-tabs { margin-bottom: 20px; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.auth-tabs button { height: 42px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); font-size: 10px; font-weight: 800; }
.auth-tabs button.active { border-color: var(--pink); color: var(--navy); }
.auth-form {gap: 14px; }
.auth-form label { gap: 7px; color: var(--muted); font-size: 9px; font-weight: 800; }
.auth-form input, .auth-form select { width: 100%; height: 45px; padding: 0 12px; border: 1px solid var(--line); border-radius: 5px; outline: 0; background: var(--white); color: var(--ink); }
.auth-form input:focus, .auth-form select:focus { border-color: var(--pink); }
.phone-fields { display: grid; grid-template-columns: 125px 1fr; gap: 8px; }
.auth-form small { color: var(--muted); font-size: 8px; line-height: 1.55; }
.auth-primary { min-height: 46px; padding: 0 18px; border: 0; border-radius: 5px; background: var(--pink); color: var(--white); font-size: 10px; font-weight: 800; }
.auth-error { margin: 14px 0 0; padding: 11px; border-radius: 5px; background: #fff0f3; color: #a63249; font-size: 10px; }
.auth-status { padding: 14px; border-radius: 6px; background: #fff7dc; color: #7a5d0b; font-size: 10px; line-height: 1.6; }
.auth-status.approved { background: #e8f6ee; color: #197246; }
.auth-status.rejected { background: #fff0f3; color: #a63249; }
.account-info { display: grid; gap: 10px; }
.account-info div { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.account-info dt { color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.account-info dd { margin: 4px 0 0; font-size: 11px; }

[dir="rtl"] body { font-family: Arial, "DM Sans", sans-serif; }
[dir="rtl"] .main-nav { margin-right: auto; margin-left: 0; }
[dir="rtl"] .price-locked { text-align: left; }
[dir="rtl"] .order-list-drawer { margin-right: auto; margin-left: 0; }
[dir="rtl"] .auth-close { right: auto; left: 14px; }

@supports (content-visibility: auto) {
  .catalog, .recommendation-section, .wholesale, .about, .site-footer { content-visibility: auto; contain-intrinsic-size: 700px; }
}

@media (max-width: 1280px) {
  .site-header { gap: 12px; }
  .main-nav { gap: 14px; }
  .header-select { min-width: 68px; padding-right: 6px; padding-left: 6px; }
  .member-trigger { max-width: 112px; padding: 0 10px; }
}

@media (max-width: 1080px) {
  .member-trigger { max-width: 92px; }
}

@media (max-width: 980px) {
  .header-actions { margin-left: auto; }
  .header-select { min-width: 64px; }
  .header-select span { display: none; }
  .member-trigger { max-width: 100px; }
  [dir="rtl"] .main-nav { right: 0; left: auto; transform: translateX(110%); }
  [dir="rtl"] .main-nav.open { transform: none; }
}

@media (max-width: 700px) {
  .header-actions { gap: 5px; }
  .header-select { min-width: 51px; height: 38px; padding: 0 5px; }
  .header-select select { font-size: 9px; }
  .member-trigger { width: 39px; min-height: 38px; padding: 0; color: transparent; font-size: 0; }
  .member-trigger::after { content: "Üye"; color: var(--white); font-size: 8px; }
  [dir="rtl"] .member-trigger::after { content: "عضو"; }
  .hero-arrow { width: 38px; height: 38px; }
  .hero-prev { left: 9px; }
  .hero-next { right: 9px; }
  .auth-modal { padding: 34px 22px 24px; }
  .weekly-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .logo { width: 102px; }
  .header-select { min-width: 47px; }
  .header-select option { font-size: 11px; }
  .phone-fields { grid-template-columns: 110px 1fr; }
}

@media (max-width: 430px) {
  .site-header { padding-right: 8px; padding-left: 8px; gap: 3px; }
  .logo { width: 85px; }
  .header-actions { gap: 3px; }
  .header-select { min-width: 42px; width: 42px; }
  .member-trigger { width: 36px; }
  .order-list-trigger { min-width: 36px; width: 36px; }
}
