/* =========================================================
   PARAGRI TARIM - Ana Stil Dosyasi
   Kimlik: bir yedek parca katalogu gibi hisseden, endustriyel,
   parca numaralarini (SKU) gorsel bir imza ogesi olarak kullanan tasarim.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  --graphite-900: #262738;
  --graphite-800: #373848;
  --graphite-700: #4d4e5c;
  --steel-500: #5b6670;
  --steel-300: #9aa3ab;
  --steel-100: #e3e6e8;
  --brand-500: #28a86c;
  --brand-600: #228f5c;
  --wheat-100: #f6f2e9;
  --white: #ffffff;
  --danger: #c0392b;
  --success: #2f7d4f;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 3px;
  --shadow: 0 1px 3px rgba(27,31,34,0.08), 0 1px 2px rgba(27,31,34,0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
  color: var(--graphite-900);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------- Ust serit -------------------- */
.top-strip {
  background: var(--graphite-900);
  color: var(--steel-300);
  font-size: 13px;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
}
.top-strip a { color: var(--steel-100); }
.top-strip a:hover { color: var(--brand-500); }
.top-strip-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-500);
  color: var(--white);
  position: relative;
  animation: phone-pulse 1.8s ease-in-out infinite;
}
@keyframes phone-pulse {
  0% { box-shadow: 0 0 0 0 rgba(40,168,108,0.65); }
  70% { box-shadow: 0 0 0 9px rgba(40,168,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,168,108,0); }
}
@media (prefers-reduced-motion: reduce) {
  .top-strip-phone { animation: none; }
}
@media (min-width: 861px) {
  /* Telefon numarası masaüstünde sadece footer'da gösterilir */
  .top-strip-phone { display: none; }
}

/* -------------------- Header -------------------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--steel-100);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--graphite-900);
  white-space: nowrap;
}
.logo span { color: var(--brand-500); }
.logo-image { height: 44px; width: auto; display: block; }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 101;
}
body.nav-open { overflow: hidden; }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--graphite-900);
  margin: 0 auto;
  transition: transform .2s, opacity .2s;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,31,34,0.5);
  z-index: 45; /* .site-header (z-index:50) altında kalmalı, aksi halde
                  header içindeki mobile-menu tıklanamaz hale gelir */
}
.mobile-menu { display: contents; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 24px; flex-wrap: wrap; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--graphite-700);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--brand-600); border-color: var(--brand-500); }

.search-form { display: flex; flex: 1; max-width: 340px; }
.search-input-wrap { position: relative; flex: 1; }
.search-input-wrap input {
  width: 100%;
  border: 1px solid var(--steel-100);
  border-right: none;
  padding: 9px 12px;
  font-size: 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body);
  box-sizing: border-box;
}
.search-input-wrap input:focus { outline: 2px solid var(--brand-500); outline-offset: -2px; }
.search-suggest {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 360px;
  overflow-y: auto;
  z-index: 60;
}
.search-suggest.is-open { display: block; }
.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--steel-100);
}
.search-suggest-item:last-child { border-bottom: none; }
.search-suggest-item:hover,
.search-suggest-item.is-active { background: var(--wheat-100); }
.search-suggest-item img,
.search-suggest-noimg {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--wheat-100);
  flex-shrink: 0;
}
.search-suggest-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.search-suggest-name { font-size: 13px; color: var(--graphite-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-suggest-sku { font-family: var(--font-mono); font-size: 11px; color: var(--steel-500); }
.search-suggest-price { font-family: var(--font-display); font-size: 13px; color: var(--graphite-900); flex-shrink: 0; }

.search-form button {
  border: 1px solid var(--graphite-900);
  background: var(--graphite-900);
  color: var(--white);
  padding: 0 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
}
.search-form button:hover { background: var(--brand-500); border-color: var(--brand-500); }

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cart-badge {
  background: var(--brand-500);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* -------------------- Breadcrumb -------------------- */
.breadcrumb {
  font-size: 13px;
  color: var(--steel-500);
  padding: 14px 0;
}
.breadcrumb a:hover { color: var(--brand-600); }
.breadcrumb .sep { margin: 0 6px; color: var(--steel-300); }

/* -------------------- Hero / Kategori indeksi -------------------- */
.hero-slider {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--graphite-900);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,31,34,0.82) 0%, rgba(27,31,34,0.45) 55%, rgba(27,31,34,0.15) 100%);
  display: flex;
  align-items: center;
}
.hero-slide-overlay h1 { color: var(--white); font-size: 40px; max-width: 620px; margin-bottom: 10px; }
.hero-slide-overlay p { color: var(--steel-300); max-width: 520px; font-size: 16px; margin-bottom: 20px; }
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}
.hero-slider-arrow:hover { background: var(--brand-500); }
.hero-slider-arrow.prev { left: 20px; }
.hero-slider-arrow.next { right: 20px; }
.hero-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
}
.hero-slider-dot.is-active { background: var(--brand-500); }
@media (max-width: 860px) {
  .hero-slider { height: 320px; }
  .hero-slide-overlay h1 { font-size: 28px; }
  .hero-slider-arrow { display: none; }
}

