:root {
  --bg: #e8ecf1;
  --bg-2: #f4f6f9;
  --surface: #ffffff;
  --ink: #0b1220;
  --muted: #5b6577;
  --line: #d5dce6;
  --accent: #ea580c;
  --accent-2: #c2410c;
  --accent-soft: rgba(234, 88, 12, .12);
  --tg: #2aabee;
  --ok: #059669;
  --warn: #d97706;
  --danger: #dc2626;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(15, 23, 42, .08);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% -5%, rgba(234, 88, 12, .09), transparent 55%),
    radial-gradient(800px 380px at 100% 0%, rgba(37, 99, 235, .07), transparent 50%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 .5rem;
  letter-spacing: -.03em;
}

.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

/* Reveal: always visible by default (Next.js SPA nav breaks DOMContentLoaded). */
.reveal { opacity: 1; transform: none; }
html.js .reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
}
html.js .reveal.is-in,
html.js .reveal:not(.is-pending) { opacity: 1; transform: none; }

/* Announcement */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: .65rem 1rem;
  font-size: .92rem;
  font-weight: 600;
}
.announce a { color: #fdba74; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #f97316);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(234, 88, 12, .35);
}
.nav { display: flex; gap: 1.25rem; margin-left: 1.5rem; flex: 1; }
.nav a { color: var(--muted); font-weight: 600; font-size: .92rem; }
.nav a:hover, .nav a.active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: .85rem; font-weight: 600; font-size: .9rem; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.3rem;
  border-radius: 14px;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-primary, .btn-accent {
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  box-shadow: 0 12px 28px rgba(234, 88, 12, .28);
}
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-danger { background: var(--danger); color: #fff; }
.btn-ghost-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .7rem 1rem;
}
.btn-ghost-line:hover { border-color: #b8c2d0; background: #fff; }
.btn-ghost { background: transparent; color: var(--muted); padding: .5rem .75rem; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 1.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-tg {
  background: linear-gradient(135deg, #2aabee, #229ed9);
  color: #fff;
  box-shadow: 0 10px 24px rgba(42, 171, 238, .28);
}

.flash { margin: 1rem auto; padding: .9rem 1rem; border-radius: 12px; font-weight: 600; }
.flash-success { background: #ecfdf5; color: #047857; }
.flash-error { background: #fef2f2; color: #b91c1c; }
.flash-info { background: #eff6ff; color: #1d4ed8; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 0;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .55), transparent 45%),
    linear-gradient(180deg, rgba(234, 88, 12, .08), transparent 55%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(15, 23, 42, .06), transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0M30 60L60 30M0 30L30 0' stroke='%230b1220' stroke-opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-bottom: 2.5rem;
}
.brand-signal {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  letter-spacing: -.055em;
  margin: 0 0 .55rem;
  color: var(--ink);
  line-height: .92;
}
.hero h1 {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .9rem;
  max-width: 22ch;
}
.hero > .container > p,
.hero-inner > p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.6rem;
  max-width: 40ch;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

.marquee {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
  overflow: hidden;
  margin-top: auto;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: .95rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.marquee-track span::after {
  content: "·";
  margin-left: 2.5rem;
  color: var(--accent);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-tight { padding-top: 2rem; }
.section-head { margin-bottom: 2.2rem; max-width: 36rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 { font-size: clamp(1.7rem, 3.8vw, 2.45rem); }
.section-head p { color: var(--muted); margin: 0; }

.cat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: #c5ced9;
  box-shadow: var(--shadow);
}
.cat-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--c, var(--accent));
  opacity: .16;
  top: -36px;
  right: -28px;
}
.cat-card strong {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cat-card h3 { font-size: 1.12rem; margin: .4rem 0 .25rem; }
.cat-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
}
.step-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: .7rem;
}
.step h3 { font-size: 1.12rem; }
.step p { margin: 0; color: var(--muted); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.filter-chip {
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #c5ced9;
}
.product-media {
  position: relative;
  aspect-ratio: 16/10;
  display: block;
  overflow: hidden;
  background: var(--bg-2);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }
.product-media-label { display: none; }
.page-hero-slim { padding: 1.25rem 0; }
.section-product { padding-top: 1.5rem; }
.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: start;
}
.detail-media {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16/11;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: var(--shadow);
}
.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-cat {
  display: inline-flex;
  background: var(--ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .7rem;
  border-radius: 999px;
  margin-bottom: .85rem;
}
.detail-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: .45rem;
}
.detail-lead {
  color: var(--muted);
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
}
.detail-price-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.1rem;
}
.detail-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--ink);
  line-height: 1;
}
.detail-price-meta {
  margin-top: .4rem;
  color: var(--muted);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.detail-specs {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.detail-specs li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .95rem;
}
.detail-copy {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.detail-copy h3 {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.order-panel {
  background: #fff;
  border: 1px solid rgba(42, 171, 238, .28);
  border-radius: 16px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(42, 171, 238, .08);
}
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
}

.product-badges {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.tag { font-size: .72rem; font-weight: 700; padding: .28rem .55rem; border-radius: 8px; }
.tag-sold { background: #64748b; color: #fff; }
.tag-sale { background: var(--danger); color: #fff; }
.tag-cat { background: rgba(11, 18, 32, .75); color: #fff; }
.tag-stock { background: #059669; color: #fff; }
.stock-chip {
  margin-left: auto;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ok);
  background: #ecfdf5;
  padding: .2rem .55rem;
  border-radius: 8px;
}

/* Müşteri vitrin */
.showcase-section {
  background: linear-gradient(180deg, rgba(255,255,255,.65), transparent 40%);
}
.showcase-head {
  text-align: center;
  margin-bottom: 2.2rem;
}
.showcase-badge {
  display: inline-block;
  background: #b91c1c;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 8px;
  margin-bottom: .85rem;
}
.showcase-head h2 {
  color: #b91c1c;
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  margin-bottom: .35rem;
}
.showcase-head p { color: var(--muted); margin: 0; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin-inline: auto;
}
.showcase-frame {
  margin: 0;
  background: #1f2937;
  border-radius: 18px;
  padding: .65rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
  transition: transform .25s ease;
}
.showcase-frame:hover { transform: translateY(-4px); }
.showcase-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
}
.showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top center;
}
.showcase-frame figcaption {
  color: #cbd5e1;
  font-size: .88rem;
  padding: .7rem .35rem .25rem;
  text-align: center;
}
.showcase-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.showcase-admin-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem;
  background: #fff;
}
.showcase-admin-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: .75rem;
}
@media (max-width: 560px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* Ortak özellikler */
.features-section { background: #fff; }
.features-title {
  text-align: center;
  margin-bottom: 2.4rem;
}
.features-title h2 {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0;
}
.features-title h2 span {
  position: relative;
  display: inline-block;
}
.features-title h2 span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.18em;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.5rem;
  max-width: 920px;
  margin-inline: auto;
}
.feature-card {
  position: relative;
  margin: 0;
  background: #1c1c1e;
  color: #fff;
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.25rem 1.35rem;
  border-top: 3px solid var(--accent);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}
.feature-card-last {
  grid-column: 1 / -1;
  max-width: calc(50% - .75rem);
  justify-self: center;
  width: 100%;
}
.feature-check {
  position: absolute;
  top: -14px;
  left: 18px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, .35);
}
.feature-card p {
  margin: .35rem 0 0;
  font-size: .95rem;
  line-height: 1.55;
  color: #f3f4f6;
}
@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-last {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

/* İletişim şeridi + bilgi kartları — açık tema */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .95rem 1.1rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #c5ced9;
}
.contact-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  flex-shrink: 0;
}
.contact-ico-wa { color: #16a34a; background: #ecfdf5; }
.contact-ico-tg { color: #0284c7; background: #e0f2fe; }
.contact-ico-shop { color: var(--accent); background: var(--accent-soft); font-size: 1.2rem; }
.contact-meta { display: flex; flex-direction: column; gap: .1rem; flex: 1; min-width: 0; }
.contact-meta strong { font-family: var(--font-display); font-size: .95rem; }
.contact-meta small { color: var(--muted); font-size: .82rem; overflow: hidden; text-overflow: ellipsis; }
.contact-go {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 800; flex-shrink: 0;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.info-card {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.info-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 800; margin-bottom: .85rem;
}
.info-card h3 {
  font-size: 1.05rem; margin: 0 0 .45rem; color: var(--ink);
}
.info-card p {
  margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5;
}

/* İlan kartları — açık, yan yana */
.ilan-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.ilan-card {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.3rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ilan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #c5ced9;
}
.ilan-top { margin-bottom: .85rem; }
.ilan-title {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  margin: 0 0 .45rem;
  color: var(--ink);
}
.ilan-title a:hover { color: var(--accent); }
.ilan-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--ink);
  line-height: 1;
}
.ilan-price-sub {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .85rem;
}
.ilan-specs {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: .45rem;
  flex: 1;
}
.ilan-specs li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--ink);
  font-size: .9rem;
}
.ilan-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  margin-top: .4rem;
  flex-shrink: 0;
}
.btn-ilan {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  border-radius: 14px;
  padding: .9rem 1.15rem;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(234, 88, 12, .22);
  margin-top: auto;
}
.btn-ilan:disabled {
  background: #94a3b8;
  box-shadow: none;
  opacity: .75;
}

@media (max-width: 900px) {
  .contact-strip, .info-cards, .ilan-list { grid-template-columns: 1fr; }
}

.product-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.product-body h3 { font-size: 1.05rem; }
.product-body .desc { color: var(--muted); font-size: .9rem; margin: 0; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: auto;
  padding-top: .35rem;
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--ink);
}
.price-old { color: var(--muted); text-decoration: line-through; font-size: .95rem; }
.product-actions {
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: .5rem;
  margin-top: .7rem;
}

