/* =============================================================
   Vitrin — E-ticaret tasarım sistemi
   Palet:  Primary #0B1633 · Secondary #15254B · Accent #C8A96A
           Background #F7F5F1 · Text #1E1E1E · White #FFFFFF
   Sayfa içeriği HTML'dedir; bu dosya yalnızca stildir.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy: #0b1633; /* primary */
  --navy-2: #15254b; /* secondary */
  --gold: #c8a96a; /* accent */
  --gold-dark: #b2914f;
  --gold-soft: #eaddc4;
  --cream: #f7f5f1; /* background */
  --ink: #1e1e1e; /* text */
  --white: #ffffff;

  --muted: #6f6a60; /* warm gray text */
  --line: #e6e1d8; /* borders on cream */
  --line-2: #eceae4;
  --danger: #b23b3b;
  --success: #3d7a54;
  --warn: #c08a2d;

  --shadow-sm: 0 1px 2px rgba(11, 22, 51, 0.06);
  --shadow: 0 8px 24px -14px rgba(11, 22, 51, 0.28);
  --shadow-lg: 0 24px 60px -24px rgba(11, 22, 51, 0.35);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;

  --container: 1200px;
  --header-h: 132px;

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype",
    "Palatino", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
svg {
  width: 1em;
  height: 1em;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.2px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding-block: 64px;
}
.section--tight {
  padding-block: 40px;
}
.stack {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  align-items: center;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.grow {
  flex: 1 1 auto;
}
.hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.gold {
  color: var(--gold-dark);
}

/* Section header */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.section-head .eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.section-head h2 {
  font-size: 34px;
}
.section-head .link {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  white-space: nowrap;
}
.section-head .link:hover {
  color: var(--gold-dark);
}

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--navy);
  color: var(--white);
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn:active {
  transform: translateY(0);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--gold);
}
.btn--sm {
  height: 38px;
  padding: 0 16px;
  font-size: 13px;
}
.btn--lg {
  height: 54px;
  padding: 0 34px;
  font-size: 15px;
}
.btn--block {
  width: 100%;
}
.btn--danger {
  background: var(--danger);
  color: #fff;
}
.btn--danger:hover {
  background: #953030;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Icon button */
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy);
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.icon-btn:hover {
  background: rgba(11, 22, 51, 0.06);
}
.icon-btn svg {
  width: 21px;
  height: 21px;
}
.icon-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* Tag / pill */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--gold-soft);
  color: var(--navy-2);
}
.tag--navy {
  background: var(--navy);
  color: #fff;
}
.tag--sale {
  background: var(--danger);
  color: #fff;
}
.tag--new {
  background: var(--success);
  color: #fff;
}

/* Status chips (tables) */
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.status--active,
.status--onaylı,
.status--teslim {
  background: #e6f0ea;
  color: var(--success);
}
.status--pending,
.status--bekliyor,
.status--kargoda {
  background: #f6ecd7;
  color: var(--warn);
}
.status--passive,
.status--iptal,
.status--askıda {
  background: #f3e0df;
  color: var(--danger);
}

/* =============================================================
   Header
   ============================================================= */