.catalog-hero {
  background: var(--graphite-900);
  color: var(--white);
  padding: 56px 0 44px;
}
.catalog-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.catalog-hero h1 {
  font-size: 44px;
  color: var(--white);
  margin: 6px 0 10px;
  max-width: 640px;
}
.catalog-hero p {
  color: var(--steel-300);
  max-width: 560px;
  font-size: 16px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 6px;
}

/* Kategori indeksi - parca katalogu bolum listesi gibi numaralandirilmis */
.category-index {
  padding: 48px 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.category-card {
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.15s, transform 0.15s;
  background: var(--white);
}
.category-card:hover {
  border-color: var(--brand-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.category-card .index-no {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-500);
  border: 1px solid var(--brand-500);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-card-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 6px;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--wheat-100);
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.category-card:hover .category-card-img {
  filter: grayscale(0%);
  opacity: 1;
}
.category-card h3 {
  font-size: 19px;
  margin: 0 0 4px;
}
.category-card p {
  margin: 0;
  font-size: 13px;
  color: var(--steel-500);
}
.category-card .sub-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-300);
  margin-top: 6px;
  display: block;
}

/* --- Gerçek fotoğraflı, banner tarzı kategori kartı --- */
.category-card-banner {
  position: relative;
  display: block;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: none;
  background: var(--wheat-100);
}
.category-card-banner:hover { transform: none; box-shadow: none; border-color: transparent; }
.category-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card-banner:hover .category-card-bg { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,39,56,0) 35%, rgba(38,39,56,0.55) 70%, rgba(38,39,56,0.88) 100%);
  transition: background 0.25s ease;
}
.category-card-banner:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(38,39,56,0.1) 20%, rgba(38,39,56,0.65) 65%, rgba(38,39,56,0.92) 100%);
}
.category-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.category-card-content .sub-count {
  color: rgba(255,255,255,0.75);
  margin-top: 0;
}
.category-card-content h3 {
  color: var(--white);
  font-size: 20px;
  margin: 2px 0 2px;
  text-transform: none;
}
.category-card-content p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin: 0;
  max-width: 42ch;
}
.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-500);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.category-card-cta svg { transition: transform 0.2s ease; }
.category-card-banner:hover .category-card-cta { background: var(--brand-600); }
.category-card-banner:hover .category-card-cta svg { transform: translateX(3px); }

@media (max-width: 560px) {
  .category-card-banner { aspect-ratio: 16 / 11; }
  .category-card-content { padding: 16px; }
  .category-card-content h3 { font-size: 17px; }
  .category-card-content p { font-size: 12.5px; }
}

/* -------------------- Urun izgarasi -------------------- */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--steel-100);
  flex-wrap: wrap;
  gap: 12px;
}
.subcategory-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.subcategory-pills a {
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid var(--steel-100);
  border-radius: 999px;
  color: var(--graphite-700);
}
.subcategory-pills a.active,
.subcategory-pills a:hover {
  background: var(--graphite-900);
  border-color: var(--graphite-900);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  padding: 28px 0 56px;
}
.product-card {
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.product-card:hover { border-color: var(--steel-300); box-shadow: var(--shadow); }
.product-card .thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--wheat-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.pc-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--brand-500);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(40,168,108,0.35);
}

