/* POSTR — açık tema, vitrin / ince çizgi ikonlar */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f6f4;
  --bg-hero: #f2efe8;
  --card: #ffffff;
  --line: #e8e6e3;
  --line-strong: #d4d1cc;
  --text: #0a0a0a;
  --muted: #5c5c5c;
  --muted2: #8a8883;
  --inverse: #ffffff;
  --black: #0a0a0a;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --lime: #4ade80;
  --lime-text: #052e16;
  --danger: #dc2626;
  --tr-red: #e30a17;
  --ok: #16a34a;
  --radius: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a:hover {
  opacity: 0.82;
}

.wrap {
  width: min(1180px, 100% - 2rem);
  margin-inline: auto;
}

.main-pad {
  padding-bottom: 6rem;
}

/* Üst blok: promosyon + navbar birlikte yapışır */
.hdr-sticky {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
}

.promo-strip {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  background: var(--black);
  color: rgba(255, 255, 255, 0.88);
}

.promo-strip strong {
  color: #fff;
  font-weight: 700;
}

.countdown {
  color: #86efac;
  font-variant-numeric: tabular-nums;
  margin-right: 0.5rem;
  font-weight: 600;
}

.promo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

/* Mobil: logo solda, ikonlar sağda. Masaüstü: üç sütun. (Çubuk yüksekliği sadece padding; logo min-height ile şişirilmez.) */
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
}

.admin-head {
  grid-template-columns: auto 1fr;
}

.admin-head .nav {
  justify-self: end;
}

.logo {
  justify-self: start;
  grid-column: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: clamp(2.75rem, 5.8vw, 3.65rem);
  width: auto;
  max-width: min(420px, calc(100vw - 10.5rem));
  object-fit: contain;
}

.nav {
  display: none;
  gap: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  justify-self: center;
}

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .hdr-tools {
    grid-column: 3;
  }

  .logo-img {
    max-width: min(420px, 82vw);
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
  }
}

.nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  opacity: 1;
  border-bottom-color: var(--black);
}

.hdr-tools {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  justify-self: end;
  justify-content: flex-end;
  min-width: 0;
}

/* Mobil: 2 sütunda ikinci hücre = sağ; aşağıdaki genel kural masaüstünde ezilmesin diye en sonda. */
@media (max-width: 899px) {
  .hdr-tools {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  .promo-strip {
    padding: 0.38rem 0.65rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .header-inner {
    padding: 0.42rem 0;
    gap: 0.45rem;
  }

  .logo-img {
    height: clamp(2.35rem, 9vw, 3.05rem);
    max-width: min(320px, calc(100vw - 8.75rem));
  }

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

.ico {
  display: block;
  flex-shrink: 0;
}

.ico-sm {
  width: 16px;
  height: 16px;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  list-style: none;
}

.icon-btn:hover {
  background: var(--bg-soft);
}

.icon-btn--muted {
  cursor: default;
  opacity: 0.45;
}

.icon-btn--muted:hover {
  background: none;
}

details.hdr-search {
  position: relative;
}

details.hdr-search > summary {
  list-style: none;
}

details.hdr-search > summary::-webkit-details-marker {
  display: none;
}

.hdr-search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  width: min(280px, 85vw);
  padding: 0.75rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 50;
}

.hdr-search-panel input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.cart-ic .cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--black);
  color: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* Hero */
.hero-visual {
  /* 100vw + negatif margin yatay scrollbar/taşma yapıyordu; hero .wrap içinde kalır */
  margin: 0;
  padding: clamp(2.5rem, 8vw, 4.5rem) 1.5rem clamp(2rem, 5vw, 3rem);
  background-color: var(--bg-hero);
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.hero-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #9a7b62;
  line-height: 1;
}

.hero-serif {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 9vw, 4.25rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, #6b5344 0%, #3d2f26 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 34ch;
  margin: 0 auto 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: var(--black);
  color: #fff;
  transition: transform 0.15s ease, background 0.15s;
}

.btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-block {
  width: 100%;
}

.btn-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
}

