/* Header.jsx + Footer.jsx inline stillerinin birebir CSS portu. */

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 200ms ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px -8px rgba(18, 22, 27, 0.16);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 32px);
  height: 78px;
  gap: var(--space-4);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}
.header-logo img {
  width: 116px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: center;
}

.nav-link {
  position: relative;
  font: 600 14.5px/1 var(--font-body);
  color: var(--ink-900);
  text-decoration: none;
  padding: 15px 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 180ms ease, background 180ms ease;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-link:hover { color: var(--red-600); }
.nav-link.is-active { color: var(--red-600); }
.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--red-600);
}

.nav-link .chevron { transition: transform 180ms ease; flex-shrink: 0; }

.nav-link--trigger { border-radius: 8px; padding: 15px 10px; margin: 0 -10px; }
.catmenu.is-open .nav-link--trigger { background: var(--fog-100); }
.catmenu.is-open .nav-link--trigger .chevron { transform: rotate(180deg); }

/* Kategori dropdown */
.catmenu { position: relative; }
.catmenu__pop {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 10px; /* hover köprüsü: trigger ile panel arası boşlukta menü kapanmaz */
  transform: translate(-50%, -6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 55;
}
.catmenu.is-open .catmenu__pop {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.catmenu__panel {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: 0 18px 44px -20px rgba(18, 22, 27, 0.22);
  padding: 22px;
  width: 560px;
}
.catmenu__eyebrow {
  display: block;
  font: 700 11.5px/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.catmenu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.catmenu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 11px;
  transition: background 160ms ease;
  min-height: 44px;
}
.catmenu__item:hover { background: var(--fog-100); }
.catmenu__item img,
.catmenu__thumb {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.catmenu__thumb { background: var(--fog-100); display: block; }
.catmenu__item img.catmenu__img--contain { object-fit: contain; background: #fff; padding: 3px; box-sizing: border-box; }
.catmenu__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.catmenu__name { font: 600 14px/1.25 var(--font-body); color: var(--ink-900); }
.catmenu__count { font: 500 12px/1 var(--font-body); color: var(--text-muted); }
.catmenu__all {
  border-top: 1px solid var(--border-subtle);
  margin-top: 14px;
  padding-top: 4px;
}
.catmenu__all a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  font: 600 13.5px/1 var(--font-body);
  color: var(--ink-900);
  transition: color 180ms ease;
}
.catmenu__all a:hover { color: var(--red-600); }
.catmenu__fallback {
  display: block;
  padding: 10px 8px;
  font: var(--text-body-sm);
  color: var(--text-link);
  text-decoration: underline;
}

/* Sağ aksiyonlar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.01em;
  min-height: 40px;
  border-radius: var(--radius-pill);
  white-space: nowrap; /* dar header'da hap üç satıra kırılmasın */
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}
.btn-pill--primary {
  background: var(--red-600);
  color: #fff;
  padding: 11px 20px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}
.btn-pill--primary:hover {
  background: var(--red-700);
  box-shadow: 0 3px 10px rgba(185, 28, 28, 0.25);
}
.btn-pill--outline {
  color: var(--ink-900);
  padding: 11px 18px;
  border: 1.5px solid var(--border-default);
  background: transparent;
}
.btn-pill--outline:hover {
  border-color: var(--red-600);
  color: var(--red-600);
}

/* Header araması kaldırıldı (kullanıcı kararı 2026-07-21): arama görevi
   katalog sayfasındaki çubukta. Ürün indeksi gizli data-search'te taşınır. */

/* Dil değiştirici — bölmeli TR|EN anahtarı: aktif taraf dolu (lacivert),
   pasif taraf karşı dile bağlantı. Bayraklar inline SVG (header.php). */
.lang-seg {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 36px;
  padding: 3px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--fog-100);
}
.lang-seg__opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 9px;
  border-radius: 7px;
  font: var(--text-mono-sm);
  letter-spacing: 0.05em;
  color: var(--ink-500);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.lang-seg__opt.is-active {
  background: var(--navy-900);
  color: #fff;
}
a.lang-seg__opt:hover { color: var(--red-600); }
.lang-flag {
  width: 18px;
  height: 12px;
  border-radius: 2.5px;
  flex: none;
  box-shadow: 0 0 0 0.5px rgba(15, 23, 42, 0.14);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-900);
}
.menu-btn .menu-btn__close { display: none; }
.menu-btn[aria-expanded="true"] .menu-btn__open { display: none; }
.menu-btn[aria-expanded="true"] .menu-btn__close { display: block; }