.pc-sku-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-500);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.pc-sku-label {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pc-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.pc-add-form { display: contents; }
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid var(--graphite-900);
  transition: background .15s, color .15s, border-color .15s;
}
.pc-btn-outline {
  flex: 1;
  padding: 8px 0;
  color: var(--graphite-900);
  background: transparent;
}
.pc-btn-outline:hover { background: var(--graphite-900); color: var(--white); }
.pc-btn-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border-color: var(--brand-500);
  background: var(--brand-500);
  color: var(--white);
}
.pc-btn-icon:hover { background: var(--brand-600); border-color: var(--brand-600); }
.pc-btn-whatsapp { background: #25D366; border-color: #25D366; }
.pc-btn-whatsapp:hover { background: #1DA851; border-color: #1DA851; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 11px 20px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.btn-whatsapp:hover { background: #1DA851; }

.product-card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .sku {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-500);
  letter-spacing: 0.03em;
}
.pc-brand-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--steel-500);
}
.pc-brand-link:hover { color: var(--brand-600); }
.product-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0;
}
.product-card h3 a { color: var(--brand-600); }
.product-card .price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--graphite-900);
  margin-top: auto;
}
.product-card .price.on-request { font-size: 13px; color: var(--steel-500); font-family: var(--font-body); }
.stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.stock-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.stock-tag.in_stock { color: var(--success); background: #e9f5ee; }
.stock-tag.out_of_stock { color: var(--danger); background: #fbeceb; }
.stock-tag.on_order { color: var(--brand-600); background: #eaf7f0; }

/* Stok seviyesi barem ikonu (Wi-Fi sinyali gibi 4 çubuk) — sadece görsel
   seviyeyi gösterir, gerçek adet müşteriye hiçbir şekilde gösterilmez. */
.stock-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 15px;
}
.stock-bar {
  width: 4px;
  background: var(--steel-100);
  border-radius: 1px;
}
.stock-bar.bar-1 { height: 5px; }
.stock-bar.bar-2 { height: 8px; }
.stock-bar.bar-3 { height: 11px; }
.stock-bar.bar-4 { height: 14px; }
.stock-bars-out .stock-bar { background: #f1c3bf; }
.stock-bars-low .stock-bar.is-filled { background: var(--danger); }
.stock-bars-medium .stock-bar.is-filled { background: #d97706; }
.stock-bars-high .stock-bar.is-filled { background: var(--brand-500); }

/* Mobilde tek sütun yerine 2 sütun, her şey daha kompakt: görsel daha
   kısa, boşluklar/yazılar daha küçük — tek ekranda daha çok ürün görünsün. */
@media (max-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px 0 36px; }
  .pc-sku-badge { left: 6px; bottom: 6px; font-size: 10px; padding: 3px 8px 3px 3px; gap: 4px; }
  .pc-new-badge { top: 6px; left: 6px; font-size: 10px; padding: 3px 9px; }
  .pc-sku-label { font-size: 8px; padding: 1px 5px; }
  .product-card .body { padding: 9px 10px 10px; gap: 3px; }
  .product-card h3 { font-size: 12.5px; line-height: 1.25; }
  .pc-brand-link { font-size: 9.5px; }
  .product-card .price { font-size: 14px; }
  .product-card .price.on-request { font-size: 10.5px; }
  .stock-tag { font-size: 9.5px; }
  .pc-actions { gap: 5px; margin-top: 6px; }
  .pc-btn { font-size: 10.5px; }
  .pc-btn-outline { padding: 6px 0; }
  .pc-btn-icon { width: 27px; height: 27px; }
  .pc-btn-icon svg { width: 13px; height: 13px; }
}

/* -------------------- Butonlar -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--brand-500); color: var(--white); }
.btn-primary:hover { background: var(--brand-600); }
.btn-dark { background: var(--graphite-900); color: var(--white); }
.btn-dark:hover { background: var(--graphite-700); }
.btn-outline { background: transparent; border-color: var(--graphite-900); color: var(--graphite-900); }
.btn-outline:hover { background: var(--graphite-900); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-danger { background: var(--danger); color: var(--white); }

/* -------------------- Urun detay -------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding: 40px 0 60px;
}
.product-detail .gallery,
.product-detail .info {
  min-width: 0; /* grid hucrelerinin buyuk gorsel/icerikle tasmasini onler */
}
.product-detail .gallery {
  position: relative;
  max-width: 420px;
}
.product-detail .gallery img {
  width: 100%;
  max-width: 100%;
  display: block;
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--wheat-100);
}
@media (min-width: 861px) {
  /* Masaüstünde görsel kırpılmadan (uzun/dar parçaların üstü-altı
     kesilmeden) tamamen container'a sığsın diye "contain" kullanıyoruz;
     kare (1:1) çerçeve çoğu ürün görseliniz (600x600) ile birebir
     eşleştiği için boşluk da minimuma iner. Boş kalan kısım (varsa)
     nötr bir zeminle (wheat rengi) dolduruluyor. */
  .product-detail .gallery img { aspect-ratio: 1/1; object-fit: contain; }
}
.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.gallery-thumb {
  width: 62px !important;
  height: 46px !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  border-radius: 3px;
  border: 2px solid var(--steel-100) !important;
  cursor: pointer;
  transition: border-color .15s, opacity .15s;
  opacity: .75;
}
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.is-active { border-color: var(--brand-500) !important; opacity: 1; }
.product-detail .info .sku-line {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-500);
  margin-bottom: 8px;
}
.product-detail .info h1 { font-size: 30px; text-transform: none; }
.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.spec-table tr { border-bottom: 1px solid var(--steel-100); }
.spec-table td { padding: 9px 0; }
.spec-table td:first-child { color: var(--steel-500); width: 40%; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; }
.qty-add-row { display: flex; gap: 10px; margin-top: 20px; }
.qty-input {
  width: 76px;
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  padding: 10px;
  font-family: var(--font-mono);
  text-align: center;
  font-size: 15px;
}

