/* 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;
  /* Vitrin rozetleri — sade frosted + sol accent */
  --badge-font: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --badge-radius: 8px;
  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: 3px solid transparent;
}

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

/* Üst kategori + alt menü — referans: sol hizalı panel, kalın alt çizgi, ▼ ok */
.nav .nav-dd {
  position: relative;
  flex-shrink: 0;
}

.nav-dd__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.35rem 0;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

.nav-dd:hover .nav-dd__trigger,
.nav-dd:focus-within .nav-dd__trigger {
  opacity: 1;
  border-bottom-color: var(--black);
}

/* Aşağı bakan küçük chevron */
.nav-dd__chev {
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 0.08em;
  margin-left: 0.02em;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.82;
}

/* margin-top + translateY gap = dead zone: cursor leaves .nav-dd before panel. Bridge + no margin fixes it. */
.nav-dd__panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: max(100%, 11.75rem);
  padding: 0.45rem 0;
  max-height: 320px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition:
    opacity 0.15s ease,
    visibility 0.15s;
  z-index: 200;
  pointer-events: none;
}

.nav-dd__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dd:hover .nav-dd__panel,
.nav-dd:focus-within .nav-dd__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dd__panel a {
  display: block;
  padding: 0.62rem 1.2rem;
  border-bottom: none;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-transform: none;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dd__panel a:hover {
  background: #f5f5f5;
  border-bottom: none;
  opacity: 1;
}

.nav-dd__see-all {
  display: block;
  padding: 0.62rem 1.2rem;
  border-top: 1px solid #e8e8e8;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 0.25rem;
}

.nav-dd__see-all:hover {
  background: #f5f5f5;
  border-bottom: none;
}

.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;
  }

  .header-inner--store {
    grid-template-columns: auto 1fr auto;
  }

  .header-inner--store .hdr-tools {
    grid-column: 3;
  }

  .header-inner--store .logo {
    grid-column: 2;
    justify-self: center;
  }

  .header-inner--store .logo-img {
    max-width: min(260px, calc(100vw - 9.5rem));
  }
}

@media (min-width: 900px) {
  .mob-burger {
    display: none !important;
  }
}

.mob-burger {
  flex-shrink: 0;
}

.mob-burger-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.mob-burger-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: var(--black);
}

body.mob-nav-open {
  overflow: hidden;
}

.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  visibility: hidden;
}

.mob-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mob-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mob-nav.is-open .mob-nav-backdrop {
  opacity: 1;
}

.mob-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
}

.mob-nav.is-open .mob-nav-panel {
  transform: translateX(0);
}

.mob-nav-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.35rem 0.5rem 0.25rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.mob-nav-close {
  flex-shrink: 0;
}

.mob-nav-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  min-width: 0;
}

.mob-nav-auth a {
  text-decoration: none;
  color: inherit;
}

.mob-nav-auth a:hover {
  opacity: 0.72;
}

.mob-nav-pipe {
  opacity: 0.4;
  font-weight: 600;
}

.mob-nav-cart {
  flex-shrink: 0;
}

.mob-nav-list {
  flex: 1;
  overflow: auto;
  padding: 0.25rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.mob-nav-link {
  display: block;
  padding: 1.05rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.mob-nav-link:hover {
  opacity: 0.75;
}

.mob-nav-dd {
  border-bottom: 1px solid var(--line);
}

.mob-nav-dd > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.05rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.mob-nav-dd > summary::-webkit-details-marker {
  display: none;
}

.mob-nav-dd-sum:hover,
.mob-nav-dd[open] > summary {
  background: var(--bg-soft);
}

.mob-nav-dd-label {
  min-width: 0;
}

.mob-nav-dd-chev {
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0.55;
}

.mob-nav-dd-body {
  padding: 0 0 0.65rem;
  background: var(--bg-soft);
}

.mob-nav-sublink {
  display: block;
  padding: 0.62rem 1.35rem 0.62rem 1.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  border-top: 1px solid var(--line);
}

.mob-nav-sublink--all {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.mob-nav-sublink:hover {
  opacity: 0.8;
}

@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);
}

/* Ana sayfa — yatay kaydırmalı hero */
.home-hero {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  -webkit-tap-highlight-color: transparent;
}

.home-hero__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(260px, 58vw, 480px);
}

.home-hero__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100% * var(--hero-n, 2));
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s cubic-bezier(0.25, 0.85, 0.35, 1);
  transition-property: transform;
  will-change: transform;
  min-height: inherit;
  backface-visibility: hidden;
}