/* Mobil drawer */
/* z-index, ürün sayfasının sticky teklif çubuğundan (90) ve yüzen e-posta
   butonundan (100) yüksek: menü açıkken hiçbiri üstte kalmasın. */
.drawer { position: fixed; inset: 64px 0 0 0; z-index: 120; }
.drawer[hidden] { display: none; }
.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 100vw);
  background: #fff;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 12px 16px calc(20px + env(safe-area-inset-bottom, 0px));
}
.drawer__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-700);
}
.drawer__link {
  font: 600 16px/1 var(--font-body);
  color: var(--ink-900);
  text-decoration: none;
  padding: 14px 4px;
}
.drawer__link.is-active { color: var(--red-600); }
.drawer__acc { display: flex; flex-direction: column; }
.drawer__acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 14px 4px;
  font: 600 16px/1 var(--font-body);
  color: var(--ink-900);
  cursor: pointer;
  text-align: left;
}
.drawer__acc-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.drawer__acc-list {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
  padding-bottom: 6px;
}
.drawer__acc-list[hidden] { display: none; }
.drawer__cat {
  font: 500 14.5px/1.35 var(--font-body);
  color: var(--ink-700);
  text-decoration: none;
  padding: 11px 4px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.drawer__cat-count { color: var(--text-muted); font: 500 12.5px/1.35 var(--font-body); }
.drawer__all {
  font: 600 14px/1.35 var(--font-body);
  color: var(--red-700);
  text-decoration: none;
  padding: 11px 4px;
}
.drawer__ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}
.drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
  font: 700 15px/1 var(--font-body);
  border-radius: var(--radius-pill);
}
.drawer__cta--primary { background: var(--red-600); color: #fff; }
.drawer__cta--outline { color: var(--ink-900); border: 1.5px solid var(--border-default); }

/* ============ İletişim popover'ı (header/drawer "İletişime Geçin") ============ */
/* Masaüstünde butonun altına JS ile demirlenen kart; mobilde alt sayfa (sheet).
   z-index drawer'ın (120) üstünde: menü içinden açılınca da üstte kalır. */
.cpop {
  position: fixed;
  z-index: 130;
  width: 296px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: 0 18px 44px -12px rgba(15, 23, 42, 0.28);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.cpop[hidden] { display: none; }
.cpop.is-open { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .cpop { transition: none; transform: none; }
}
.cpop__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 11px;
  text-decoration: none;
  transition: background 140ms ease;
}
.cpop__row:hover { background: var(--fog-100); }
.cpop__ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--fog-100);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cpop__row:hover .cpop__ic { background: #fff; }
.cpop__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cpop__label { font: 700 14px/1.2 var(--font-body); color: var(--ink-900); }
.cpop__value {
  font: 500 12.5px/1.3 var(--font-body);
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 599px) {
  /* Alt sayfa (bottom sheet): başparmağa yakın, tam genişlik. */
  .cpop {
    left: 10px !important;
    right: 10px !important;
    top: auto !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: auto;
    border-radius: 18px;
    padding: 10px;
    transform: translateY(10px);
  }
  .cpop.is-open { transform: translateY(0); }
  .cpop__row { padding: 13px 12px; }
  /* Mobilde katalog satırı gizli: aynı bağlantı hamburger menüde zaten var,
     alt sayfada tekrarı kafa karıştırır (kullanıcı kararı 2026-07-25). */
  .cpop__row--catalog { display: none; }
}

@media (max-width: 1023px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    height: 64px;
  }
  .header-logo img { width: 96px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  /* Dil anahtarı mobilde de header'da görünür (drawer'da da tam adlarıyla var). */
  .lang-seg { height: 34px; }
  .lang-seg__opt { height: 26px; padding: 0 7px; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 359px) {
  /* Çok dar ekran: bayraklar düşer, yalnız TR|EN kalır — taşma olmaz. */
  .lang-seg .lang-flag { display: none; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  /* Dar masaüstü: nav + 2 CTA + anahtar aynı satırda — bayraklar düşer,
     TR|EN metni kalır; CTA'lar tek satırda sığar. */
  .lang-seg .lang-flag { display: none; }
}
@media (min-width: 1024px) {
  .drawer { display: none; }
}

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-900);
  color: var(--steel-300);
}
.site-footer__strip {
  height: 3px;
  background: linear-gradient(90deg, var(--red-600), var(--red-700));
}
.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-16) var(--space-8) var(--space-6);
}
.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-12);
  flex-wrap: wrap;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--navy-700);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 280px;
  max-width: 360px;
}
.site-footer__logo {
  height: 46px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-footer__brand p {
  font: var(--text-body-sm);
  margin: 0;
  line-height: 1.6;
}
.site-footer__certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer__cert {
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.05em;
  color: var(--steel-200);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
}
.site-footer__cols {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 170px;
}
.site-footer__col--contact { min-width: 200px; }
.site-footer__heading {
  font: 700 12px/1 var(--font-body);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-footer__col a {
  font: var(--text-body-sm);
  color: var(--steel-300);
  text-decoration: none;
  transition: color 120ms ease;
}
.site-footer__col a:hover { color: #fff; }
.site-footer__mail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--red-600);
  color: #fff !important;
  font: 700 13px/1 var(--font-body) !important;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
}
.site-footer__bottom {
  padding-top: var(--space-6);
  font: 500 13px/1.5 var(--font-body);
  color: var(--steel-300);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ ProductCard (ProductCard.jsx portu) ============ */
.pcard {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms var(--ease-standard), transform 200ms var(--ease-standard), border-color 200ms var(--ease-standard);
}
.pcard:hover,
.pcard:focus-visible {
  border-color: var(--border-default);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pcard__media {
  /* DİKKAT: flex + aspect-ratio + %yükseklik üçlüsü Safari'de bozuluyor
     (görsel sağa kayıyor ya da kırpılıyor). ccard ile aynı kanıtlanmış desen:
     block konteyner + orana kilitli kutu + object-fit. Ürün çekimleri dikey
     olduğundan oran 3/4. */
  aspect-ratio: 3 / 4;
  background: #fff;
  display: block;
  padding: 16px;
  flex-shrink: 0;
}
.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 220ms var(--ease-standard);
}
.pcard:hover .pcard__media img { transform: scale(1.03); }
.pcard__noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: var(--text-body-sm);
  color: var(--text-muted);
}
.pcard__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  border-top: 1px solid var(--border-subtle);
}
.pcard__cat {
  font: 700 11px/1.2 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-700);
}
.pcard__name {
  font: 700 17px/1.3 var(--font-display);
  color: var(--text-heading);
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.pcard__sku { font: var(--text-mono-sm); color: var(--ink-500); }
.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.pcard__en388 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-subtle);
  background: var(--fog-050);
  border-radius: var(--radius-pill);
  padding: 5px 10px 5px 7px;
}
.pcard__en388 span {
  font: 700 10.5px/1 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--ink-900);
}
.pcard__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fog-100);
  color: var(--ink-700);
  transition: background 200ms var(--ease-standard), color 200ms var(--ease-standard);
}
.pcard:hover .pcard__arrow,
.pcard:focus-visible .pcard__arrow {
  background: var(--red-600);
  color: #fff;
}