/* -------------------- Sepet / Teklif formu -------------------- */
.cart-page { padding: 40px 0 60px; }
.cart-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.cart-export-buttons { display: flex; gap: 8px; }
.cart-row-thumb { width: 56px; }
.cart-row-thumb img,
.cart-row-noimg {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--wheat-100);
  display: block;
}
.cart-row-tag {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--steel-500);
  background: var(--wheat-100);
  border-radius: 999px;
  padding: 2px 8px;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel-500);
  border-bottom: 1px solid var(--steel-100);
  padding-bottom: 10px;
}
.cart-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--steel-100);
  vertical-align: middle;
}
.cart-row-title { font-weight: 600; }
.cart-row-sku { font-family: var(--font-mono); font-size: 12px; color: var(--steel-500); }
.cart-qty-input { width: 60px; padding: 6px; border: 1px solid var(--steel-100); border-radius: var(--radius); font-family: var(--font-mono); text-align: center; }
.remove-link { color: var(--danger); font-size: 13px; }

.quote-form-box {
  background: var(--wheat-100);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 30px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--graphite-700); }
.form-field input, .form-field textarea, .form-field select {
  padding: 11px 12px;
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--brand-500);
  outline-offset: 0;
}
.form-field.full { grid-column: 1 / -1; }

.alert { padding: 14px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 20px; }
.alert-success { background: #e9f5ee; color: var(--success); border: 1px solid #bfe3cd; }
.alert-error { background: #fbeceb; color: var(--danger); border: 1px solid #f1c3bf; }
.empty-state { padding: 60px 0; text-align: center; color: var(--steel-500); }

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--graphite-900);
  color: var(--steel-300);
  padding: 44px 0 24px;
  margin-top: 60px;
  font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: var(--white); font-size: 15px; }
.site-footer a:hover { color: var(--brand-500); }
.site-footer .bottom {
  border-top: 1px solid var(--graphite-700);
  margin-top: 32px;
  padding-top: 18px;
  font-size: 12px;
  color: var(--steel-500);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* -------------------- Uyumlu Modeller -------------------- */
.compat-models {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--steel-100);
}
.compat-models h4 {
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite-700);
  margin: 0 0 12px;
}
.compat-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.compat-model-cell {
  border: 1px solid var(--steel-100);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--radius);
  background: var(--wheat-100);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite-900);
  text-align: center;
}
.compat-table {
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  overflow: hidden;
  columns: 2;
  column-gap: 0;
}
.compat-table-row {
  break-inside: avoid;
  padding: 9px 14px;
  border-bottom: 1px solid var(--steel-100);
  border-right: 1px solid var(--steel-100);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite-900);
  background: var(--white);
}
.compat-table-row:nth-of-type(odd) { background: var(--wheat-100); }
@media (max-width: 480px) {
  .compat-models-grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
  .compat-model-cell { font-size: 12px; padding: 7px 8px; }
  .compat-table { columns: 1; }
  .compat-table-row { border-right: none; }
}