.home-hero__slide {
  flex: 0 0 calc(100% / var(--hero-n, 2));
  width: calc(100% / var(--hero-n, 2));
  min-width: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

.home-hero__slide--pattern {
  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;
}

.home-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: clamp(260px, 58vw, 480px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.75rem, 6vw, 3.5rem) max(1rem, env(safe-area-inset-right, 0px)) clamp(1.75rem, 5vw, 3rem) max(1rem, env(safe-area-inset-left, 0px));
  padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.home-hero:not(.home-hero--single) .home-hero__overlay {
  padding-bottom: max(2.75rem, calc(env(safe-area-inset-bottom, 0px) + 1.5rem));
}

.home-hero__slide--photo .home-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.home-hero__slide--photo .hero-script {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.home-hero__slide--photo .hero-serif {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.home-hero__slide--photo .hero-lead {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  min-width: 34px;
  min-height: 34px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, opacity 0.2s;
}

.home-hero__nav:hover {
  background: rgba(0, 0, 0, 0.58);
}

.home-hero__prev {
  left: max(0.5rem, env(safe-area-inset-left, 0px));
}

.home-hero__next {
  right: max(0.5rem, env(safe-area-inset-right, 0px));
}

@media (max-width: 640px) {
  .home-hero__nav {
    display: none;
  }
}

.home-hero__dots {
  position: absolute;
  bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.home-hero__dot {
  box-sizing: border-box;
  min-width: 12px;
  min-height: 12px;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  display: grid;
  place-items: center;
  appearance: none;
  -webkit-appearance: none;
}

.home-hero__dot::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s, background 0.2s;
}

.home-hero__dot.is-active::after {
  background: #fff;
  transform: scale(1.15);
}

/* Mobil: sayfa noktaları — temel .home-hero__dot kurallarından sonra gelmeli (ezilmesin) */
@media (max-width: 640px) {
  .home-hero__dots {
    gap: 3px;
    padding: 2px 6px;
    bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.28);
  }

  .home-hero__dot {
    min-width: 12px;
    min-height: 12px;
  }

  .home-hero__dot::after {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  }

  .home-hero__dot.is-active::after {
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__track {
    transition-duration: 0.01ms;
  }
}

.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;
}

@media (max-width: 767px) {
  .section-title {
    margin: 1.6rem 0 0.65rem;
  }
}

.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;
  align-items: start;
}

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

  /*
   * Tek kartlı satır: dar ortalanmış vitrin yerine normal hücre genişliği (tüm vitrinlerde aynı kart ölçüsü).
   * Sol sütunla hizalı — üstteki ızgarayla kayma yapmaz.
   */
  .grid-products > a.product-card:only-child {
    grid-column: 1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  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);
}

/*
 * Liste kartları: tek oran + köşeler dolu (şerit yok).
 * 2:3 tipik poster oranı — 3:4 kutuya göre cover ile daha az “zoom” hissi.
 * cover = kenarlara kadar dolar; kadraj farkında hafif kırpma olabilir, object-position ortada dengeli.
 */
.product-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: var(--bg-soft);
  flex-shrink: 0;
}

.product-card .meta {
  padding: 0.7rem 0.85rem 0.85rem;
  margin-top: 0;
  flex-shrink: 0;
}