/* ============ CategoryCard (CategoryCard.jsx portu) ============ */
.ccard {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  transition: box-shadow 220ms var(--ease-standard), transform 220ms var(--ease-standard), border-color 220ms var(--ease-standard);
}
.ccard:hover,
.ccard:focus-visible {
  border-color: var(--border-default);
  box-shadow: 0 18px 32px -16px rgba(11, 32, 53, 0.28), 0 4px 10px -6px rgba(11, 32, 53, 0.10);
  transform: translateY(-4px);
}
.ccard__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--fog-100);
  flex-shrink: 0;
  display: block;
}
.ccard__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
  transition: transform 240ms var(--ease-standard);
}
.ccard__img--cover { object-fit: cover; }
.ccard__img--contain { object-fit: contain; padding: 18px; box-sizing: border-box; background: var(--surface-card); }
.ccard:hover .ccard__media img { transform: scale(1.045); }
.ccard__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 20px;
  flex: 1;
}
.ccard__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ccard__name {
  font: 700 17px/1.3 var(--font-display);
  color: var(--text-heading);
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ccard__count { font: 500 13px/1.2 var(--font-body); color: var(--text-muted); }
.ccard__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fog-100);
  color: var(--ink-700);
  transition: background 200ms var(--ease-standard), color 200ms var(--ease-standard);
}
.ccard:hover .ccard__arrow,
.ccard:focus-visible .ccard__arrow {
  background: var(--red-600);
  color: #fff;
}