/* -------------------- Birlikte Alınabilecek Parçalar -------------------- */
.related-parts {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--steel-100);
}
.related-parts h4 {
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite-700);
  margin: 0 0 12px;
}
.related-parts-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--steel-100);
}
.related-parts-item:last-child { border-bottom: none; }
.related-parts-thumb img,
.related-parts-noimg {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--wheat-100);
  flex-shrink: 0;
  display: block;
}
.related-parts-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.related-parts-info strong {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--graphite-900);
}
.related-parts-info span {
  font-size: 13px;
  color: var(--steel-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -------------------- Filtre Paneli -------------------- */
.filter-active-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-500);
  margin-left: 2px;
}
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,31,34,0.5);
  z-index: 95;
}
.filter-overlay.is-open { display: block; }
.filter-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  background: var(--white);
  z-index: 100;
  box-shadow: -2px 0 12px rgba(0,0,0,0.15);
  transition: right .25s ease;
  display: flex;
  flex-direction: column;
}
.filter-panel.is-open { right: 0; }
.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--steel-100);
  flex-shrink: 0;
}
.filter-panel-head h2 { font-size: 18px; margin: 0; }
.filter-panel-head button {
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--steel-500);
}
.filter-panel-body { flex: 1; overflow-y: auto; padding: 4px 20px 20px; }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--steel-100); }
.filter-group h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel-500);
  margin: 0 0 10px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 14px;
  cursor: pointer;
}
.filter-check input { accent-color: var(--brand-500); width: 16px; height: 16px; flex-shrink: 0; }
.filter-check span:nth-child(2) { flex: 1; }
.filter-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-500);
  background: var(--wheat-100);
  border-radius: 999px;
  padding: 1px 8px;
}
.filter-price-row { display: flex; align-items: center; gap: 8px; }
.filter-price-row input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
}
.filter-price-row span { color: var(--steel-300); }
.filter-panel-actions {
  position: sticky;
  bottom: 0;
  background: var(--white);
  padding-top: 16px;
  display: flex;
  gap: 10px;
}
body.filter-open { overflow: hidden; }
@media (max-width: 860px) {
  .filter-panel { width: 100%; max-width: 100%; right: -100%; }
}

/* -------------------- Siparis / Teklif Secimi -------------------- */
.request-type-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 24px;
}
.type-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  background: var(--white);
  transition: border-color .15s, background .15s;
}
.type-option:has(input:checked) {
  border-color: var(--brand-500);
  background: var(--wheat-100);
}
.type-option input { margin-top: 4px; accent-color: var(--brand-500); }
.type-option span { display: flex; flex-direction: column; gap: 2px; }
.type-option strong { font-family: var(--font-display); font-size: 16px; letter-spacing: .02em; }
.type-option small { color: var(--steel-500); font-size: 13px; line-height: 1.4; }
@media (max-width: 560px) {
  .request-type-choice { grid-template-columns: 1fr; }
}

/* -------------------- Responsive -------------------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
  .site-header .container {
    position: relative;
    height: 64px;
    padding: 0 16px;
    gap: 14px;
    justify-content: center;
  }
  .logo { font-size: 22px; margin: 0 auto; }
  .logo small { display: none; }

  body.nav-open .nav-overlay { display: block; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Anasayfa/Kategoriler/Teklif Sepetim, arama ve sepet linkini
     ekranın solundan açılan tek bir panelde grupluyoruz. */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 100;
    overflow-y: auto;
    padding-top: 64px;
    transition: left .25s ease;
    box-shadow: 2px 0 12px rgba(0,0,0,0.15);
  }
  body.nav-open .mobile-menu { left: 0; }

  .main-nav ul { flex-direction: column; gap: 0; padding: 20px 24px 0; }
  .main-nav a { display: block; padding: 13px 0; font-size: 17px; border-bottom: 1px solid var(--steel-100); }

  .search-form {
    flex-direction: column;
    gap: 8px;
    max-width: none;
    padding: 20px 24px;
    border-bottom: 1px solid var(--steel-100);
  }
  .search-form input { border-right: 1px solid var(--steel-100); border-radius: var(--radius); }
  .search-form button { border-radius: var(--radius); padding: 10px; }

  .cart-link { display: flex; padding: 16px 24px; }

  .product-detail { grid-template-columns: 1fr; }
  .product-detail .gallery { max-width: 100%; margin: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .catalog-hero h1 { font-size: 32px; }
}

