/**
 * Ürün detay (PDP) — E-PDP düzeni.
 * KİLİT: public/pdp-epdp-KILIT.txt — onay olmadan değiştirmeyin.
 * Next App Router: ShopStyles variant="product" + page.tsx sunucu link.
 */

/* Teknik özellikler: Genel | Teknik iki sütun */
.eq-product-specs .eq-specs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.eq-product-specs .eq-specs-cols pre {
  margin: 0;
}
@media (max-width: 768px) {
  .eq-product-specs .eq-specs-cols {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Amazon-stili PDP kabuğu */
body.eq-shop .eq-product-main {
  padding: 18px 20px 24px;
  background: var(--eq-surface);
}
body.eq-shop .eq-product-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 1100px) {
  body.eq-shop .eq-product-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}
@media (max-width: 700px) {
  body.eq-shop .eq-product-grid {
    grid-template-columns: 1fr;
  }
}

body.eq-shop .eq-product-hero-wrap {
  position: relative;
}
body.eq-shop .eq-product-hero-img {
  max-height: 520px;
  border-radius: 4px;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
body.eq-shop .eq-product-hero-img:hover {
  transform: scale(1.02);
}
body.eq-shop .eq-product-thumbs--vertical button {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid var(--eq-border);
  background: var(--eq-surface);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
body.eq-shop .eq-product-thumbs--vertical button:hover {
  border-color: #007185;
  box-shadow: 0 0 0 2px rgba(0, 113, 133, 0.15);
}
body.eq-shop .eq-product-thumbs--vertical button.eq-product-thumb--active {
  border-color: #e77600;
  box-shadow: 0 0 0 2px rgba(231, 118, 0, 0.3);
}
body.eq-shop .eq-product-thumbs--vertical img {
  width: 46px;
  height: 46px;
}

body.eq-shop .eq-product-info {
  padding: 0 6px 0 4px;
}
body.eq-shop .eq-product-cat {
  display: none;
}
body.eq-shop .eq-product-brand {
  font-size: 13px;
  color: #007185;
  margin-bottom: 4px;
  font-weight: 500;
}
body.eq-shop .eq-product-brand-link {
  color: #007185;
  text-decoration: none;
}
body.eq-shop .eq-product-brand-link:hover {
  color: #c7511f;
  text-decoration: underline;
}
body.eq-shop .eq-product-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
  color: var(--eq-text);
  margin: 0 0 6px;
}
body.eq-shop .eq-amz-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--eq-text-muted);
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--eq-border-soft);
}
body.eq-shop .eq-amz-stars {
  color: #e77600;
  letter-spacing: 0.5px;
  font-size: 14px;
}
body.eq-shop .eq-amz-rating-link {
  color: #007185;
  text-decoration: none;
}
body.eq-shop .eq-amz-rating-link:hover {
  color: #c7511f;
  text-decoration: underline;
}

body.eq-shop .eq-amz-about {
  margin: 12px 0 14px;
}
body.eq-shop .eq-amz-about h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--eq-text);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
body.eq-shop .eq-amz-about ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}
body.eq-shop .eq-amz-about li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--eq-text);
  margin: 3px 0;
}
body.eq-shop .eq-amz-about-empty {
  font-size: 12px;
  color: var(--eq-text-muted);
  font-style: italic;
}

body.eq-shop .eq-product-spec-tbl {
  margin-top: 12px;
  font-size: 12.5px;
  border-top: 1px solid var(--eq-border-soft);
  padding-top: 10px;
}
body.eq-shop .eq-product-spec-tbl th {
  width: 96px;
  font-size: 12px;
}