.btn-quick:hover {
  background: var(--blue-hover);
  opacity: 1;
}

.btn-quick .ico-bolt {
  width: 18px;
  height: 18px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  background: var(--lime);
  color: var(--lime-text);
  border: none;
  cursor: pointer;
  transition: filter 0.15s;
}

.btn-buy:hover {
  filter: brightness(0.97);
  opacity: 1;
}

.btn-quick-sub {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted2);
  margin-top: 0.35rem;
}

.section-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 2.25rem 0 1rem;
  text-transform: uppercase;
}

.grid-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .grid-cats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cat-card {
  display: block;
  padding: 1.1rem 0.75rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cat-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-products > a.product-card:only-child {
    grid-column: 1 / -1;
    width: min(100%, 26rem);
    justify-self: center;
  }
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}

.product-card .meta {
  padding: 0.85rem 1rem 1rem;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-card .price-from {
  color: var(--muted2);
  font-size: 0.78rem;
}

/* Mobil 2 sütun: 3:4 poster alanı ekranı fazla uzatıyor — daha kısa kırpma */
@media (max-width: 767px) {
  .grid-products {
    gap: 0.65rem;
  }

  /* Tek ürün veya son satırda tek kalan: yarım sütun boşluk kalmasın */
  .grid-products > a.product-card:only-child,
  .grid-products > a.product-card:last-child:nth-child(odd):not(:only-child) {
    grid-column: 1 / -1;
  }

  .product-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .product-card .meta {
    padding: 0.65rem 0.75rem 0.85rem;
  }

  .product-card h3 {
    font-size: 0.82rem;
  }
}

.social-proof {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 1.25rem 0;
}

.social-proof span {
  color: var(--ok);
  font-weight: 700;
}

/* PDP */
.pdp {
  display: grid;
  gap: 1.5rem;
  padding-top: 1rem;
}

@media (min-width: 960px) {
  .pdp {
    grid-template-columns: 72px minmax(0, 1fr) minmax(300px, 380px);
    gap: 1.25rem 2rem;
    align-items: start;
  }
}

.pdp-gallery {
  display: contents;
}

@media (min-width: 960px) {
  .pdp-gallery {
    display: contents;
  }
}

.pdp-thumbs-col {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 960px) {
  .pdp-thumbs-col {
    display: flex;
  }
}

.pdp-thumbs-col button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.pdp-thumbs-col button.active,
.pdp-thumbs-col button:hover {
  border-color: var(--black);
}

.pdp-thumbs-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-main {
  position: relative;
}

.tilt-wrap {
  perspective: 1000px;
}

.tilt-inner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  transition: transform 0.08s ease-out;
  will-change: transform;
}

.tilt-inner img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (max-width: 959px) {
  .tilt-inner img {
    aspect-ratio: 4 / 5;
    max-height: min(68dvh, 500px);
    object-fit: cover;
    object-position: center;
  }
}

/* Mobil yatay küçük resimler */
.thumbs-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

@media (min-width: 960px) {
  .thumbs-row {
    display: none;
  }
}

.thumbs-row button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  width: 56px;
  height: 56px;
}

.thumbs-row button.active,
.thumbs-row button:hover {
  border-color: var(--black);
}

.thumbs-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-buy {
  padding-top: 0.25rem;
}

.pdp-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pdp-title-row h1 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wish-btn {
  border: none;
  background: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--muted);
}

.wish-btn:hover {
  color: var(--danger);
}

.badge-hot {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--danger);
  margin-bottom: 0.75rem;
}

.pdp-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin: 0.5rem 0 1rem;
}

.pdp-price .old {
  font-size: 0.95rem;
  color: var(--muted2);
  text-decoration: line-through;
}