.product-card h3 {
  margin: 0 0 0.28rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

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

.product-card__figure {
  position: relative;
  display: block;
}

/* Vitrin rozetleri — çoklu: sarmalayıcı mutlak, pill tonları ayarlardan (anahtar|etiket|ton) */
.product-card__badges {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 0.55rem;
  right: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: flex-start;
  pointer-events: none;
}

.product-card__badge,
.pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  z-index: 2;
  max-width: min(100%, 13rem);
  font-family: var(--badge-font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.25;
  padding: 0.38rem 0.7rem 0.38rem 0.62rem;
  border-radius: var(--badge-radius);
  color: rgba(255, 255, 255, 0.96);
  pointer-events: none;
  background: rgba(14, 14, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 2px 12px rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.product-card__badges .product-card__badge {
  position: static;
}

.postr-badge-icon {
  display: inline-flex;
  flex-shrink: 0;
  opacity: 0.88;
}

.postr-badge-icon svg {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
}

.pdp-badge--with-icon .postr-badge-icon svg {
  width: 0.78rem;
  height: 0.78rem;
}

.postr-badge-text {
  min-width: 0;
}

/* PDP: rozetler sağ blokta yan yana */
.pdp-badges-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 0.55rem;
}

.pdp-badge--inline {
  position: static;
  z-index: auto;
  display: inline-flex;
  align-items: center;
  margin: 0;
  max-width: 100%;
  font-size: 0.68rem;
  padding: 0.4rem 0.78rem 0.4rem 0.68rem;
  vertical-align: middle;
}

@supports (backdrop-filter: blur(14px)) {
  .product-card__badge,
  .pdp-badge {
    backdrop-filter: blur(14px) saturate(118%);
    -webkit-backdrop-filter: blur(14px) saturate(118%);
  }
}

.product-card:hover .product-card__badges .product-card__badge {
  transform: translateY(-1px);
  background: rgba(18, 18, 22, 0.86);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 3px 14px rgba(0, 0, 0, 0.26),
    0 10px 28px rgba(0, 0, 0, 0.14);
}

/* Rozet sol şerit — ton sınıfları (Ayarlar: ...|etiket|ruby vb.) */
.product-card__badge--tone-ruby,
.pdp-badge--tone-ruby {
  border-left-color: #f43f5e;
}

.product-card__badge--tone-rose,
.pdp-badge--tone-rose {
  border-left-color: #e879a9;
}

.product-card__badge--tone-amber,
.pdp-badge--tone-amber {
  border-left-color: #fb923c;
}

.product-card__badge--tone-emerald,
.pdp-badge--tone-emerald {
  border-left-color: #34d399;
}

.product-card__badge--tone-violet,
.pdp-badge--tone-violet {
  border-left-color: #a78bfa;
}

.product-card__badge--tone-sky,
.pdp-badge--tone-sky {
  border-left-color: #60a5fa;
}

.product-card__badge--tone-slate,
.pdp-badge--tone-slate {
  border-left-color: rgba(255, 255, 255, 0.38);
}

.product-card__badge--tone-gold,
.pdp-badge--tone-gold {
  border-left-color: #fbbf24;
}

.product-card__badge--tone-teal,
.pdp-badge--tone-teal {
  border-left-color: #2dd4bf;
}

.product-card__badge--tone-crimson,
.pdp-badge--tone-crimson {
  border-left-color: #dc2626;
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover .product-card__badges .product-card__badge {
    transform: none;
  }
}

@media (max-width: 767px) {
  .wrap {
    width: min(1180px, 100% - 1rem);
  }

  .grid-products {
    gap: 0.45rem;
  }

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

  /* Kartlar hep aynı hücre genişliğinde kalsın (tek/tekil satırda tam genişlik yayılımı yok). */
  .product-card .meta {
    padding: 0.45rem 0.5rem 0.55rem;
  }

  .product-card h3 {
    margin: 0 0 0.15rem;
    font-size: 0.8rem;
    line-height: 1.22;
  }

  .product-card .price-from {
    font-size: 0.72rem;
  }
}

.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) {
  /* Tek görselde küçük resim yok; 3 sütun şablonu galeriyi 72px hücreye, formu 1fr'a atıyordu (kayma/kırpma). */
  .pdp {
    width: 100%;
    justify-content: center;
    gap: 1.25rem clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
  }

  .pdp--multi {
    grid-template-columns: 72px minmax(280px, min(560px, 54vw)) minmax(300px, 380px);
  }

  .pdp--single {
    grid-template-columns: minmax(280px, min(560px, 54vw)) minmax(300px, 380px);
  }
}

.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-inner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.tilt-inner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(78vh, 860px);
  margin-inline: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 959px) {
  .tilt-inner img {
    max-height: min(62dvh, 520px);
  }
}

/* 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);
}

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

.wish-btn.is-wished svg path {
  fill: currentColor;
}

.wish-btn.is-busy {
  opacity: 0.55;
  pointer-events: none;
}

.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);
}

/* PDP boyut seçici — kart zemin, gölgeli seçenekler */
.pdp-size-picker {
  margin: 1rem 0 1.15rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--bg-soft) 0%, var(--bg) 55%);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.pdp-size-picker .size-label {
  margin: 0;
}

.pdp-size-picker__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.75rem;
}

.pdp-size-picker__hint {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: 0.02em;
}

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