body.eq-shop .eq-product-buybox {
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  padding: 18px 18px 16px;
  background: var(--eq-surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.eq-shop .eq-buybox-price {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--eq-text);
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
body.eq-shop .eq-buybox-price .eq-buybox-currency {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}
body.eq-shop .eq-buybox-price .eq-buybox-int {
  font-size: 28px;
  font-weight: 600;
}
body.eq-shop .eq-buybox-price .eq-buybox-frac {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  margin-left: 1px;
}
body.eq-shop .eq-buybox-kdv {
  font-size: 11px;
  color: var(--eq-text-muted);
  margin: -4px 0 4px;
}
body.eq-shop .eq-buybox-stock {
  font-size: 15px;
  font-weight: 500;
  color: #007600;
  margin: 2px 0 0;
}
body.eq-shop .eq-buybox-deliver {
  font-size: 12.5px;
  color: var(--eq-text);
  margin: 2px 0 6px;
  line-height: 1.4;
}
body.eq-shop .eq-buybox-deliver b {
  color: var(--eq-text);
  font-weight: 700;
}
body.eq-shop .eq-buybox-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--eq-text);
  margin: 2px 0 4px;
}
body.eq-shop .eq-buybox-qty select {
  padding: 4px 8px;
  font-size: 12px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  background: #f0f2f2;
  color: var(--eq-text);
  cursor: pointer;
  font-family: inherit;
}
body.eq-shop .eq-buybox-qty select:hover {
  background: #e3e6e6;
}
body.eq-shop .eq-product-buybox .eq-product-actions {
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.eq-shop .eq-product-buybox .eq-product-actions .eq-product-btn-cart,
body.eq-shop .eq-product-buybox .eq-product-actions .eq-cart-add {
  width: 100%;
  background: linear-gradient(180deg, #f7dfa5 0%, #f0c14b 100%);
  color: #111;
  border: 1px solid #a88734;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow:
    inset 0 1px 0 #fcf4dd,
    0 1px 0 rgba(0, 0, 0, 0.04);
}
body.eq-shop .eq-product-buybox .eq-product-actions .eq-product-btn-cart:hover,
body.eq-shop .eq-product-buybox .eq-product-actions .eq-cart-add:hover {
  background: linear-gradient(180deg, #f5d78e 0%, #eeb933 100%);
  filter: none;
}
body.eq-shop .eq-amz-btn-buynow {
  width: 100%;
  background: linear-gradient(180deg, #f7c46c 0%, #f0a23c 100%);
  color: #111;
  border: 1px solid #a47829;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  box-shadow:
    inset 0 1px 0 #fde0b6,
    0 1px 0 rgba(0, 0, 0, 0.04);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.eq-shop .eq-amz-btn-buynow:hover {
  background: linear-gradient(180deg, #f5b455 0%, #e08e2c 100%);
}
body.eq-shop .eq-amz-btn-list {
  width: 100%;
  background: #f7f8f8;
  color: var(--eq-text);
  border: 1px solid #d5d9d9;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
}
body.eq-shop .eq-amz-btn-list:hover {
  background: #e3e6e6;
}
body.eq-shop .eq-product-buybox .eq-product-actions .eq-product-btn-ghost {
  display: none;
}
body.eq-shop .eq-buybox-divider {
  height: 1px;
  background: var(--eq-border-soft);
  margin: 8px 0 4px;
}
body.eq-shop .eq-buybox-info {
  font-size: 12px;
  line-height: 1.55;
  color: var(--eq-text);
}
body.eq-shop .eq-buybox-info b {
  color: var(--eq-text-muted);
  font-weight: 500;
  display: inline-block;
  min-width: 80px;
}
body.eq-shop .eq-buybox-info-link {
  color: #007185;
  text-decoration: none;
}
body.eq-shop .eq-buybox-info-link:hover {
  color: #c7511f;
  text-decoration: underline;
}
body.eq-shop .eq-buybox-secure {
  font-size: 12px;
  color: #007185;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
body.eq-shop .eq-buybox-dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-size: 12px;
  border: 1px solid #d5d9d9;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
}
body.eq-shop .eq-buybox-dl > div {
  padding: 10px 12px;
  border-right: 1px solid #e3e6e6;
  background: #f7fafa;
}
body.eq-shop .eq-buybox-dl > div:last-child {
  border-right: 0;
}
body.eq-shop .eq-buybox-dl b {
  display: block;
  font-size: 11px;
  color: #565959;
  margin-bottom: 4px;
  font-weight: 600;
}

body.eq-shop .eq-pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15, 17, 17, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
body.eq-shop .eq-pdp-lightbox[hidden] {
  display: none !important;
}
body.eq-shop .eq-pdp-lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
body.eq-shop .eq-pdp-lightbox-x {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 9001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d5d9d9;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #111;
}
body.eq-shop .eq-pdp-lightbox-x:hover {
  background: #f3f3f3;
}

body.eq-shop .eq-product-specs {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--eq-border);
}
body.eq-shop .eq-product-specs h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--eq-text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
body.eq-shop .eq-product-specs .eq-specs-cols pre {
  font-family:
    ui-sans-serif,
    -apple-system,
    sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--eq-text);
  white-space: pre-wrap;
  background: var(--eq-surface-2);
  border: 1px solid var(--eq-border-soft);
  border-radius: 6px;
  padding: 14px 16px;
}

/* Son görüntülenenler / ilgili ürünler şeridi */
.eq-mbg-related {
  margin: 28px 0 8px;
  padding: 18px 8px;
  background: var(--eq-surface);
  border-top: 1px solid var(--eq-border);
  border-bottom: 1px solid var(--eq-border);
  position: relative;
}
.eq-mbg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 8px 10px;
}
.eq-mbg-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--eq-text);
  margin: 0;
  line-height: 1.2;
}
.eq-mbg-page {
  font-size: 12px;
  color: var(--eq-text-muted);
  white-space: nowrap;
}
.eq-mbg-wrap {
  position: relative;
  padding: 0 6px;
}
.eq-mbg-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 14px;
  scroll-snap-type: x proximity;
}
.eq-mbg-track::-webkit-scrollbar {
  display: none;
}
.eq-mbg-card,
.eq-mbg-plp-card {
  flex: 0 0 200px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  background: var(--eq-surface);
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--eq-border);
  transition: background 0.15s ease;
}
.eq-mbg-plp-card {
  text-decoration: none;
}
.eq-mbg-card:hover {
  background: var(--eq-surface-2);
}
.eq-mbg-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--eq-surface);
  overflow: hidden;
  margin-bottom: 8px;
}
.eq-mbg-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.eq-mbg-brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--eq-text-secondary);
  text-transform: uppercase;
  margin-bottom: 3px;
  line-height: 1.2;
}
.eq-mbg-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--eq-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}
.eq-mbg-price {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--eq-text);
}
.eq-mbg-price::after {
  content: " ₺";
  font-size: 11px;
  font-weight: 500;
  color: var(--eq-text-muted);
}
.eq-mbg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--eq-surface);
  border: 1px solid var(--eq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--eq-text);
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  padding: 0;
}
.eq-mbg-arrow:hover {
  background: var(--eq-surface-2);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
}
.eq-mbg-arrow.eq-mbg-prev {
  left: -6px;
}
.eq-mbg-arrow.eq-mbg-next {
  right: -6px;
}
.eq-mbg-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}
.eq-mbg-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.eq-mbg-complementary .eq-mbg-head {
  justify-content: flex-start;
}
.eq-mbg-plp-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
}
.eq-mbg-plp-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.eq-mbg-plp-card__name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--eq-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  margin-bottom: 4px;
}
.eq-mbg-plp-card__name:hover {
  color: var(--eq-accent, #c7511f);
}
.eq-mbg-stars {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.eq-mbg-stars-on {
  color: #e77600;
}
.eq-mbg-stars-off {
  color: #d5d9d9;
}
.eq-mbg-plp-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--eq-text);
  margin-bottom: 8px;
}
.eq-mbg-plp-card__btn {
  width: 100%;
  margin-top: auto;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--eq-border);
  border-radius: 4px;
  background: var(--eq-surface);
  color: var(--eq-text);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.eq-mbg-plp-card__btn:hover {
  background: var(--eq-surface-2);
  border-color: var(--eq-text-muted);
}
.eq-mbg-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 2px;
}
.eq-mbg-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d5d9d9;
  cursor: pointer;
}
.eq-mbg-dot.is-active {
  background: var(--eq-text);
}