.pdp-price .pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--danger);
  border: 1px solid rgba(220, 38, 38, 0.35);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}

.pdp-price .cur {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pdp-campaign {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.bundle-cards {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0;
}

.bundle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}

.bundle-card span {
  color: var(--muted2);
  font-weight: 500;
  font-size: 0.72rem;
}

.size-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 1rem 0 0.5rem;
  text-transform: uppercase;
  color: var(--muted);
}

.size-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-row label {
  cursor: pointer;
}

.size-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-pill {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--bg);
  color: var(--text);
}

.size-row input:checked + .size-pill {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-box input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font: inherit;
  font-weight: 600;
  padding: 0.4rem 0;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 200px;
  line-height: 1.3;
}

.trust-item .ico {
  flex-shrink: 0;
  color: var(--black);
}

details.accordion {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1rem;
}

details.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-weight: 700;
  font-size: 0.85rem;
}

details.accordion summary::-webkit-details-marker {
  display: none;
}

details.accordion .acc-body {
  padding: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.reviews {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.review strong {
  display: block;
  margin-bottom: 0.2rem;
}

.stars {
  color: #ca8a04;
  letter-spacing: 0.05em;
}

.cart-bar-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

@media (min-width: 960px) {
  .cart-bar-mobile {
    display: none;
  }
}

.table-cart {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table-cart th,
.table-cart td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table-cart input[type="number"] {
  width: 3.5rem;
  padding: 0.35rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.summary {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 380px;
  margin-left: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
}

.summary-row.total {
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.65rem;
}

.hint.ok {
  color: var(--ok);
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

label.field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.error {
  color: var(--danger);
  font-size: 0.85rem;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: #fef9c3;
  border: 1px solid #fde047;
  color: #713f12;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.site-footer {
  margin-top: 3rem;
  background: #030303;
  color: #fff;
  padding: 3rem 0 0;
  font-size: 0.78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand .logo-img--footer {
  height: clamp(2.2rem, 4.4vw, 2.85rem);
  max-width: 280px;
}

.footer-brand p,
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 16rem;
  margin: 0.9rem 0 0;
}

.footer-col,
.footer-newsletter {
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.footer-col h3,
.footer-newsletter h3 {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  margin-top: 0.65rem;
  width: 100%;
  max-width: min(360px, 100%);
}

.footer-newsletter-form input[type="email"] {
  border-radius: 0;
  border-color: #fff;
  background: #fff;
  color: #111;
  min-height: 2.35rem;
}

.footer-newsletter-form button {
  border: 1px solid #fff;
  background: #111;
  color: #fff;
  padding: 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-newsletter-msg {
  color: #86efac !important;
  font-weight: 700;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.payment-logos img {
  height: 22px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  background: #fff;
  box-sizing: content-box;
}

.footer-bottom {
  margin-top: 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.05fr 0.85fr 0.85fr 0.85fr 1.35fr;
    align-items: start;
  }
}

.admin-wrap {
  max-width: min(1180px, 100%);
}

.admin-intro {
  max-width: 52rem;
}

.admin-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}

.admin-logo .logo-img--admin {
  height: clamp(1.95rem, 3.4vw, 2.45rem);
  max-width: 240px;
}

.admin-logo-suffix {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.admin-body .admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  justify-content: flex-end;
  align-items: center;
}

.admin-subh {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 1.5rem 0 0.65rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}

.admin-stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: var(--card);
}

.admin-stat--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .admin-stat--wide {
    grid-column: span 2;
  }
}

.admin-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.admin-stat-val {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-stat-sub {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.admin-table--wide {
  font-size: 0.82rem;
}

.admin-two-col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .admin-two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.admin-pre {
  margin: 0;
  padding: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  max-width: 720px;
}

.admin-inline-form .field {
  flex: 1 1 200px;
  margin: 0;
}

.admin-inline-del {
  display: inline;
  margin: 0;
  padding: 0;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
}

.link-btn:hover {
  color: var(--blue-hover);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th,
.admin-table td {
  border: 1px solid var(--line);
  padding: 0.5rem;
  text-align: left;
}

.mono {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
}

.alert {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: var(--bg-soft);
  margin: 0 0 1rem;
}

.alert--warn {
  border-color: #f3c969;
  background: #fff7df;
  color: #5a3d00;
}

.alert--err {
  border-color: #e0b4b4;
  background: #fdecea;
  color: #5a1a1a;
}

.alert--ok {
  border-color: #a3d9a5;
  background: #e9f7e9;
  color: #194d20;
}

.alert a {
  color: inherit;
  text-decoration: underline;
}

.admin-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin: 0 0 1.25rem;
  padding: 0;
}

.admin-tabs a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  color: var(--muted);
  text-decoration: none;
  background: transparent;
}

.admin-tabs a:hover {
  color: var(--text);
}

.admin-tabs a.is-active {
  background: var(--card);
  border-color: var(--line);
  color: var(--text);
  position: relative;
  top: 1px;
}

.admin-2fa-box {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 720px) {
  .admin-2fa-box {
    grid-template-columns: 220px 1fr;
  }
}

.admin-2fa-qr {
  background: #fff;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-block;
  max-width: 220px;
}

.admin-2fa-qr img {
  display: block;
  width: 100%;
  height: auto;
}

.admin-recovery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
}

.admin-recovery-list li {
  border: 1px dashed var(--line);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  background: var(--bg-soft);
  text-align: center;
}

.admin-charts {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 760px) {
  .admin-charts {
    grid-template-columns: 1fr 1fr;
  }
}

.admin-chart-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1rem 1.1rem 1.25rem;
  min-height: 260px;
  position: relative;
}

.admin-chart-card canvas {
  max-width: 100%;
  height: 220px !important;
}

.admin-chart-card .admin-subh {
  font-size: 0.88rem;
}

.admin-toolbar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 1rem;
}

.admin-toolbar .field {
  margin: 0;
}

.admin-toolbar input[type="text"],
.admin-toolbar input[type="search"],
.admin-toolbar select {
  height: 36px;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  font-size: 0.85rem;
}

.drag-handle {
  cursor: grab;
  user-select: none;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.drag-handle:active {
  cursor: grabbing;
}

.img-sortable {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem;
}

.img-sortable-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 1 / 1;
  cursor: grab;
}

.img-sortable-item.is-ghost {
  opacity: 0.5;
}

.img-sortable-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.img-remove:hover {
  background: rgba(220, 30, 30, 0.85);
}

#variant-table input[type="text"],
#variant-table input[type="number"] {
  width: 100%;
  height: 30px;
  padding: 0 0.4rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.85rem;
  background: var(--card);
}

.btn-link-danger {
  color: #9b1c1c !important;
}

.admin-body[data-theme="dark"] {
  --bg: #14161a;
  --bg-soft: #1b1e24;
  --bg-hero: #1b1e24;
  --card: #1f232a;
  --line: #2a2f38;
  --line-strong: #353b45;
  --text: #ececec;
  --muted: #9aa0aa;
  --muted2: #707682;
  --inverse: #0a0a0a;
}

.admin-body[data-theme="dark"] .alert--warn {
  background: #3b2c00;
  color: #ffe4a8;
  border-color: #5a4400;
}

.admin-body[data-theme="dark"] .alert--ok {
  background: #1b3a23;
  color: #c8f7d0;
  border-color: #234d2e;
}

.admin-body[data-theme="dark"] .alert--err {
  background: #3a1b1b;
  color: #ffc8c8;
  border-color: #4d2323;
}

.admin-theme-toggle {
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
}

.admin-theme-toggle:hover {
  background: var(--bg-soft);
}

/* —— Sepet çekmecesi —— */
body.cart-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cart-drawer-scroll {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.1rem;
}

.drawer-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--muted);
}