@media (min-width: 480px) {
  .size-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.size-row label.size-choice {
  cursor: pointer;
  margin: 0;
  display: block;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.size-row input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  margin: 0;
  border: 0;
  outline: none;
  accent-color: var(--black);
}

.size-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.18rem;
  min-height: 5.6rem;
  padding: 0.65rem 0.7rem 0.7rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 209, 204, 0.95);
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.22s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.size-choice:hover .size-pill {
  transform: translateY(-3px);
  border-color: rgba(10, 10, 10, 0.22);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.07),
    0 14px 28px rgba(0, 0, 0, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.size-pill__code {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.size-pill__dim {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--muted2);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.size-pill__bar {
  display: block;
  height: 1px;
  margin: 0.28rem 0 0.15rem;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  opacity: 0.85;
}

.size-pill__price {
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text);
}

.size-row input:checked + .size-pill {
  transform: translateY(-2px);
  background: linear-gradient(155deg, #181818 0%, var(--black) 55%, #050505 100%);
  color: #fff;
  border-color: var(--black);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 18px 36px rgba(0, 0, 0, 0.22);
}

.size-row input:checked + .size-pill .size-pill__dim {
  color: rgba(255, 255, 255, 0.78);
}

.size-row input:checked + .size-pill .size-pill__price {
  color: #fff;
}

.size-row input:checked + .size-pill .size-pill__bar {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

/* Klavye odağı: mavi halka yok — nötr çerçeve */
.size-row input:focus-visible + .size-pill {
  outline: none;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 2px var(--black);
}

.size-row input:checked:focus-visible + .size-pill {
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 18px 36px rgba(0, 0, 0, 0.22),
    0 0 0 2px rgba(255, 255, 255, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .size-pill,
  .size-choice:hover .size-pill,
  .size-row input:checked + .size-pill {
    transition: none;
    transform: none;
  }
}

.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-body {
  min-width: 0;
}

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

.drawer-thumb {
  flex-shrink: 0;
}

.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-block {
  margin: 0.35rem 0 0.45rem;
}

.postr-kv-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  line-height: 1.35;
}

.postr-kv-line + .postr-kv-line {
  margin-top: 0.18rem;
}

.postr-kv-label {
  font-size: 0.76rem;
  font-weight: 500;
  color: #6f6f6f;
  letter-spacing: 0.01em;
}

.postr-kv-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.drawer-qty-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.drawer-qty-row .postr-kv-label {
  flex-shrink: 0;
}

.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-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.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 .cur {
  font-weight: 800;
}

.drawer-price-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.75rem 0 0.9rem;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(155deg, #fafaf8 0%, #f4f3ef 48%, #eceae5 100%);
  border: 1px solid rgba(10, 10, 10, 0.07);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.drawer-price-notice__badge {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 11px;
  background: linear-gradient(145deg, #1a1a1a 0%, var(--black) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.drawer-price-notice__body {
  margin: 0;
  padding-top: 0.12rem;
  font-size: 0.74rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--muted);
}

.drawer-price-notice__body strong {
  font-weight: 800;
  color: var(--text);
}

.cart-drawer-foot {
  flex-shrink: 0;
  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;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--black);
  color: #fff;
}

.drawer-total-left {
  min-width: 0;
  flex: 1;
}

.drawer-total-stack {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.drawer-total-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.78;
}

.drawer-total-val {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.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 rgba(10, 10, 10, 0.07);
}

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

.cart-line-body {
  min-width: 0;
}

@media (max-width: 767px) {
  .cart-line-full {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .cart-line-full .cart-line-thumb {
    width: 72px;
    flex-shrink: 0;
  }

  .cart-line-full .cart-line-thumb img {
    width: 72px;
    height: 96px;
    object-fit: cover;
  }

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

@media (min-width: 768px) {
  .cart-line-full .drawer-thumb img {
    width: 100px;
    height: 128px;
  }
}

.cart-meta-block {
  margin: 0.35rem 0 0.5rem;
}

.cart-meta-block .postr-kv-line + .postr-kv-line {
  margin-top: 0.2rem;
}

.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 — checkout (tema: siyah / nötr, yeşil accent yok) */
.checkout-page {
  padding-bottom: 2rem;
}

.checkout-page-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.checkout-form-block {
  max-width: none;
}

.checkout-grid {
  display: grid;
  gap: 2rem;
  margin-top: 0.5rem;
}

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

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

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

.checkout-step-card {
  background: var(--card);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
}

.checkout-step-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.checkout-step-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
}

.checkout-step-badge.is-muted {
  background: #d8d6d3;
  color: #3a3a3a;
}

.checkout-step-badge.is-complete {
  background: var(--black);
}

.checkout-step-check {
  font-size: 0.95rem;
  line-height: 1;
}

.checkout-step-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.checkout-ship-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.checkout-ship-card {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: var(--card);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-ship-card--pick {
  cursor: pointer;
  display: block;
  position: relative;
}

.checkout-ship-card--pick:hover {
  border-color: rgba(10, 10, 10, 0.22);
}

.checkout-ship-card--pick.is-selected {
  border-color: var(--black);
  box-shadow: 0 0 0 1px var(--black);
}

.checkout-ship-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-ship-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
}

.checkout-ship-radio-ui {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #b9b7b4;
  flex-shrink: 0;
  position: relative;
}

.checkout-ship-card.is-selected .checkout-ship-radio-ui {
  border-color: var(--black);
}

.checkout-ship-card.is-selected .checkout-ship-radio-ui::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: var(--black);
}

.checkout-ship-radio-ui--off {
  opacity: 0.45;
}

.checkout-ship-name {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.checkout-ship-text {
  min-width: 0;
}

.checkout-ship-desc {
  display: block;
  font-size: 0.74rem;
  color: #6f6f6f;
  margin-top: 0.15rem;
  font-weight: 500;
}

.checkout-ship-side {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.checkout-ship-card--locked {
  opacity: 0.72;
  pointer-events: none;
}

.checkout-ship-lock-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Kargo kartları — logo görseli + etiketler */
.checkout-ship-card--rich {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-ship-card--rich.checkout-ship-card--pick:hover {
  transform: translateY(-2px);
}

.checkout-ship-card--rich.checkout-ship-card--pick.is-selected {
  border-color: rgba(96, 165, 250, 0.95);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.85),
    0 10px 36px rgba(59, 130, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.checkout-ship-row--rich {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  padding-right: 2.35rem;
}

.checkout-ship-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  padding: 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-ship-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.checkout-ship-main {
  min-width: 0;
}

.checkout-ship-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.6rem;
}

.checkout-ship-card--rich .checkout-ship-name {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.checkout-ship-card--rich .checkout-ship-desc {
  margin-top: 0.2rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.checkout-ship-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.28rem 0.65rem;
  border-radius: 8px;
  line-height: 1.2;
  border: 1px solid transparent;
  box-shadow: none;
  text-shadow: none;
}

/* Yumuşak tonlar: açık zeminde okunaklı, bağırmayan */
.checkout-ship-tag--cheap {
  color: #9d174d;
  background: #fff5f7;
  border-color: #fbcfe8;
}

.checkout-ship-tag--fast {
  color: #0f5132;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.checkout-ship-card--rich .checkout-ship-side {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.checkout-ship-check {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #60a5fa;
  opacity: 0;
  pointer-events: none;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.checkout-ship-card--rich.is-selected .checkout-ship-check {
  opacity: 1;
}

.checkout-pay-fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 0;
}

.checkout-pay-fieldset legend {
  padding: 0 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.checkout-pay-opt {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0.4rem 0;
  font-size: 0.9rem;
}

.checkout-pay-iban {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.checkout-summary-side {
  background: var(--card);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem;
  position: sticky;
  top: 6rem;
}

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

.checkout-summary-heading {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.checkout-mini-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  font-size: 0.78rem;
}

.checkout-mini-thumb {
  position: relative;
}

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

.checkout-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  border-radius: 999px;
}

.checkout-mini-title {
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.checkout-mini-body {
  min-width: 0;
}

.checkout-mini-meta {
  margin: 0 0 0.35rem;
}

.checkout-mini-meta .postr-kv-label {
  font-size: 0.74rem;
}

.checkout-mini-meta .postr-kv-val {
  font-size: 0.76rem;
}

.checkout-mini-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.checkout-mini-cur {
  font-size: 0.85rem;
  font-weight: 800;
}

.checkout-summary-rows {
  margin-top: 0.35rem;
}

.checkout-summary-note {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: default;
}

.checkout-summary-total {
  margin-top: 0.85rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  font-size: 1.05rem !important;
}

.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.95rem 1rem;
  border: none;
  border-radius: 10px;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.btn-continue:hover {
  opacity: 0.92;
}

.btn-continue--submit {
  margin-top: 1.15rem;
}

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);
}

.btn-auth-primary:disabled,
.btn-auth-primary.is-loading {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  pointer-events: none;
}

.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;
}

/* Category Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
  justify-content: center;
}

.filter-item {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-item:hover {
  background-color: #e8e8e8;
  border-color: #999;
}

.filter-item.active {
  background-color: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