/* -------------------- Blog -------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.blog-card {
  border: 1px solid var(--steel-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, border-color .15s;
}
.blog-card:hover { border-color: var(--steel-300); box-shadow: var(--shadow); }
.blog-card-thumb { aspect-ratio: 16/10; background: var(--wheat-100); overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brand-600);
}
.blog-card-body h3 { font-family: var(--font-body); text-transform: none; font-size: 17px; font-weight: 700; margin: 0; }
.blog-card-body p { margin: 0; font-size: 14px; color: var(--steel-500); line-height: 1.5; }
.blog-card-date { margin-top: auto; font-size: 12px; color: var(--steel-300); }

.blog-post-meta { font-size: 13px; color: var(--steel-500); margin: 10px 0 22px; }
.blog-post-cover { width: 100%; border-radius: var(--radius); margin-bottom: 26px; aspect-ratio: 16/8; object-fit: cover; background: var(--wheat-100); }
.blog-post-content { font-size: 16px; line-height: 1.75; color: var(--graphite-700); }
.blog-post-content h2, .blog-post-content h3, .blog-post-content h4 {
  text-transform: none;
  margin-top: 1.4em;
}
.blog-post-content p { margin: 0 0 1.1em; }
.blog-post-content a { color: var(--brand-600); text-decoration: underline; }
.blog-post-content img { max-width: 100%; border-radius: var(--radius); margin: 1em 0; }
.blog-post-content ul, .blog-post-content ol { margin: 0 0 1.1em; padding-left: 1.4em; }
.blog-post-content blockquote {
  border-left: 3px solid var(--brand-500);
  margin: 1.4em 0;
  padding: 4px 0 4px 18px;
  color: var(--steel-500);
  font-style: italic;
}

/* -------------------- Erisilebilirlik -------------------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* =========================================================
   URUN VITRINI (anasayfa "Parcalari Kesfedin" bolumu)
   Icerik admin/showcase.php'den yonetilir. Renk/yazi tipi
   degiskenleri yukaridaki :root ile ayni (grafit + marka yesili).
   ========================================================= */
.showcase-section {
  background: var(--graphite-900);
  padding: 56px 0 64px;
}
.showcase-section .section-label { color: var(--brand-500); }
.showcase-heading {
  color: var(--white);
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 4px 0 10px;
}
.showcase-sub {
  color: var(--steel-300);
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 0 44px;
  text-transform: none;
  font-family: var(--font-body);
}

.sc-diagram {
  display: grid;
  position: relative;
  grid-template-columns: minmax(196px, 250px) minmax(300px, 1fr) minmax(196px, 250px);
  grid-template-areas: ".       sc-top    ." "sc-left sc-stage  sc-right" ".       sc-bottom .";
  grid-template-rows: minmax(90px, auto) auto minmax(90px, auto);
  align-items: stretch;
  row-gap: 4px;
}
.sc-top { grid-area: sc-top; }
.sc-left { grid-area: sc-left; }
.sc-right { grid-area: sc-right; }
.sc-bottom { grid-area: sc-bottom; }

/* Yön kutuları: içindeki kartlar artık sabit bir yüzdeye göre değil,
   flexbox ile eşit aralıklarla dizilir — kaç ok eklenirse eklensin
   kutular asla üst üste binmez. */
.sc-top, .sc-bottom { display: flex; flex-direction: row; justify-content: space-evenly; align-items: stretch; gap: 10px; flex-wrap: wrap; }
.sc-top { align-items: flex-end; padding-bottom: 8px; }
.sc-bottom { align-items: flex-start; padding-top: 8px; }
.sc-left, .sc-right { display: flex; flex-direction: column; justify-content: space-evenly; gap: 10px; }

.sc-stage {
  grid-area: sc-stage;
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.5);
}
.sc-stage img { display: block; width: 100%; height: auto; user-select: none; -webkit-user-drag: none; }

.sc-corner { position: absolute; width: 16px; height: 16px; z-index: 5; pointer-events: none; }
.sc-corner::before, .sc-corner::after { content: ""; position: absolute; background: var(--brand-500); }
.sc-corner::before { width: 100%; height: 2px; }
.sc-corner::after { width: 2px; height: 100%; }
.sc-corner-tl { top: -1px; left: -1px; }
.sc-corner-tl::before, .sc-corner-tl::after { top: 0; left: 0; }
.sc-corner-tr { top: -1px; right: -1px; }
.sc-corner-tr::before, .sc-corner-tr::after { top: 0; right: 0; }
.sc-corner-bl { bottom: -1px; left: -1px; }
.sc-corner-bl::before, .sc-corner-bl::after { bottom: 0; left: 0; }
.sc-corner-br { bottom: -1px; right: -1px; }
.sc-corner-br::before, .sc-corner-br::after { bottom: 0; right: 0; }