.drawer-kargo-msg {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.65rem;
  line-height: 1.45;
}

.drawer-progress {
  height: 6px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.drawer-progress span {
  display: block;
  height: 100%;
  background: var(--black);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.drawer-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.drawer-thumb img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-soft);
}

.drawer-line-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.drawer-title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.drawer-trash {
  flex-shrink: 0;
  color: var(--muted2);
}

.drawer-trash:hover {
  color: var(--danger);
}

.drawer-meta {
  font-size: 0.72rem;
  color: var(--muted2);
  margin: 0.35rem 0 0.5rem;
}

.drawer-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.15rem 0.35rem;
}

.drawer-qty .ajax-cart {
  display: inline;
  margin: 0;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 6px;
  line-height: 1;
}

.qty-btn:hover {
  background: var(--bg-soft);
}

.qty-val {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.drawer-line-prices {
  text-align: right;
  font-size: 0.8rem;
}

.drawer-line-prices .old {
  display: block;
  color: var(--muted2);
  text-decoration: line-through;
  font-size: 0.75rem;
}

.drawer-line-prices .cur {
  font-weight: 800;
}

.cart-drawer-foot {
  border-top: 1px solid var(--line);
  padding: 0;
  background: #fff;
}

.drawer-payline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: #f3f3f3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--black);
}