/* ===== E-PDP (eq-product-page-inline.js — tüm ürün detayları) ===== */
.eq-product-main.eq-epdp,
#eq-product-root.eq-product-main.eq-epdp {
  width: 100%;
  max-width: min(1500px, 100%);
  margin: 0 auto;
  padding: 16px 20px 32px;
  box-sizing: border-box;
}

.eq-epdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px 36px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--eq-border, #e5e7eb);
}

.eq-epdp-hero__media {
  min-width: 0;
}

.eq-epdp-hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eq-epdp-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #007185;
}

.eq-epdp-title {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--eq-text, #111);
}

.eq-epdp-cod {
  margin: 0;
  font-size: 13px;
  color: var(--eq-text-muted, #6b7280);
}

.eq-epdp-cod strong {
  font-weight: 600;
  color: var(--eq-text, #111);
}

.eq-epdp-lead {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--eq-text-secondary, #4b5563);
}

.eq-epdp-buybox {
  margin: 10px 0 12px;
  padding: 16px 18px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  background: var(--eq-surface, #fff);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* ── Cafemarkt tarzı buybox (KİLİT: pdp-buybox-cafemarkt-KILIT.txt) ── */
.eq-cmf-buybox {
  --eq-cmf-brand: var(--eq-hdr-bar-bg, #001e50);
  --eq-cmf-brand-hover: #002a6b;
  --eq-cmf-brand-soft: #e8eef6;
  --eq-cmf-brand-soft-border: #c5d4e8;
  padding: 14px 16px 16px;
}

.eq-cmf-topbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 10px;
}

.eq-cmf-badge-ship {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--eq-cmf-brand, #001e50);
  border-radius: 4px;
}

.eq-cmf-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
  line-height: 1.1;
}

.eq-cmf-price__amount {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ea580c;
}

.eq-cmf-price__vat-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--eq-text-muted, #6b7280);
}

.eq-cmf-price--quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--eq-text, #111);
}

.eq-cmf-quote-note {
  margin: -4px 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--eq-text-muted, #6b7280);
}

.eq-cmf-ship-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--eq-cmf-brand, #001e50);
  background: var(--eq-cmf-brand-soft, #e8eef6);
  border: 1px solid var(--eq-cmf-brand-soft-border, #c5d4e8);
  border-radius: 4px;
}

.eq-cmf-ship-banner__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.eq-cmf-purchase {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 10px;
}

.eq-cmf-qty {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.eq-cmf-qty__btn {
  width: 40px;
  border: none;
  background: #f3f4f6;
  color: var(--eq-text, #111);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

.eq-cmf-qty__btn:hover:not(:disabled) {
  background: #e5e7eb;
}

.eq-cmf-qty__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.eq-cmf-qty__val {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0 6px;
  font-size: 15px;
  font-weight: 700;
  border-left: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
}

.eq-cmf-add-btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin: 0;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  background: #f97316 !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: none !important;
  filter: none !important;
}

.eq-cmf-add-btn:hover {
  background: #ea580c !important;
}

.eq-cmf-add-btn__icon {
  display: inline-flex;
}

.eq-cmf-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.eq-cmf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  border: none;
  color: #fff;
  font-family: inherit;
}

.eq-cmf-btn--pfos {
  background: #fff;
  color: var(--eq-cmf-brand, #001e50);
  border: 1px solid var(--eq-cmf-brand, #001e50);
}

.eq-cmf-btn--pfos:hover {
  background: var(--eq-cmf-brand-soft, #e8eef6);
  color: var(--eq-cmf-brand, #001e50);
}

/* Sepete Ekle — Electrolux mavisi (theme.css .eq-cart-add override) */
body.eq-shop .eq-cmf-buybox .eq-cmf-btn.eq-cmf-btn--cart,
body.eq-shop .eq-cmf-buybox button.eq-cart-add.eq-cmf-btn--cart,
body.eq-shop .eq-cmf-buybox .eq-cart-add {
  background: var(--eq-cmf-brand, #001e50) !important;
  color: #fff !important;
  border: 1px solid var(--eq-cmf-brand, #001e50) !important;
  border-radius: 4px;
  box-shadow: none !important;
  font-weight: 600;
  filter: none !important;
}

body.eq-shop .eq-cmf-buybox .eq-cmf-btn.eq-cmf-btn--cart:hover,
body.eq-shop .eq-cmf-buybox button.eq-cart-add.eq-cmf-btn--cart:hover,
body.eq-shop .eq-cmf-buybox .eq-cart-add:hover {
  background: var(--eq-cmf-brand-hover, #002a6b) !important;
  color: #fff !important;
  border-color: var(--eq-cmf-brand-hover, #002a6b) !important;
  filter: none !important;
}

.eq-cmf-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--eq-cmf-brand, #001e50);
  border-radius: 4px;
  background: #fff;
  color: var(--eq-cmf-brand, #001e50);
  cursor: pointer;
  font-family: inherit;
}

.eq-cmf-btn-outline:hover {
  background: var(--eq-cmf-brand-soft, #e8eef6);
}

.eq-cmf-btn-outline__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.eq-cmf-pay-panel {
  margin-top: 4px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--eq-text-secondary, #4b5563);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.eq-cmf-pay-panel ul {
  margin: 0;
  padding-left: 18px;
}

.eq-cmf-pay-panel li + li {
  margin-top: 6px;
}

.eq-epdp-buybox .eq-product-actions {
  display: none;
}

.eq-epdp-buybox .eq-product-actions button,
.eq-epdp-buybox .eq-product-actions .eq-cart-add {
  width: 100%;
}

.eq-epdp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.eq-caglayan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--eq-border, #d5d9d9);
  border-radius: 6px;
  color: var(--eq-text, #111);
  background: var(--eq-surface-2, #f3f4f6);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.eq-caglayan-btn:hover {
  border-color: #007185;
  background: #f0f6f8;
}

.eq-caglayan-btn--primary {
  background: var(--eq-topnav-dept-bg, #001e50);
  color: #fff;
  border-color: var(--eq-topnav-dept-bg, #001e50);
}

.eq-caglayan-btn--primary:hover {
  background: #002a6b;
  border-color: #002a6b;
}

.eq-epdp-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-bottom: 24px;
}

.eq-epdp-panel,
.eq-caglayan-panel {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--eq-border, #e5e7eb);
  border-radius: 8px;
  background: var(--eq-surface, #fff);
}

.eq-epdp-panel h2,
.eq-caglayan-panel h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--eq-text, #111);
}

.eq-caglayan-acc details {
  margin-bottom: 8px;
  border: 1px solid var(--eq-border-soft, #eceff2);
  border-radius: 6px;
  background: var(--eq-surface-2, #f8f9fb);
  overflow: hidden;
}

.eq-caglayan-acc details[open] {
  background: var(--eq-surface, #fff);
}

.eq-caglayan-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.eq-caglayan-acc summary::-webkit-details-marker {
  display: none;
}

.eq-caglayan-acc__body {
  padding: 0 12px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--eq-text, #111);
}

.eq-caglayan-acc__body ul {
  margin: 0;
  padding-left: 18px;
}

.eq-caglayan-acc__body a {
  color: #007185;
  text-decoration: none;
}

.eq-caglayan-acc__body a:hover {
  text-decoration: underline;
}

.eq-epdp-drawings,
.eq-caglayan-drawings {
  margin: 24px 0 8px;
  padding-top: 18px;
  border-top: 1px solid var(--eq-border, #e5e7eb);
}

.eq-epdp-drawings h2,
.eq-caglayan-drawings h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.eq-epdp-drawings-grid,
.eq-caglayan-drawings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.eq-epdp-drawings-grid img,
.eq-caglayan-drawings-grid img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--eq-border, #e5e7eb);
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}

/* Galeri: sol thumb + sağ hero */
.eq-epdp-hero .eq-product-gallery,
.eq-caglayan-hero .eq-product-gallery {
  width: 100%;
}

.eq-epdp-hero .eq-product-gallery-row,
.eq-caglayan-hero .eq-product-gallery-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.eq-epdp-hero .eq-product-thumbs--vertical,
.eq-caglayan-hero .eq-product-thumbs--vertical {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eq-epdp-hero .eq-product-hero-wrap,
.eq-caglayan-hero .eq-product-hero-wrap {
  flex: 1;
  min-width: 0;
}

.eq-epdp-hero .eq-product-hero-img,
.eq-caglayan-hero .eq-product-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: min(520px, 58vh);
  object-fit: contain;
}

/* Üst aile şeridi — tam genişlik */
.eq-product-main.eq-epdp .eq-product-family {
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  .eq-epdp-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eq-epdp-panels {
    grid-template-columns: 1fr;
  }

  .eq-epdp-hero .eq-product-gallery-row {
    flex-direction: column-reverse;
  }

  .eq-epdp-hero .eq-product-thumbs--vertical {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Besos modül PDP: besos-shell koyu --eq-text → beyaz E-PDP panelinde okunmaz */
body.bd-page.besos:has(.eq-epdp) .pg,
body.bd-page.besos:has(.eq-epdp) .pg > .body,
body.bd-page.besos:has(.eq-epdp) .pg > .body .right-col,
body.bd-page.besos:has(.eq-epdp) .eq-filter-col,
body.bd-page.besos:has(.eq-epdp) .eq-product-main {
  --eq-text: #111111;
  --eq-text-secondary: #4b5563;
  --eq-text-muted: #6b7280;
  --eq-text-subtle: #9ca3af;
  --eq-surface: #ffffff;
  --eq-surface-2: #f8f9fb;
  --eq-border: #e5e7eb;
  --eq-border-soft: #eceff2;
  color: #111111;
}

body.bd-page.besos:has(.eq-epdp) .pg {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  background: #ffffff;
}

body.bd-page.besos:has(.eq-epdp) .pg > .body {
  background: #ffffff;
}

body.bd-page.besos:has(.eq-epdp) .breadcrumb {
  color: var(--eq-text-muted);
}

body.bd-page.besos:has(.eq-epdp) .breadcrumb a {
  color: #007185;
}

body.bd-page.besos:has(.eq-epdp) .eq-caglayan-acc summary {
  color: #111111;
}

body.bd-page.besos:has(.eq-epdp) .eq-product-family-line,
body.bd-page.besos:has(.eq-epdp) .eq-product-family-hint,
body.bd-page.besos:has(.eq-epdp) .eq-product-family-lbl,
body.bd-page.besos:has(.eq-epdp) .eq-mbg-title,
body.bd-page.besos:has(.eq-epdp) .eq-mbg-card-title {
  color: #111111;
}

body.bd-page.besos:has(.eq-epdp) .eq-mbg-card {
  color: #111111;
}

/* Besos modül PDP — shop sol filtre/nav sidebar kapalı (bd-page’de nav.js sidebar doldurur) */
body.bd-page.besos.eq-besos-modul-pdp aside#eq-filter-col,
body.bd-page.besos:has(.eq-epdp) aside#eq-filter-col {
  display: none !important;
}

body.bd-page.besos.eq-besos-modul-pdp .pg > .body,
body.bd-page.besos:has(.eq-epdp) .pg > .body {
  display: block;
}

body.bd-page.besos.eq-besos-modul-pdp .right-col,
body.bd-page.besos:has(.eq-epdp) .right-col {
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
}

body.bd-page.besos.eq-besos-modul-pdp .eq-product-main,
body.bd-page.besos:has(.eq-epdp) .eq-product-main {
  max-width: min(1500px, 100%);
}

/* PDP — katalog PDF (Çağlayan / Proso, yalnızca ürün sayfası) */
.eq-pdp-pdf-embed-wrap {
  margin: 0;
  max-width: 100%;
}
.eq-pdp-pdf-embed {
  display: block;
  width: 100%;
  min-height: min(72vh, 640px);
  max-height: 80vh;
  border: 1px solid var(--eq-border, #e5e7eb);
  border-radius: 8px;
  background: #f8fafc;
}
.eq-pdp-pdf-dl {
  margin: 8px 0 0;
  font-size: 12px;
}
.eq-pdp-pdf-dl a {
  color: var(--eq-accent, #2563eb);
}

/* SSR — SEO (görünmez; E-PDP boot sonrası değiştirilir) */
.eq-product-seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Boot skeleton — JS gelene kadar E-PDP düzenine benzer */
.eq-product-main.eq-pdp-booting:not(.eq-epdp) {
  min-height: 420px;
}

.eq-pdp-skeleton__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px 36px;
  align-items: start;
  padding: 16px 20px 32px;
  max-width: min(1500px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
}

.eq-pdp-skeleton__media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 50%, #f3f4f6 100%);
  background-size: 200% 100%;
  animation: eq-pdp-shimmer 1.2s ease-in-out infinite;
}

.eq-pdp-skeleton__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.eq-pdp-skeleton__line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 50%, #f3f4f6 100%);
  background-size: 200% 100%;
  animation: eq-pdp-shimmer 1.2s ease-in-out infinite;
}

.eq-pdp-skeleton__line--sm {
  width: 42%;
  height: 12px;
}

.eq-pdp-skeleton__line--md {
  width: 68%;
}

.eq-pdp-skeleton__line--lg {
  width: 92%;
  height: 22px;
}

.eq-pdp-skeleton__box {
  height: 200px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  animation: eq-pdp-shimmer 1.2s ease-in-out infinite;
}

@keyframes eq-pdp-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 900px) {
  .eq-pdp-skeleton__hero {
    grid-template-columns: 1fr;
  }
}

/* Eski SSR fallback — kaldırıldı */
.eq-product-ssr {
  max-width: 920px;
}
.eq-product-ssr__img {
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  margin-bottom: 12px;
}
.eq-product-ssr__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.25;
}
.eq-product-ssr__brand {
  font-size: 0.95rem;
  color: var(--eq-text-muted, #64748b);
  margin: 0 0 10px;
}
.eq-product-ssr__lead {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.eq-product-ssr__price {
  font-weight: 600;
  margin: 0 0 8px;
}
.eq-product-ssr__note {
  font-size: 0.8rem;
  color: var(--eq-text-muted, #64748b);
}

/* PLP — crawl iç linkleri */
.eq-dept-plp-crawl-links {
  margin: 0 auto 24px;
  max-width: 1200px;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--eq-border, #e5e7eb);
}
.eq-dept-plp-crawl-links__title {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--eq-text-muted, #64748b);
}
.eq-dept-plp-crawl-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 140px;
  overflow: auto;
}
.eq-dept-plp-crawl-links__list a {
  font-size: 0.78rem;
  color: var(--eq-accent, #2563eb);
  text-decoration: none;
}
.eq-dept-plp-crawl-links__list a:hover {
  text-decoration: underline;
}