.sc-dot {
  position: absolute; width: 16px; height: 16px; margin: -8px 0 0 -8px;
  border-radius: 50%; background: var(--brand-500); border: 2px solid #fff;
  z-index: 4; display: block; transition: transform .15s ease;
}
.sc-dot::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid var(--brand-500); opacity: .55; animation: sc-pulse 2.2s ease-out infinite;
}
@keyframes sc-pulse {
  0% { transform: scale(.6); opacity: .7; }
  75%, 100% { transform: scale(1.9); opacity: 0; }
}

/* Kart ile fotoğraftaki nokta arasındaki çizgiler artık JS ile (gerçek
   konumlara göre) çiziliyor; bu sayede kutu nereye otomatik yerleşirse
   yerleşsin, ok her zaman tam işaretlenen noktayı gösterir — çapraz
   çizgiler de dahil. */
.sc-connectors { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.sc-connectors line { stroke: var(--brand-500); stroke-width: 1.6; opacity: .85; transition: stroke .15s ease, stroke-width .15s ease, opacity .15s ease; marker-end: url(#sc-arrowhead); }
.sc-connectors line.is-active { stroke-width: 2.4; opacity: 1; }
.sc-connectors #sc-arrowhead path { fill: var(--brand-500); }

.sc-callout { text-decoration: none; display: block; position: relative; z-index: 2; }
.sc-card {
  display: flex; align-items: center; gap: 11px;
  background: var(--graphite-800); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 9px 11px;
  box-shadow: 0 10px 22px -10px rgba(0,0,0,.55);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.sc-callout:hover .sc-card, .sc-callout:focus-visible .sc-card, .sc-callout.is-active .sc-card {
  border-color: var(--brand-500);
  box-shadow: 0 14px 28px -10px rgba(0,0,0,.6), 0 0 0 1px var(--brand-500);
}
.sc-icon {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background-repeat: no-repeat; border: 2px solid var(--brand-500);
  box-shadow: 0 0 0 3px rgba(0,0,0,.35) inset;
}
.sc-text { min-width: 0; }
.sc-index {
  font-family: var(--font-mono); font-weight: 500; font-size: 11px;
  letter-spacing: .1em; color: var(--brand-500); display: block; margin-bottom: 2px;
}
.sc-title {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  text-transform: none; letter-spacing: normal;
  color: var(--white); line-height: 1.2; margin: 0 0 3px;
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sc-desc {
  font-family: var(--font-body); font-size: 11.5px; line-height: 1.36; color: var(--steel-300);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sc-cta {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 5px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--brand-500); opacity: .85;
}
.sc-callout:hover .sc-cta, .sc-callout:focus-visible .sc-cta { opacity: 1; }
.sc-cta svg { width: 10px; height: 10px; transition: transform .18s ease; }
.sc-callout:hover .sc-cta svg { transform: translateX(2px); }

.sc-left .sc-callout, .sc-right .sc-callout { width: 210px; }
.sc-top .sc-callout, .sc-bottom .sc-callout { width: 192px; }
.sc-top .sc-card, .sc-bottom .sc-card { flex-direction: column; text-align: center; }

.sc-mobile-list { display: none; margin-top: 28px; gap: 10px; grid-template-columns: 1fr 1fr; }
.sc-mobile-list a {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  background: var(--graphite-800); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 10px;
}
.sc-mobile-list .sc-icon { width: 40px; height: 40px; }
.sc-mobile-list .sc-title { font-size: 13px; flex: 1; min-width: 0; }

@media (max-width: 860px) {
  .showcase-section { padding: 44px 0 52px; }
  .sc-diagram { grid-template-columns: 1fr; grid-template-areas: "sc-stage"; grid-template-rows: auto; }
  .sc-top, .sc-left, .sc-right, .sc-bottom, .sc-connectors { display: none; }
  .sc-mobile-list { display: grid; }
}
@media (max-width: 480px) {
  .sc-mobile-list { grid-template-columns: 1fr; }
}