.announce {
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.announce b {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-block: 20px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.04em;
  color: var(--navy);
  justify-self: center;
  grid-column: 2;
  text-align: center;
  line-height: 1;
}
.brand .dot {
  color: var(--gold);
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

/* search in header */
.header-search {
  grid-column: 1;
  justify-self: start;
  width: 100%;
  max-width: 320px;
  position: relative;
}
.header-search input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0 16px 0 42px;
  font-size: 14px;
}
.header-search input:focus {
  outline: none;
  border-color: var(--gold);
}
.header-search svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* category nav */
.header-nav {
  border-top: 1px solid var(--line);
}
.header-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  padding-block: 14px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.header-nav a:hover,
.header-nav a.is-active {
  color: var(--gold-dark);
}
.header-nav a:hover::after,
.header-nav a.is-active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  grid-column: 1;
  justify-self: start;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.drawer.is-open {
  visibility: visible;
  opacity: 1;
}
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 51, 0.45);
}
.drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 82%;
  max-width: 320px;
  background: var(--cream);
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}
.drawer__panel a {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  background: var(--navy);
  color: #cfd6e4;
  margin-top: 72px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: 56px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer .brand {
  color: #fff;
  justify-self: start;
  text-align: left;
  grid-column: auto;
  margin-bottom: 14px;
}
.site-footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #aab4c8;
  max-width: 320px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #b8c0d2;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.newsletter input {
  flex: 1;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
  font-size: 14px;
}
.newsletter input::placeholder {
  color: #8b95ab;
}
.newsletter input:focus {
  outline: none;
  border-color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #98a2b8;
}
.footer-bottom .pay {
  display: flex;
  gap: 8px;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 60%, #1c3163 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.28), transparent 62%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-block: 92px;
}
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero p {
  color: #cdd5e6;
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #24365f, #0e1c3d);
  border: 1px solid rgba(200, 169, 106, 0.35);
  display: grid;
  place-items: center;
  font-size: 150px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* Slayt görseli — önerilen boyut 1200 × 1500 px (4:5) */
.hero__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__art img[src=""],
.hero__art img:not([src]) {
  display: none;
}

/* ---------- Hero slider ---------- */
.hero--slider {
  position: relative;
}
.hero__track {
  position: relative;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.hero-slide.is-active .hero__inner > div > * {
  animation: heroUp 0.7s both;
}
.hero-slide.is-active .hero__inner > div > *:nth-child(2) { animation-delay: 0.08s; }
.hero-slide.is-active .hero__inner > div > *:nth-child(3) { animation-delay: 0.16s; }
.hero-slide.is-active .hero__inner > div > *:nth-child(4) { animation-delay: 0.24s; }
.hero-slide.is-active .hero__art {
  animation: heroPop 0.8s both 0.1s;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroPop {
  from { opacity: 0; transform: scale(0.92) translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.hero__arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hero__arrow--prev { left: 22px; }
.hero__arrow--next { right: 22px; }
.hero__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero__dots button {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.25s, width 0.25s;
}
.hero__dots button.is-active {
  background: var(--gold);
  width: 52px;
}
@media (max-width: 860px) {
  .hero__arrow { display: none; }
}

/* trust bar */
.trust {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 26px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust__item svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.trust__item b {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.trust__item span {
  font-size: 12.5px;
  color: var(--muted);
}

/* =============================================================
   Category tiles
   ============================================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.cat-tile .ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.cat-tile span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
}

/* =============================================================
   Product cards
   ============================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-size: 74px;
  background: linear-gradient(150deg, #f2efe8, #eae5da);
}
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: color 0.2s, background 0.2s, transform 0.15s;
}
.product-card__fav svg {
  width: 19px;
  height: 19px;
}
.product-card__fav:hover {
  transform: scale(1.08);
}
.product-card__fav.is-active {
  color: var(--danger);
}
.product-card__fav.is-active svg {
  fill: var(--danger);
}
.product-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-card__seller {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.product-card__name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.product-card__name a:hover {
  color: var(--navy-2);
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--muted);
}
.rating svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: var(--gold);
}
.product-card__foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price .now {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.price .was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.add-cart {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.add-cart:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.add-cart svg {
  width: 19px;
  height: 19px;
}

/* =============================================================
   Breadcrumb / page head
   ============================================================= */
.page-head {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding-block: 34px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.breadcrumb a:hover {
  color: var(--gold-dark);
}
.breadcrumb span {
  color: var(--gold-dark);
}
.page-head h1 {
  font-size: 38px;
}

/* =============================================================
   Shop layout (sidebar filters + grid)
   ============================================================= */
.shop {
  display: grid;
  grid-template-columns: 258px 1fr;
  gap: 34px;
  align-items: start;
}
.filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 152px;
}
.filter-group {
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}
.filter-group:first-child {
  padding-top: 0;
}
.filter-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.filter-group h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}
.check input {
  width: 17px;
  height: 17px;
  accent-color: var(--navy);
}
.check .count {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.shop-toolbar .count {
  font-size: 14px;
  color: var(--muted);
}
.select {
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0 38px 0 14px;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236f6a60' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.select:focus {
  outline: none;
  border-color: var(--gold);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a {
  min-width: 42px;
  height: 42px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pagination a:hover,
.pagination a.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* =============================================================
   Product detail
   ============================================================= */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pdp__gallery {
  position: sticky;
  top: 152px;
}
.pdp__main-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #f2efe8, #e7e1d5);
  display: grid;
  place-items: center;
  font-size: 180px;
  border: 1px solid var(--line);
}
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.pdp__thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, #f2efe8, #e7e1d5);
  display: grid;
  place-items: center;
  font-size: 40px;
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s;
}
.pdp__thumb:hover,
.pdp__thumb.is-active {
  border-color: var(--gold);
}
.pdp__info h1 {
  font-size: 40px;
  margin-block: 8px 14px;
}
.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-block: 18px;
}
.pdp__price .now {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.pdp__price .was {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}
.pdp__desc {
  color: #444;
  line-height: 1.8;
  margin-block: 20px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin-block: 22px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}
.qty button {
  width: 44px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: background 0.2s;
}
.qty button:hover {
  background: var(--cream);
}
.qty input {
  width: 52px;
  height: 48px;
  text-align: center;
  border: 0;
  border-inline: 1px solid var(--line);
  font-weight: 600;
  background: var(--white);
}
.qty input:focus {
  outline: none;
}
.pdp__actions {
  display: flex;
  gap: 12px;
  margin-block: 20px;
  flex-wrap: wrap;
}
.spec {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.spec b {
  min-width: 130px;
  color: var(--navy);
  font-weight: 600;
}
.seller-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-top: 18px;
}
.seller-card .logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

/* =============================================================
   Forms / fields
   ============================================================= */
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.field label,
.label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.input,
.textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  height: 48px;
  font-size: 14.5px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.textarea {
  height: auto;
  padding: 12px 14px;
  min-height: 120px;
  resize: vertical;
}
.input::placeholder,
.textarea::placeholder {
  color: #a49e93;
}
.input:focus,
.textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.16);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.18s;
}
.chip:hover {
  border-color: var(--gold);
}
.chip.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 180px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  background: rgba(200, 169, 106, 0.07);
  color: var(--gold-dark);
  cursor: pointer;
  transition: background 0.2s;
}
.dropzone:hover {
  background: rgba(200, 169, 106, 0.14);
}
.dropzone svg {
  width: 34px;
  height: 34px;
}

/* =============================================================
   Cards / panels (generic)
   ============================================================= */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card--pad {
  padding: 24px;
}
.panel-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}

/* auth */
.auth-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding-block: 56px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.auth-card h1 {
  font-size: 30px;
  margin-bottom: 6px;
}
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 5px;
  margin-block: 22px;
}
.auth-tabs button {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}
.auth-tabs button.is-active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.divider-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.divider-or::before,
.divider-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* =============================================================
   Cart / checkout
   ============================================================= */
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  align-items: start;
}
.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.cart-line__img {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, #f2efe8, #e7e1d5);
  display: grid;
  place-items: center;
  font-size: 44px;
}
.cart-line__name {
  font-weight: 600;
  color: var(--navy);
}
.cart-line__meta {
  font-size: 13px;
  color: var(--muted);
}
.cart-line__end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 152px;
}
.summary h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14.5px;
  color: #333;
}
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}
.coupon {
  display: flex;
  gap: 8px;
  margin-block: 14px;
}
.coupon input {
  flex: 1;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-size: 14px;
}
.empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.empty svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 16px;
}
.empty h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* steps */
.steps {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}
.steps .step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.steps .step b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
}
.steps .step.is-active b {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.steps .sep {
  flex: 1;
  height: 1px;
  background: var(--line);
  align-self: center;
}

/* =============================================================
   Dashboard (seller + admin)
   ============================================================= */
.dash {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.dash-side {
  background: var(--navy);
  color: #c9d1e2;
  padding: 26px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.dash-side .brand {
  color: #fff;
  justify-self: start;
  text-align: left;
  grid-column: auto;
  font-size: 22px;
  margin-bottom: 4px;
}
.dash-side .role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #b3bdd2;
  transition: background 0.2s, color 0.2s;
}
.dash-nav a svg {
  width: 19px;
  height: 19px;
}
.dash-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.dash-nav a.is-active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.dash-side .sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-block: 18px;
}
.dash-main {
  background: var(--cream);
  min-width: 0;
}
.dash-topbar [data-dash-toggle] {
  display: none;
}
@media (max-width: 1024px) {
  .dash-topbar [data-dash-toggle] {
    display: inline-grid;
  }
}
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.dash-topbar h1 {
  font-size: 24px;
}
.dash-body {
  padding: 32px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

/* stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.stat .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat .ico {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-dark);
}
.stat .ico svg {
  width: 21px;
  height: 21px;
}
.stat .val {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 14px;
}
.stat .lbl {
  font-size: 13px;
  color: var(--muted);
}
.stat .delta {
  font-size: 12px;
  font-weight: 600;
}
.stat .delta.up {
  color: var(--success);
}
.stat .delta.down {
  color: var(--danger);
}

/* =============================================================
   Tables
   ============================================================= */
.table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.table-head h3 {
  font-family: var(--serif);
  font-size: 19px;
}
.table-scroll {
  overflow-x: auto;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
table.data th {
  text-align: left;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 13px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.data td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  vertical-align: middle;
}
table.data tr:last-child td {
  border-bottom: 0;
}
table.data tbody tr {
  transition: background 0.15s;
}
table.data tbody tr:hover {
  background: #faf9f6;
}
.cell-prod {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cell-prod .thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, #f2efe8, #e7e1d5);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cell-prod b {
  color: var(--navy);
  font-weight: 600;
}
.cell-prod span {
  font-size: 12px;
  color: var(--muted);
}
/* isim + alt bilgi alt alta dursun */
.cell-prod div b,
.cell-prod div span {
  display: block;
}
.t-actions {
  display: flex;
  gap: 6px;
}
.t-actions button,
.t-actions a {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  transition: all 0.15s;
}
.t-actions button:hover,
.t-actions a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.t-actions .del:hover {
  border-color: var(--danger);
  color: var(--danger);
}
.t-actions svg {
  width: 16px;
  height: 16px;
}

/* account layout */
.account {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: start;
}
.account-nav {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  position: sticky;
  top: 152px;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.account-nav a svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
}
.account-nav a:hover {
  background: var(--cream);
}
.account-nav a.is-active {
  background: var(--navy);
  color: #fff;
}
.account-nav a.is-active svg {
  color: var(--gold);
}

/* =============================================================
   Kurumsal / yasal sayfalar
   ============================================================= */
.legal {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}
.legal-nav {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  position: sticky;
  top: 152px;
}
.legal-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.legal-nav a:hover {
  background: var(--cream);
}
.legal-nav a.is-active {
  background: var(--navy);
  color: #fff;
}
.prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.prose h2 {
  font-size: 26px;
  margin-top: 28px;
  margin-bottom: 10px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 8px;
}
.prose p,
.prose li {
  color: #444;
  line-height: 1.85;
  margin-bottom: 12px;
}
.prose ul,
.prose ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose .updated {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-size: 14px;
  text-align: left;
}
.prose th {
  background: var(--cream);
  color: var(--navy);
}

/* SSS akordiyon */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.is-open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 22px 20px;
  color: #444;
  line-height: 1.8;
}
.faq-item.is-open .faq-a {
  max-height: 420px;
}

/* İletişim */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-item b { color: var(--navy); display: block; }
.contact-item span { color: var(--muted); font-size: 14px; }

/* Hakkımızda: değerler + istatistik */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.value-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: var(--gold-soft);
  color: var(--navy);
}
.value-card .ico svg { width: 26px; height: 26px; }
.value-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
}
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.count-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  color: #fff;
  text-align: center;
}
.count-strip .n {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
}
.count-strip .l { font-size: 13px; color: #b9c2d4; letter-spacing: 0.06em; }

@media (max-width: 860px) {
  .legal { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .prose { padding: 24px 20px; }
  .contact-grid,
  .value-grid { grid-template-columns: 1fr; }
  .count-strip { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* =============================================================
   Modal (popup)
   ============================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s, visibility 0.22s;
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
}
.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 51, 0.55);
  backdrop-filter: blur(2px);
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s;
}
.modal.is-open .modal__box {
  transform: none;
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal__head h3 {
  font-family: var(--serif);
  font-size: 22px;
}
.modal__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover {
  background: var(--cream);
  color: var(--navy);
}
.modal__body {
  padding: 22px 24px;
}
.modal__foot {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 16px 24px 22px;
}
/* detay satırları */
.dl-row {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14.5px;
}
.dl-row:last-child {
  border-bottom: 0;
}
.dl-row dt {
  color: var(--muted);
  font-size: 13px;
}
.dl-row dd {
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}
@media (max-width: 560px) {
  .dl-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* =============================================================
   Toast
   ============================================================= */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 360px;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: toast-in 0.25s ease;
}
.toast svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.toast--success svg {
  color: var(--gold);
}
.toast--error {
  background: var(--danger);
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================
   Animations (scroll reveal)
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 46px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .dash {
    grid-template-columns: 1fr;
  }
  .dash-side {
    position: fixed;
    z-index: 70;
    transform: translateX(-100%);
    transition: transform 0.28s;
    width: 260px;
  }
  .dash-side.is-open {
    transform: translateX(0);
  }
}
@media (max-width: 860px) {
  .header-search {
    display: none;
  }
  .header-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .header-main {
    grid-template-columns: auto 1fr auto;
  }
  .brand {
    grid-column: 2;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 60px;
    text-align: center;
  }
  .hero__art {
    display: none;
  }
  .hero p {
    margin-inline: auto;
  }
  .hero__cta {
    justify-content: center;
  }
  .trust__grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop,
  .pdp,
  .cart-layout,
  .checkout-layout,
  .account {
    grid-template-columns: 1fr;
  }
  .filters,
  .account-nav,
  .pdp__gallery,
  .summary {
    position: static;
  }
  .product-grid,
  .product-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .container {
    padding-inline: 16px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .product-grid--3 {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding-block: 44px;
  }
  .page-head h1 {
    font-size: 28px;
  }
}