.drawer-payline:hover {
  opacity: 0.9;
}

.drawer-totalbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: var(--black);
  color: #fff;
}

.drawer-total-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.drawer-total-val {
  font-size: 1.05rem;
  font-weight: 800;
}

.drawer-gocart {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sepet sayfası (tam) */
.cart-page-head {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.cart-page-head h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.cart-page-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .cart-page-grid {
    grid-template-columns: 1fr minmax(280px, 360px);
    align-items: start;
  }
}

.cart-lines-full {
  border-top: 1px solid var(--line);
}

.cart-line-full {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

@media (max-width: 640px) {
  .cart-line-full {
    grid-template-columns: 72px 1fr;
  }

  .cart-line-full .cart-line-prices {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
  }
}

.cart-line-full .drawer-thumb img {
  width: 100px;
  height: 128px;
}

.cart-line-meta {
  font-size: 0.78rem;
  color: var(--muted2);
  margin: 0.35rem 0;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.cart-summary-box {
  background: #f5f5f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: 6rem;
}

@media (max-width: 959px) {
  .cart-summary-box {
    position: relative;
    top: auto;
  }
}

.summary-discount {
  color: var(--ok);
  font-weight: 700;
}

.cart-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
}

.cart-cta:hover {
  opacity: 0.92;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.65rem;
  color: var(--muted2);
}

.link-muted {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Ödeme iki sütun */
.checkout-grid {
  display: grid;
  gap: 2rem;
  margin-top: 0.5rem;
}

@media (min-width: 960px) {
  .checkout-grid {
    grid-template-columns: 1fr minmax(300px, 400px);
    align-items: start;
  }
}

.checkout-main {
  max-width: 560px;
}

.checkout-steps-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkout-summary-side {
  background: #f5f5f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: 6rem;
}

@media (max-width: 959px) {
  .checkout-summary-side {
    order: -1;
    position: relative;
    top: auto;
  }
}

.checkout-mini-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.checkout-mini-item img {
  width: 56px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.qty-badge {
  display: inline-block;
  min-width: 1.25rem;
  padding: 0 4px;
  text-align: center;
  background: var(--ok);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 4px;
  margin-right: 0.25rem;
}

.step-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ok);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}

.step-num.muted {
  background: #d4d4d4;
  color: #444;
}

.step-title {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.btn-continue {
  width: 100%;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: var(--radius);
  background: var(--ok);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
}

.btn-continue:hover {
  filter: brightness(1.05);
}

input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  font: inherit;
}

/* Auth sayfaları */
.auth-card {
  max-width: 420px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.auth-card h1 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.auth-links {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Üyelik — bölünmüş ekran (giriş / kayıt) */
.auth-split-outer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-auth .site-footer {
  margin-top: 0;
}

.page-auth .promo-strip {
  color: rgba(255, 255, 255, 0.88);
}

.page-auth .promo-strip strong {
  color: #fda4af;
  font-weight: 800;
}

.auth-split {
  display: grid;
  min-height: min(88vh, 900px);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .auth-split {
    grid-template-columns: minmax(280px, 44%) minmax(0, 1fr);
    min-height: calc(100vh - 120px);
  }
}

.auth-split-left {
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 4vw, 4rem) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.auth-tabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.auth-tabs a {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted2);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.auth-tabs a:hover {
  color: var(--text);
  opacity: 1;
}

.auth-tabs a.active {
  font-weight: 800;
  color: var(--black);
  border-bottom-color: var(--black);
}

.auth-panel {
  display: none;
}

.auth-panel.is-on {
  display: block;
}

.auth-form {
  max-width: 400px;
}

.auth-form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 0.75rem;
}

@media (max-width: 520px) {
  .auth-form-row2 {
    grid-template-columns: 1fr;
  }
}

.field-line {
  display: block;
  margin-bottom: 1.35rem;
}

.field-line .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted2);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.field-line input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c8c6c3;
  border-radius: 0;
  padding: 0.55rem 0;
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
}

.field-line input::placeholder {
  color: transparent;
}

.field-line input:focus {
  outline: none;
  border-bottom-color: var(--black);
}

.btn-auth-primary {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s;
}

.btn-auth-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.auth-or {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted2);
  margin: 1.35rem 0 0.85rem;
}

.auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 400px;
}

.auth-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
}

.auth-social a .ico {
  flex-shrink: 0;
}

.auth-forgot {
  display: inline-block;
  margin-top: 1.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-split-right {
  position: relative;
  min-height: 220px;
  background-color: #141414;
  background-image: url("https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.75rem);
}

.auth-split-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.auth-hero-text {
  position: relative;
  z-index: 1;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow:
    0 0 28px rgba(255, 77, 140, 0.55),
    0 0 60px rgba(255, 40, 100, 0.35);
}

.auth-hero-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  max-width: 28em;
}

/* —— Ürün ızgarası arası kayan kargo şeridi (Alt Kültür tarzı) —— */
/* flex column + 100vw çocuk: taşma sağa gider, sol boş kalır — blok akışı kullan */
.product-stack {
  display: block;
}

.product-stack > * + * {
  margin-top: 1.25rem;
}

.marquee-embed {
  min-width: 0;
}

/* .wrap (main) içinden tam ekran — blok akışında calc(50% - 50vw) */
.marquee-embed--fullbleed {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.marquee-embed--in-grid {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  color: #fff;
  background: #000;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  animation: postr-marquee-inline 135s linear infinite;
  will-change: transform;
}

.marquee-chunk {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}

.marquee-seg {
  flex: 0 0 auto;
  padding: 0.45rem clamp(1.5rem, 8vw, 6.25rem);
  font-size: clamp(1rem, 4.2vw, 1.875rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
}

@keyframes postr-marquee-inline {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-duration: 280s;
  }
}

/* —— Hesabım: Alt Kültür tarzı 2 sütun —— */
.account-page {
  padding-top: 0.5rem;
}

.account-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 880px) {
  .account-layout {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 3rem;
  }
}

.account-sidebar {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 880px) {
  .account-sidebar {
    padding: 0 1.5rem 0 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
}

.account-userblock {
  margin-bottom: 1.75rem;
}

.account-username {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.account-logout {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tr-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-logout:hover {
  opacity: 1;
  color: #b91c1c;
}

.account-navgroup {
  margin-bottom: 1.75rem;
}

.account-navtitle {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.account-navlink {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.account-navlink:hover {
  color: var(--text);
  opacity: 1;
}

.account-navlink.is-active {
  font-weight: 800;
  color: var(--text);
}

.account-navlink--muted {
  opacity: 0.55;
  pointer-events: none;
}

.account-main {
  min-width: 0;
}

.account-panel {
  scroll-margin-top: 6rem;
  margin-bottom: 2.5rem;
}

.account-panel:last-child {
  margin-bottom: 0;
}

.account-panel--subtle {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.account-panel-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.account-dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.account-dl > div {
  display: grid;
  gap: 0.15rem;
}

.account-dl dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted2);
}

.account-dl dd {
  margin: 0;
  font-size: 0.95rem;
}

.account-empty {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.account-empty a {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.account-orders {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.account-orders th,
.account-orders td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.account-orders th {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted2);
  background: var(--bg-soft);
}

.account-orders tbody tr:last-child td {
  border-bottom: none;
}

/* Kurumsal / hukuki — Plus Jakarta Sans, kalın ve net */
.auth-card.legal-wrap {
  --font-legal: "Plus Jakarta Sans", var(--font);
  max-width: min(46rem, 94vw);
  margin: 2.25rem auto 3.5rem;
  padding: clamp(1.35rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(165deg, #fffefb 0%, var(--card) 38%, #faf9f7 100%);
}

.legal-wrap .legal-page-title {
  font-family: var(--font-legal);
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.legal-wrap .legal-body {
  margin-top: 0.5rem;
  text-align: left;
}

.legal-wrap .legal-page {
  font-family: var(--font-legal);
  font-size: clamp(1rem, 1.85vw, 1.125rem);
  font-weight: 600;
  line-height: 1.62;
  color: var(--text);
  font-feature-settings: "kern" 1, "liga" 1;
}

.legal-wrap .legal-page strong {
  font-weight: 800;
  color: var(--text);
}

.legal-wrap .legal-page .legal-meta {
  font-family: var(--font-legal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.35rem;
  padding: 0 0 1rem 0.85rem;
  border-left: 4px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.legal-wrap .legal-lead {
  font-family: var(--font-legal);
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.legal-wrap .legal-page h2 {
  font-family: var(--font-legal);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  margin: 1.85rem 0 0.65rem;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.legal-wrap .legal-page h2:first-of-type {
  margin-top: 0.35rem;
}

.legal-wrap .legal-page--faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-wrap .legal-page--faq .faq-item {
  padding: 1rem 1.1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.legal-wrap .legal-page--faq .faq-item:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.legal-wrap .legal-faq-q {
  font-family: var(--font-legal);
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.legal-wrap .legal-page--faq .faq-item p {
  margin-bottom: 0.5rem;
}

.legal-wrap .legal-page--faq .faq-item p:last-child {
  margin-bottom: 0;
}

.legal-wrap .legal-page p {
  margin: 0 0 0.85rem;
}

.legal-wrap .legal-page ul {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
}

.legal-wrap .legal-page li {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.legal-wrap .legal-page a {
  font-family: var(--font-legal);
  font-weight: 700;
  font-size: inherit;
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-wrap .legal-page a:hover {
  color: var(--blue-hover);
}

.legal-wrap .contact-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

@media (min-width: 560px) {
  .legal-wrap .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-wrap .contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-wrap .contact-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.legal-wrap .contact-card--static {
  cursor: default;
}

.legal-wrap .contact-card--static:hover {
  transform: none;
}

.legal-wrap .contact-card-label {
  font-family: var(--font-legal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}

.legal-wrap .contact-card-value {
  font-family: var(--font-legal);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.legal-wrap .contact-card-hint {
  font-family: var(--font-legal);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.legal-wrap .contact-social {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.legal-wrap .contact-social a {
  font-family: var(--font-legal);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-wrap .legal-simple {
  text-align: left;
  font-family: var(--font-legal);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.6;
}