/* ============ SpecTable / SpecRating (SpecTable.jsx portu) ============ */
.spec {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding: var(--space-5);
  background: var(--surface-sunken);
  border-radius: var(--radius-md);
}
.spec__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 84px;
}
.spec__label { font: var(--text-body-sm); color: var(--text-body); font-weight: 600; }
.spec__sublabel { font: var(--text-mono-sm); color: var(--text-muted); letter-spacing: 0.02em; }
.spec__segments { display: flex; gap: 3px; }
.spec__seg {
  width: 14px;
  height: 6px;
  border-radius: 2px;
  background: var(--fog-200);
}
.spec__segments--letters .spec__seg { width: 10px; }
.spec__seg.is-filled { background: var(--rating-4); }
.spec__value { font: var(--text-display-sm); color: var(--text-heading); font-weight: 800; }
.spec__note { font: 500 11px/1.4 var(--font-body); color: var(--text-muted); }

/* ============ SectionHeading (SectionHeading.jsx portu) ============ */
.sechead {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  align-items: flex-start;
}
.sechead--center { text-align: center; align-items: center; }
.sechead__eyebrow {
  font: var(--text-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--red-600);
}
.sechead__title {
  font: var(--text-display-lg);
  color: var(--text-heading);
  margin: 0;
  letter-spacing: var(--tracking-tight);
}
.sechead__desc {
  font: var(--text-body-lg);
  color: var(--text-muted);
  margin: 0;
  max-width: 640px;
}

/* ============ Breadcrumb (Breadcrumb.jsx portu) ============ */
.crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.crumbs__sep { color: var(--text-muted); font: var(--text-body-sm); }
.crumbs__link {
  font: var(--text-body-sm);
  text-decoration: none;
  color: var(--text-link);
}
.crumbs__link:hover { color: var(--text-link-hover); }
.crumbs__current {
  font: var(--text-body-sm);
  color: var(--text-heading);
  font-weight: 600;
}

/* ---- Ürün arama menüsü (teklif satırları + iletişim "İlgilendiğiniz Ürün") ---- */
.ff--picker { position: relative; }
.qpick__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg, 0 18px 40px -18px rgba(15, 20, 30, 0.35));
  max-height: 320px;
  overflow-y: auto;
  padding: 6px;
}
.qpick__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.qpick__item:hover, .qpick__item.is-active { background: var(--fog-100); }
.qpick__item-col { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.qpick__item-name {
  font: 600 14px/1.3 var(--font-body);
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qpick__item-meta {
  font: 500 12px/1.3 var(--font-body);
  color: var(--text-muted);
  font-family: var(--font-mono);
}