.faq-list { max-width: 720px; display: grid; gap: .75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer { padding: 0 1.2rem 1.15rem; color: var(--muted); }

.cta-band {
  background: linear-gradient(135deg, #0b1220, #1e293b);
  color: #fff;
  text-align: left;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 24px;
}
.cta-band h2 { margin-bottom: .5rem; font-size: clamp(1.7rem, 3.5vw, 2.3rem); color: #fff; }
.cta-band p { color: #94a3b8; margin: 0 0 1.4rem; max-width: 36ch; }

.site-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 3.25rem 0 1.5rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.site-footer h5 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.site-footer a:hover { color: #fdba74; }
.site-footer ul li { margin-bottom: .4rem; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.25rem;
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.tg-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--tg);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(42, 171, 238, .4);
}
.tg-float:hover { filter: brightness(1.06); transform: translateY(-2px); }

.page-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, .7), transparent);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.breadcrumb { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.breadcrumb a:hover { color: var(--accent); }

.auth-wrap { max-width: 440px; margin: 2.5rem auto; }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.panel h1 { font-size: 1.5rem; margin-bottom: .35rem; }
.panel h3 { margin-bottom: .75rem; }
.panel .sub { color: var(--muted); margin: 0 0 1.25rem; }
label { display: block; font-weight: 600; font-size: .88rem; margin: .9rem 0 .35rem; }
input, textarea, select {
  width: 100%;
  padding: .8rem .95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(234, 88, 12, .35);
  border-color: var(--accent);
}
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
}
th, td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
th {
  background: var(--bg-2);
  font-family: var(--font-display);
  font-size: .85rem;
}
.qty-input { width: 72px; }
.cart-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  position: sticky;
  top: 90px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 1.25rem;
  align-items: start;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.detail-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.detail-media {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16/11;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  border: 1px solid var(--line);
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy { color: var(--muted); }
.order-panel {
  background: var(--surface);
  border: 1px solid rgba(42, 171, 238, .35);
  border-radius: 16px;
  padding: 1.15rem;
}
.order-hint { margin: .85rem 0 0; color: var(--muted); font-size: .88rem; }
.stock-ok { color: var(--ok); font-weight: 700; }
.stock-out { color: var(--danger); font-weight: 700; }

.delivery-box {
  background: #0b1220;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .85rem;
  white-space: pre-wrap;
  margin-top: .75rem;
}
.status {
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}
.status-pending { background: #fffbeb; color: #b45309; }
.status-paid { background: #ecfdf5; color: #047857; }
.status-cancelled { background: #fef2f2; color: #b91c1c; }
.status-available { background: #ecfdf5; color: #047857; }
.status-sold { background: #f1f5f9; color: #475569; }
.status-reserved { background: #eff6ff; color: #1d4ed8; }

.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { margin-top: 1.5rem; font-size: 1.2rem; }
.legal-content p { color: var(--muted); }

/* Admin */
.admin-body {
  background: #f0f3f7;
  color: var(--ink);
  font-family: var(--font-body);
}
.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}
.admin-side {
  background: #0b1220;
  color: #cbd5e1;
  padding: 1.5rem 1rem;
}
.admin-side .logo { color: #fff; margin-bottom: 1.5rem; padding: 0 .5rem; }
.admin-side .logo-mark {
  background: linear-gradient(145deg, var(--accent), #f97316);
  box-shadow: none;
}
.admin-side a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 10px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: .25rem;
}
.admin-side a:hover, .admin-side a.active {
  background: rgba(234, 88, 12, .15);
  color: #fff;
}
.admin-main { padding: 1.5rem; }
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
}
.stat-card .n {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-card .l { color: var(--muted); font-size: .85rem; }
.stat-card.warn .n { color: var(--warn); }
.stat-card.ok .n { color: var(--ok); }
.admin-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quick-actions {
  display: grid;
  gap: .55rem;
}
.quick-actions a, .quick-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
}
.quick-actions a:hover, .quick-actions button:hover {
  border-color: #c5ced9;
  background: var(--bg-2);
}
.alert-list { display: grid; gap: .55rem; }
.alert-item {
  padding: .85rem 1rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  font-size: .92rem;
}
.alert-item a { color: var(--accent-2); font-weight: 700; }
.inline-forms { display: flex; gap: .35rem; flex-wrap: wrap; align-items: center; }
.inline-forms form { display: inline; margin: 0; }
.badge-soft {
  display: inline-block;
  padding: .2rem .5rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent-2);
}
.copy-btn { cursor: pointer; }

@media (max-width: 980px) {
  .cat-strip { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .admin-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav, .header-actions { display: none; }
  .header-inner.nav-open .nav,
  .header-inner.nav-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    gap: .75rem;
    z-index: 40;
  }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout, .detail-grid { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { display: flex; flex-wrap: wrap; gap: .35rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding-top: 3.2rem; }
  .site-header { background: #fff; }
  html.js .reveal,
  html.js .reveal.is-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 560px) {
  .footer-grid, .stat-grid, .cat-strip { grid-template-columns: 1fr; }
  .product-actions { grid-template-columns: 1fr; }
  .brand-signal { font-size: clamp(2.3rem, 12vw, 3.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
