/* ============================================================
   KAHYA — Ürün Detay Sayfası Layout
   pp-* prefix: product page namespace
   ============================================================ */

/* ── Renk değişkenleri ── */
:root {
  --pp-green:    #2f4a20;
  --pp-green-deep: #13210d;
  --pp-green-mid: #46682d;
  --pp-green-soft: #6f8d4c;
  --pp-green-lt: #eef6e7;
  --pp-gold:     #c7a247;
  --pp-gold-soft:#f3d985;
  --pp-wa:       #25d366;
  --pp-cream:    #fffaf0;
  --pp-border:   #e2dcc9;
  --pp-text:     #1a1a1a;
  --pp-muted:    #666;
  --pp-radius:   10px;
}

/* ── Navigasyon ── */
html,
body {
  margin: 0;
  overflow-x: hidden;
}

.pp-nav {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(12px, 2.4vw, 28px);
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(16px, 3vw, 34px);
  border-bottom: 1px solid rgba(243, 217, 133, 0.34);
  background:
    radial-gradient(circle at 2% -22%, rgba(243, 217, 133, 0.32), transparent 32%),
    linear-gradient(92deg, rgba(111, 141, 76, 0.98) 0%, rgba(47, 74, 32, 0.985) 42%, rgba(19, 33, 13, 0.99) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 12px 28px rgba(9, 16, 6, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: visible;
}
.pp-nav-logo {
  position: relative;
  min-width: 132px;
  min-height: 44px;
  padding-left: 70px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  text-decoration: none;
  color: #fff8df;
  font-size: .98rem;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
}
.pp-nav-logo img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 76px;
  height: 76px;
  object-fit: contain;
  transform: translateY(-28%);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.34));
}
.pp-nav-logo span {
  white-space: nowrap;
}
.pp-nav-links,
.pp-nav-actions {
  display: flex;
  align-items: center;
}
.pp-nav-links {
  justify-content: center;
  gap: clamp(8px, 1.6vw, 18px);
  min-width: 0;
}
.pp-nav-links a,
.pp-nav-support {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 223, 0.88);
  text-decoration: none;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease;
}
.pp-nav-links a {
  padding: 0 4px;
}
.pp-nav-links a:hover,
.pp-nav-links a:focus-visible,
.pp-nav-support:hover,
.pp-nav-support:focus-visible {
  color: var(--pp-gold-soft);
  outline: none;
}
.pp-nav-actions {
  justify-content: flex-end;
  gap: 10px;
}
.pp-nav-support {
  padding: 0 14px;
  background: rgba(255, 248, 223, 0.08);
  border: 1px solid rgba(243, 217, 133, 0.28);
}
.pp-nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #fffaf0;
  font-weight: 800;
  font-size: .88rem;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(243, 217, 133, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pp-green-soft), var(--pp-green));
  box-shadow: 0 9px 20px rgba(9, 16, 6, 0.22);
  cursor: pointer;
  font-family: inherit;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.pp-nav-cart:hover,
.pp-nav-cart:focus-visible {
  background: linear-gradient(135deg, var(--pp-green), var(--pp-green-deep));
  box-shadow: 0 10px 22px rgba(9, 16, 6, 0.26);
  outline: none;
  transform: translateY(-1px);
}

/* ── Mini Cart Panel ── */
.pp-mini-cart {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(16px, 3vw, 34px);
  width: 300px;
  max-width: calc(100vw - 48px);
  background: rgba(255, 250, 240, 0.98);
  border: 1px solid rgba(199, 162, 71, 0.34);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(62, 91, 38, 0.18);
  z-index: 500;
  padding: 14px;
}
.pp-mini-cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 36px;
}
.pp-mini-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: .84rem;
}
.pp-mini-cart-item-name { color: var(--pp-text); flex: 1; line-height: 1.4; }
.pp-mini-cart-item-price { font-weight: 700; color: var(--pp-green); white-space: nowrap; }
.pp-mini-cart-total {
  font-size: .88rem;
  border-top: 1px solid var(--pp-border);
  padding-top: 8px;
  margin-bottom: 10px;
}
.pp-mini-cart-cta {
  display: block;
  text-align: center;
  padding: 11px;
  background: linear-gradient(135deg, var(--pp-green-mid), var(--pp-green));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: background .15s;
}
.pp-mini-cart-cta:hover { background: #1d2c11; }
.pp-mini-cart-empty {
  color: #aaa;
  font-size: .84rem;
  text-align: center;
  padding: 6px 0;
}
.pp-nav-cart-count {
  background: var(--pp-gold-soft);
  color: var(--pp-green-deep);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}

/* ── Breadcrumb ── */
.pp-breadcrumb {
  padding: 8px 24px;
  font-size: .78rem;
  color: var(--pp-muted);
  background: var(--pp-cream);
  border-bottom: 1px solid var(--pp-border);
}
.pp-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.pp-breadcrumb li + li::before {
  content: "›";
  margin-right: 4px;
  color: #aaa;
}
.pp-breadcrumb a {
  color: var(--pp-green);
  text-decoration: none;
}
.pp-breadcrumb a:hover { text-decoration: underline; }

/* ── Ana layout: galeri + buy box ── */
.pp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 24px;
  align-items: start;
}

/* ── Galeri ── */
.pp-gallery {}
.pp-gallery-main {
  position: relative;
  border-radius: var(--pp-radius);
  overflow: hidden;
  background: #f9f9f7;
  aspect-ratio: 1;
}
.pp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .25s;
}
.pp-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.pp-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 7px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .15s;
  background: #f0ede4;
}
.pp-thumb.is-active,
.pp-thumb:hover {
  border-color: var(--pp-green);
}

/* ── Buy Box ── */
.pp-buybox {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pp-title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--pp-text);
  margin: 0;
}
.pp-trust-line {
  font-size: .82rem;
  color: var(--pp-muted);
  margin: 0;
}

/* Fiyat */
.pp-price-block {
  background: #f8f6f0;
  border: 1.5px solid var(--pp-border);
  border-radius: 10px;
  padding: 16px 20px;
}
.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.pp-price-main {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--pp-green);
  line-height: 1;
  letter-spacing: -.02em;
}
.pp-price-sub {
  font-size: .85rem;
  color: var(--pp-muted);
  line-height: 1.3;
}
.pp-istihkak-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  background: var(--pp-green);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: .01em;
}

/* ── Neden Bu Ürünü Almalısınız ── */
.pp-why-buy {
  background: linear-gradient(135deg, #f0f4ec 0%, #f7f5ed 100%);
  border: 1.5px solid #c5d9b0;
  border-radius: 10px;
  padding: 14px 16px;
}
.pp-why-buy-title {
  font-size: .88rem;
  font-weight: 800;
  color: var(--pp-green);
  margin: 0 0 10px;
}
.pp-why-buy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-why-buy-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: #333;
  line-height: 1.45;
}
.pp-why-buy-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pp-green);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 1px;
}

/* ── Tamamlayıcı Setler ── */
.pp-complementary {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0 24px;
}
.pp-complementary-head {
  margin-bottom: 14px;
}
.pp-complementary-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--pp-text);
  margin: 0 0 4px;
}
.pp-complementary-sub {
  font-size: .82rem;
  color: var(--pp-muted);
  margin: 0;
}
.pp-complementary-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 14px;
  padding-bottom: 8px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.pp-complementary-card {
  flex: 0 0 190px;
  width: 190px;
  max-width: 190px;
  background: #fff;
  border: 1.5px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 0 0 12px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
}
.pp-complementary-card:hover {
  border-color: var(--pp-green);
  box-shadow: 0 6px 18px rgba(47, 74, 32, 0.1);
  transform: translateY(-2px);
}
.pp-complementary-card-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  height: 190px;
  object-fit: contain;
  display: block;
  align-self: center;
  border-radius: 0;
  background: #fffdf8;
  border: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  padding: 6px;
  box-sizing: border-box;
}
.pp-complementary-card-name,
.pp-complementary-card-note,
.pp-complementary-card-footer {
  padding-left: 12px;
  padding-right: 12px;
}
.pp-complementary-card-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--pp-text);
  line-height: 1.3;
}
.pp-complementary-card-note {
  font-size: .8rem;
  color: var(--pp-muted);
  line-height: 1.4;
  flex: 1;
}
.pp-complementary-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.pp-complementary-card-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pp-green);
}
.pp-complementary-card-cta {
  font-size: .78rem;
  font-weight: 700;
  color: var(--pp-green);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pp-complementary { padding: 0 16px; }
  .pp-complementary-grid {
    gap: 10px;
    padding-bottom: 8px;
  }
  .pp-complementary-card {
    flex-basis: 174px;
    width: 174px;
    max-width: 174px;
  }
  .pp-complementary-card-img {
    height: 174px;
  }
}
@media (max-width: 420px) {
  .pp-complementary-card {
    flex-basis: 164px;
    width: 164px;
    max-width: 164px;
  }
  .pp-complementary-card-img {
    height: 164px;
  }
}

/* Varyant / renk seçimi */
.pp-variant-group { display: flex; flex-direction: column; gap: 6px; }
.pp-variant-label { font-size: .82rem; font-weight: 600; color: #444; }
.pp-color-chips   { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-color-chip {
  padding: 6px 16px;
  border-radius: 20px;
  border: 2px solid #ccc;
  cursor: pointer;
  font-size: .85rem;
  background: #fff;
  transition: border-color .15s, background .15s;
  line-height: 1.2;
}
.pp-color-chip:hover { border-color: var(--pp-green); }
.pp-color-chip.is-selected {
  border-color: var(--pp-green);
  background: var(--pp-green-lt);
  font-weight: 600;
}

/* Ürün tipi seçimi (kartlar) */
.pp-type-cards { display: grid; gap: 8px; }
.pp-type-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 2px solid var(--pp-border);
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background .15s;
}
button.pp-type-card {
  width: 100%;
  font: inherit;
  color: inherit;
  text-align: left;
}
.pp-type-card:hover { border-color: var(--pp-green); }
.pp-type-card.is-selected {
  border-color: var(--pp-green);
  background: var(--pp-green-lt);
}
.pp-type-card-name { font-size: .9rem; font-weight: 600; }
.pp-type-card-price { font-size: .95rem; font-weight: 700; color: var(--pp-green); }

body[data-product-id="bedelli-asker-seti"] .pp-set-type-cards {
  gap: 10px;
}

body[data-product-id="bedelli-asker-seti"] .pp-type-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

body[data-product-id="bedelli-asker-seti"] .pp-type-card-copy,
body[data-product-id="bedelli-asker-seti"] .pp-type-card-price-stack {
  min-width: 0;
  display: grid;
  gap: 3px;
}

body[data-product-id="bedelli-asker-seti"] .pp-type-card-topline,
body[data-product-id="bedelli-asker-seti"] .pp-type-card-unit {
  font-size: .76rem;
  color: var(--pp-muted);
}

body[data-product-id="bedelli-asker-seti"] .pp-type-card-name small {
  display: block;
  margin-top: 2px;
  font-size: .76rem;
  font-weight: 500;
  color: var(--pp-muted);
}

body[data-product-id="bedelli-asker-seti"] .pp-set-note {
  margin-top: 10px;
}

/* Termal detay: parça seçimi alanında takım avantajını görünür kıl */
body[data-product-id="asker-termal-iclik"] .pp-type-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 14px;
  padding: 14px;
  font-family: inherit;
  text-align: left;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card--bundle {
  grid-column: 1 / -1;
  min-height: 118px;
  border-color: rgba(27, 74, 54, .38);
  background: #fbf7eb;
  box-shadow: 0 12px 28px rgba(27, 74, 54, .08);
}

body[data-product-id="asker-termal-iclik"] .pp-type-card--bundle.is-selected {
  border-color: var(--pp-green);
  background: #f4f8ed;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-copy,
body[data-product-id="asker-termal-iclik"] .pp-type-card-name,
body[data-product-id="asker-termal-iclik"] .pp-type-card-price-stack {
  display: grid;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-copy {
  gap: 8px;
  min-width: 0;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-badge,
body[data-product-id="asker-termal-iclik"] .pp-type-card-saving {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-badge {
  color: var(--pp-green);
  background: rgba(27, 74, 54, .08);
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-saving {
  color: #fff;
  background: var(--pp-green);
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-name {
  gap: 5px;
  font-size: .95rem;
  line-height: 1.2;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-name small {
  color: var(--pp-muted);
  font-size: .74rem;
  font-weight: 500;
  line-height: 1.35;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-price-stack {
  justify-items: end;
  align-content: center;
  gap: 3px;
  min-width: 88px;
  text-align: right;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-compare {
  color: #8a8170;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: line-through;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-price {
  font-size: 1.05rem;
  line-height: 1;
}

body[data-product-id="asker-termal-iclik"] .pp-type-card--bundle .pp-type-card-price {
  font-size: 1.45rem;
  color: var(--pp-green);
}

body[data-product-id="asker-termal-iclik"] .pp-type-card-unit {
  color: var(--pp-muted);
  font-size: .72rem;
  font-weight: 700;
}

@media (max-width: 560px) {
  body[data-product-id="asker-termal-iclik"] .pp-type-cards {
    grid-template-columns: 1fr;
  }

  body[data-product-id="asker-termal-iclik"] .pp-type-card {
    gap: 10px;
    padding: 12px;
  }

  body[data-product-id="asker-termal-iclik"] .pp-type-card--bundle {
    min-height: 0;
  }

  body[data-product-id="asker-termal-iclik"] .pp-type-card-price-stack {
    min-width: 78px;
  }
}

/* Sepet widget kutusu */
.pp-widget-box {
  background: var(--pp-cream);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 12px;
}
.pp-widget-box .cw-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"]) .pp-bot-single-note {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(42, 60, 30, .16);
  border-radius: 8px;
  background: #f8f5e9;
  color: #39402b;
  font-size: .86rem;
  line-height: 1.45;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"]) .pp-bot-single-note strong {
  color: var(--pp-green);
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"]) .pp-bot-single-select-label {
  display: block;
  margin: 2px 0 -4px;
  color: #444;
  font-size: .82rem;
  font-weight: 800;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"]) .pp-bot-single-select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1.5px solid var(--pp-border);
  border-radius: 8px;
  background: #fff;
  color: #1f2a17;
  font: 800 .92rem/1.2 Vazirmatn, system-ui, sans-serif;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"]) .pp-bot-single-buy {
  border-color: rgba(42, 60, 30, .22);
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"]) .pp-bot-single-detail {
  justify-self: start;
  margin-top: -6px;
  color: var(--pp-green);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

body[data-product-id="bot-bakim-seti"] .pp-gallery-main::after {
  content: "Set / tekli par\00E7a\0020se\00E7";
}

body[data-product-id="asker-havlusu"] .pp-gallery-main::after {
  content: "Havlu t\00FCr\00FCn\00FC\0020se\00E7";
}

body[data-product-id="asker-kisisel-bakim"] .pp-gallery-main::after {
  content: "Bak\0131m\0020\00FCr\00FCn\00FCn\00FC\0020se\00E7";
}

body[data-product-id="asker-banyo-urunleri"] .pp-gallery-main::after {
  content: "Banyo\0020\00FCr\00FCn\00FCn\00FC\0020se\00E7";
}

body[data-product-id="asker-valiz-saklama"] .pp-gallery-main::after {
  content: "Saklama\0020\00FCr\00FCn\00FCn\00FC\0020se\00E7";
}

body[data-product-id="asker-kucuk-gereklilikler"] .pp-gallery-main::after {
  content: "Gereklilik\0020\00FCr\00FCn\00FCn\00FC\0020se\00E7";
}

/* Inline satın alma akışı (Trendyol tarzı) */
.pp-buy-inline {
  background: var(--pp-cream);
  border: 1.5px solid var(--pp-green);
  border-radius: var(--pp-radius);
  padding: 16px;
}
.pp-buy-inline .cw-size-label {
  font-size: .82rem;
  font-weight: 700;
  color: #444;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.pp-buy-inline .cw-size-grid {
  margin-bottom: 10px;
}
.pp-buy-inline .cw-size-btn {
  min-width: 42px;
  padding: 8px 12px;
  font-size: .82rem;
}
.pp-buy-inline .cw-qty-row {
  margin-bottom: 10px;
}
.pp-buy-inline .cw-add-btn {
  width: 100%;
  min-height: 58px;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 10px;
  background: var(--pp-green);
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(42,60,30,.35);
  transition: transform .12s, box-shadow .12s;
}
.pp-buy-inline .cw-add-btn:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,60,30,.45);
}
.pp-buy-inline .cw-add-btn:not(:disabled):active {
  transform: translateY(0);
}

/* Butonlar */
.pp-actions { display: flex; flex-direction: column; gap: 8px; }
/* ── Sticky CTA Bar ── */
.pp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 2px solid var(--pp-green);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  transform: translateY(100%);
  transition: transform .3s ease;
  padding: 0;
}
.pp-sticky-cta.is-visible { transform: translateY(0); }
.pp-sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.pp-sticky-cta-info {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.pp-sticky-cta-name {
  font-size: .95rem;
  color: var(--pp-text);
}
.pp-sticky-cta-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--pp-green);
}
.pp-sticky-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-sticky-cta-btn,
.pp-sticky-buy-now {
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(42,60,30,.35);
  transition: transform .12s, box-shadow .12s, background .15s;
}
.pp-sticky-cta-btn,
.pp-sticky-buy-now,
.pp-sticky-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-sticky-cta-btn,
.pp-sticky-buy-now {
  gap: 9px;
}
.pp-sticky-action-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}
.pp-sticky-action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pp-sticky-cta-btn {
  background: var(--pp-green);
  color: #fff;
}
.pp-sticky-buy-now {
  background: var(--pp-gold);
  color: var(--pp-green-deep);
}
.pp-sticky-cta-btn:hover,
.pp-sticky-buy-now:hover {
  background: #1d2c11;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,60,30,.45);
}

.pp-btn-primary {
  width: 100%;
  padding: 14px 20px;
  background: var(--pp-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background .15s;
}
.pp-btn-primary:hover { background: #1d2c11; }

.pp-btn-whatsapp {
  width: 100%;
  padding: 12px 20px;
  background: var(--pp-wa);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background .15s;
}
.pp-btn-whatsapp:hover { background: #1ebe58; }

.pp-ai-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(243, 217, 133, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 0%, rgba(243, 217, 133, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(47, 74, 32, 0.98), rgba(19, 33, 13, 0.98));
  box-shadow: 0 12px 24px rgba(9, 16, 6, 0.18);
}
.pp-ai-builder-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.pp-ai-builder-copy span {
  color: var(--pp-gold-soft);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pp-ai-builder-copy strong {
  color: #fff8df;
  font-size: .96rem;
  line-height: 1.18;
}
.pp-ai-builder-copy p {
  margin: 0;
  color: rgba(255, 248, 223, 0.72);
  font-size: .82rem;
  line-height: 1.4;
}
.pp-ai-builder-btn,
.pp-checklist-ai {
  min-height: 40px;
  border: 1px solid rgba(243, 217, 133, 0.48);
  border-radius: 999px;
  background: rgba(243, 217, 133, 0.16);
  color: var(--pp-gold-soft);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.pp-ai-builder-btn {
  padding: 0 15px;
}
.pp-ai-builder-btn:hover,
.pp-ai-builder-btn:focus-visible,
.pp-checklist-ai:hover,
.pp-checklist-ai:focus-visible {
  background: rgba(243, 217, 133, 0.24);
  border-color: rgba(243, 217, 133, 0.82);
  color: #fff8df;
  outline: none;
  transform: translateY(-1px);
}

/* Güven rozetleri */
.pp-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.pp-badge {
  font-size: .75rem;
  background: var(--pp-cream);
  border: 1px solid var(--pp-border);
  padding: 6px 8px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.3;
}

/* ── Alt içerik ── */
.pp-content {
  max-width: 860px;
  margin: 3rem auto;
  padding: 0 24px;
}
.pp-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 .5rem;
  color: var(--pp-text);
}
.pp-content p, .pp-content li {
  font-size: .92rem;
  line-height: 1.7;
  color: #333;
}
.pp-content ul { padding-left: 1.2rem; }

/* SSS */
.pp-faq { border-top: 1px solid var(--pp-border); margin-top: 1rem; }
.pp-faq details {
  border-bottom: 1px solid var(--pp-border);
  padding: 10px 0;
}
.pp-faq summary {
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 4px;
}
.pp-faq summary::-webkit-details-marker { display: none; }
.pp-faq summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--pp-muted);
  flex-shrink: 0;
}
.pp-faq details[open] summary::after { content: "−"; }
.pp-faq details p {
  margin: 8px 0 4px;
  padding-left: 2px;
}

/* 6+2 sistemi tablo */
.pp-system-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin-top: .5rem;
}
.pp-system-table th, .pp-system-table td {
  border: 1px solid var(--pp-border);
  padding: 8px 12px;
  text-align: left;
}
.pp-system-table th { background: var(--pp-cream); font-weight: 700; }

/* ── İlgili ürünler ── */
.pp-related {
  background: var(--pp-cream);
  padding: 2rem 24px;
  border-top: 1px solid var(--pp-border);
}
.pp-related-title {
  font-size: 1.1rem;
  font-weight: 700;
  max-width: 860px;
  margin: 0 auto 1rem;
}
.pp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.pp-related-card {
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s, border-color .15s;
  display: block;
}
.pp-related-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  border-color: var(--pp-green);
}
.pp-related-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 auto 8px;
}
.pp-related-card-name {
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.pp-related-card-price {
  font-size: .85rem;
  color: var(--pp-green);
  font-weight: 700;
}

/* ── Mobil ── */
@media (max-width: 768px) {
  .pp-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 16px;
    margin-top: 1rem;
  }
  .pp-gallery-main { aspect-ratio: auto; }
  .pp-gallery-main img { object-fit: contain; }
  .pp-title { font-size: 1.2rem; }
  .pp-price-main { font-size: 1.75rem; }
  .pp-badges { grid-template-columns: 1fr 1fr; }
  .pp-nav {
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    min-height: 105px;
    padding: 8px 12px;
  }
  .pp-nav-logo {
    min-width: 130px;
    min-height: 38px;
    padding-left: 72px;
  }
  .pp-nav-logo img {
    width: 76px;
    height: 76px;
    transform: translateY(-28%);
  }
  .pp-nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px 86px;
    scroll-padding-left: 86px;
    scrollbar-width: none;
  }
  .pp-nav-links::-webkit-scrollbar {
    display: none;
  }
  .pp-nav-links a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    color: var(--pp-green-deep);
    background: rgba(255, 248, 223, 0.84);
    border: 1px solid rgba(243, 217, 133, 0.42);
    font-size: .78rem;
  }
  .pp-nav-actions {
    justify-self: end;
    gap: 6px;
  }
  .pp-nav-support {
    min-height: 36px;
    padding: 0 11px;
    font-size: .78rem;
  }
  .pp-nav-cart {
    min-height: 36px;
    padding: 0 12px;
    font-size: .8rem;
  }
  .pp-nav-links a:nth-child(n+3) {
    display: none;
  }
  .pp-breadcrumb { padding: 6px 16px; }
  .pp-content { padding: 0 16px; }
  .pp-related { padding: 1.5rem 16px; }
  .pp-related-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ── Yıkama Periyodu Seçici ── */
.pp-sys { display: flex; flex-direction: column; gap: 8px; }
.pp-sys-label { font-size: .8rem; font-weight: 600; color: #444; }

.pp-sys-opts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.pp-sys-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border: 2px solid var(--pp-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.pp-sys-opt:hover { border-color: var(--pp-green); }
.pp-sys-opt.is-selected { border-color: var(--pp-green); background: var(--pp-green-lt); }

.pp-sys-opt-freq {
  font-size: .78rem;
  font-weight: 700;
  color: var(--pp-text);
  text-align: center;
  line-height: 1.25;
}
.pp-sys-opt-eq {
  font-size: .71rem;
  color: var(--pp-green);
  font-weight: 700;
  background: #e8f0e0;
  border-radius: 4px;
  padding: 1px 5px;
  white-space: nowrap;
}
.pp-sys-opt.is-selected .pp-sys-opt-eq {
  background: var(--pp-green);
  color: #fff;
}

.pp-sys-opt-bulk {
  display: block;
  font-size: .7rem;
  color: #2e7d32;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-align: center;
}
.pp-sys-opt.is-selected .pp-sys-opt-bulk { color: #c8e6c9; }
.pp-sys-opt-unit,
.pp-sys-opt-save {
  display: block;
}
.pp-sys-opt-unit {
  font-weight: 900;
}
.pp-sys-opt-save {
  color: #5d6a3b;
  font-weight: 700;
}
.pp-sys-opt.is-selected .pp-sys-opt-save {
  color: #eff8e9;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt {
  min-height: 104px;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt-bulk {
  font-size: .74rem;
  line-height: 1.25;
  letter-spacing: 0;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt.is-selected .pp-sys-opt-bulk,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt.is-selected .pp-sys-opt-save {
  color: var(--pp-green-deep);
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-color-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-color-chip {
  width: 100%;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.pp-sys-info {
  font-size: .82rem;
  color: #444;
  background: var(--pp-cream);
  border: 1px solid var(--pp-border);
  border-radius: 7px;
  padding: 8px 12px;
  line-height: 1.55;
}

/* ── Kullanıcı Yorumları ── */
.pp-reviews {
  padding: 2rem 24px;
  border-top: 1px solid var(--pp-border);
  max-width: 860px;
  margin: 0 auto;
}
.pp-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.pp-reviews-title { font-size: 1.1rem; font-weight: 700; }
.pp-rating-summary { display: flex; align-items: center; gap: 10px; }
.pp-rating-big { font-size: 2rem; font-weight: 900; line-height: 1; }
.pp-stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 2px; }
.pp-rating-count { font-size: .8rem; color: var(--pp-muted); }

.pp-review-card {
  padding: 14px 0;
  border-bottom: 1px solid var(--pp-border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pp-review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.pp-review-name { font-size: .87rem; font-weight: 700; }
.pp-review-date { font-size: .74rem; color: var(--pp-muted); }
.pp-review-stars { color: #f5a623; font-size: .9rem; letter-spacing: 1px; }
.pp-review-body { font-size: .87rem; color: #333; line-height: 1.6; margin: 0; }

.pp-review-form {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--pp-border);
  padding-top: 1.2rem;
}
.pp-review-form-title { font-size: .92rem; font-weight: 700; }
.pp-star-selector { display: flex; gap: 5px; }
.pp-star-btn {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  line-height: 1;
  padding: 0;
  transition: color .12s, transform .1s;
}
.pp-star-btn.is-active,
.pp-star-btn:hover { color: #f5a623; transform: scale(1.1); }
.pp-review-form input,
.pp-review-form textarea {
  border: 1px solid var(--pp-border);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: .88rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.pp-review-form textarea { min-height: 90px; resize: vertical; }
.pp-review-submit {
  align-self: flex-start;
  padding: 10px 24px;
  background: var(--pp-green);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.pp-review-submit:hover { background: #1d2c11; }
.pp-review-msg {
  font-size: .84rem;
  padding: 8px 12px;
  border-radius: 6px;
}
.pp-review-msg.ok { background: #e8f5e9; color: #2e7d32; }
.pp-review-msg.err { background: #fce4ec; color: #c62828; }

/* ── Trendyol benzeri ürün deneyimi ── */
.pp-top-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin: 2px 0 4px;
}
.pp-top-summary span {
  min-width: 0;
  border: 1px solid var(--pp-border);
  background: #fff;
  border-radius: 8px;
  padding: 7px 6px;
  text-align: center;
}
.pp-top-summary strong {
  display: block;
  color: var(--pp-green);
  font-size: .82rem;
  line-height: 1.1;
}
.pp-top-summary em {
  display: block;
  color: var(--pp-muted);
  font-size: .68rem;
  font-style: normal;
  line-height: 1.15;
  margin-top: 2px;
}
.pp-commerce-stack {
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 0 24px 1rem;
}
.pp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}
.pp-section-head span {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--pp-text);
}
.pp-section-head small {
  color: var(--pp-muted);
  font-size: .78rem;
  text-align: right;
  line-height: 1.35;
}
.pp-attributes,
.pp-product-qa,
.pp-sales-path {
  border: 1px solid var(--pp-border);
  border-radius: 10px;
  background: #fff;
  padding: 18px;
  margin-bottom: 16px;
}
.pp-attribute-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--pp-border);
  border-radius: 8px;
  overflow: hidden;
}
.pp-attribute-row {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--pp-border);
  min-width: 0;
}
.pp-attribute-row:nth-child(odd) { border-right: 1px solid var(--pp-border); }
.pp-attribute-row:nth-last-child(-n+2) { border-bottom: none; }
.pp-attribute-row span {
  color: var(--pp-muted);
  font-size: .78rem;
}
.pp-attribute-row strong {
  color: var(--pp-text);
  font-size: .84rem;
  line-height: 1.45;
}
.pp-ask-modern {
  border: 1px solid #d8ead5;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fbf3, #fff);
  padding: 18px;
  margin-bottom: 16px;
}
.pp-ask-modern .pp-ask-inner { max-width: none; }
.pp-ask-lead {
  margin: 0 0 12px;
  color: #444;
  font-size: .88rem;
  line-height: 1.55;
}
.pp-ask-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.pp-ask-chip {
  border: 1px solid #cbd7bf;
  background: #fff;
  color: var(--pp-green);
  border-radius: 999px;
  padding: 8px 12px;
  font: 700 .8rem/1.1 inherit;
  cursor: pointer;
}
.pp-ask-chip:hover,
.pp-ask-chip.is-selected {
  background: var(--pp-green);
  color: #fff;
  border-color: var(--pp-green);
}
.pp-ask-wa-main { margin-top: 0; }
.pp-qa-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 12px;
}
.pp-qa-filter {
  flex: 0 0 auto;
  border: 1px solid var(--pp-border);
  background: var(--pp-cream);
  color: #4a4a4a;
  border-radius: 999px;
  padding: 7px 11px;
  font: 700 .78rem/1.1 inherit;
  cursor: pointer;
}
.pp-qa-filter.is-active {
  background: var(--pp-green);
  border-color: var(--pp-green);
  color: #fff;
}
.pp-qa-list {
  display: grid;
  gap: 10px;
}
.pp-qa-item {
  border: 1px solid var(--pp-border);
  border-radius: 8px;
  padding: 12px;
  background: #fffdf8;
}
.pp-qa-item span {
  display: inline-flex;
  color: #7b6b37;
  background: #f2ead1;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: .7rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.pp-qa-item h3 {
  margin: 0 0 5px;
  font-size: .92rem;
  color: var(--pp-text);
}
.pp-qa-item p {
  margin: 0;
  color: #444;
  line-height: 1.55;
  font-size: .86rem;
}
.pp-review-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  margin: -4px 0 12px;
}
.pp-review-photo-strip span {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px dashed #d4cfbd;
  border-radius: 8px;
  background: #fffdf7;
  color: #756d55;
  padding: 8px 10px;
  font-size: .78rem;
  line-height: 1.35;
}
.pp-sales-path {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 14px;
  background: #f8f6ee;
}
.pp-sales-primary {
  background: var(--pp-green);
  color: #fff;
  border-radius: 8px;
  padding: 18px;
}
.pp-sales-primary span {
  display: block;
  color: #d7bd73;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pp-sales-primary h2 {
  margin: 8px 0;
  font-size: 1.15rem;
  line-height: 1.25;
}
.pp-sales-primary p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  line-height: 1.55;
}
.pp-sales-primary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 7px;
  background: #d7bd73;
  color: #1f2d15;
  padding: 0 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: .86rem;
}
.pp-sales-secondary {
  display: grid;
  gap: 10px;
}
.pp-sales-secondary div {
  border: 1px solid var(--pp-border);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}
.pp-sales-secondary strong {
  display: block;
  color: var(--pp-green);
  font-size: .9rem;
  margin-bottom: 4px;
}
.pp-sales-secondary p {
  margin: 0;
  color: #4c4c4c;
  font-size: .82rem;
  line-height: 1.45;
}

/* ── Satıcıya Sor ── */
.pp-ask {
  background: var(--pp-cream);
  border-top: 1px solid var(--pp-border);
  padding: 2rem 24px;
}
.pp-ask-inner { max-width: 860px; margin: 0 auto; }
.pp-ask-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.pp-ask-qa { display: flex; flex-direction: column; }
.pp-ask-item { border-bottom: 1px solid var(--pp-border); padding: 10px 0; }
.pp-ask-item:last-child { border-bottom: none; }
.pp-ask-q {
  font-size: .88rem;
  font-weight: 600;
  color: var(--pp-text);
  margin-bottom: 4px;
}
.pp-ask-q::before { content: "S: "; color: var(--pp-green); }
.pp-ask-a {
  font-size: .85rem;
  color: #444;
  line-height: 1.6;
}
.pp-ask-a::before { content: "C: "; font-weight: 600; color: #666; }
.pp-ask-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 1.2rem;
  padding: 16px;
  border: 1px solid rgba(37, 211, 102, .24);
  border-radius: 8px;
  background: #fff;
}
.pp-ask-support strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pp-green);
  font-size: .96rem;
  line-height: 1.25;
}
.pp-ask-support p {
  margin: 0;
  color: #454545;
  font-size: .86rem;
  line-height: 1.5;
}
.pp-ask-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.pp-ask-wa:hover { background: #1ebe58; }
.pp-ask.pp-ask-modern {
  background: linear-gradient(180deg, #f7fbf3, #fff);
  border: 1px solid #d8ead5;
  padding: 18px;
}

@media (max-width: 768px) {
  .pp-reviews { padding: 1.5rem 16px; }
  .pp-ask { padding: 1.5rem 16px; }
  .pp-ask-support {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .pp-ask-wa {
    width: 100%;
  }
  .pp-top-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pp-commerce-stack { padding: 0 16px 1rem; }
  .pp-section-head { align-items: flex-start; flex-direction: column; }
  .pp-section-head small { text-align: left; }
  .pp-attribute-grid { grid-template-columns: 1fr; }
  .pp-attribute-row { grid-template-columns: 104px minmax(0, 1fr); border-right: none !important; }
  .pp-attribute-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--pp-border); }
  .pp-attribute-row:last-child { border-bottom: none; }
  .pp-review-photo-strip { grid-template-columns: 1fr; }
  .pp-sales-path { grid-template-columns: 1fr; }
}

/* ── Checklist Sonraki Ürün Önerisi ── */
.pp-checklist {
  max-width: 860px;
  margin: 1.5rem auto 0;
  padding: 0 24px;
}
.pp-checklist-box {
  background: linear-gradient(135deg, #f0f4ec 0%, #f7f5ed 100%);
  border: 1.5px solid #c5d9b0;
  border-radius: 12px;
  padding: 16px 18px;
}
.pp-checklist-title {
  font-size: .78rem;
  font-weight: 700;
  color: #5a7a45;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

/* İlerleme adımları */
.pp-checklist-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
}
.pp-checklist-step {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.pp-checklist-step.done {
  background: #d4edba;
  color: #3d6b2a;
}
.pp-checklist-step.current {
  background: var(--pp-green);
  color: #fff;
}
.pp-checklist-step.pending {
  background: #e8e5dc;
  color: #888;
}
.pp-checklist-sep {
  color: #bbb;
  font-size: .7rem;
  flex-shrink: 0;
}

/* Öneri CTA */
.pp-checklist-cta,
.pp-checklist-next-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pp-checklist-msg {
  font-size: .88rem;
  color: #333;
  line-height: 1.45;
  flex: 1;
}
.pp-checklist-msg strong { color: var(--pp-green); }
.pp-checklist-msg span { color: #666; }
.pp-checklist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--pp-green);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.pp-checklist-link:hover { background: #1d2c11; }
.pp-checklist-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.pp-checklist-card {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 13px 12px 12px;
  color: #24351b;
  text-decoration: none;
  border: 1px solid rgba(47, 74, 32, 0.16);
  border-radius: 10px;
  background: rgba(255, 253, 246, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.pp-checklist-card:hover,
.pp-checklist-card:focus-visible {
  border-color: rgba(199, 162, 71, 0.58);
  box-shadow: 0 12px 22px rgba(47, 74, 32, 0.12);
  outline: none;
  transform: translateY(-2px);
}
.pp-checklist-card-rank {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--pp-green-deep);
  background: var(--pp-gold-soft);
  font-size: .72rem;
  font-weight: 900;
}
.pp-checklist-card-emoji {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(47, 74, 32, 0.08);
  font-size: 1.08rem;
}
.pp-checklist-card strong {
  color: var(--pp-green-deep);
  font-size: .95rem;
}
.pp-checklist-card small {
  color: #666;
  font-size: .78rem;
  line-height: 1.36;
}
.pp-checklist-card em {
  margin-top: auto;
  color: #755a1e;
  font-style: normal;
  font-size: .78rem;
  font-weight: 900;
}
.pp-checklist-complete {
  font-size: .88rem;
  color: #3d6b2a;
  font-weight: 600;
  text-align: center;
  padding: 4px 0;
}

/* ── Önceki / Sonraki Kategori Ürünleri ── */
.pp-category-flow {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 24px;
}
.pp-category-flow-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.pp-category-flow-kicker {
  display: block;
  margin-bottom: 4px;
  color: #6e7f57;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pp-category-flow-title {
  margin: 0;
  color: var(--pp-text);
  font-size: 1.12rem;
  line-height: 1.25;
}
.pp-category-flow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--pp-green);
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.pp-category-flow-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 14px;
  padding-bottom: 8px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.pp-category-flow-card {
  flex: 0 0 190px;
  width: 190px;
  max-width: 190px;
}
.pp-category-flow-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
}

@media (max-width: 768px) {
  .pp-ai-builder {
    grid-template-columns: 1fr;
  }
  .pp-ai-builder-btn {
    width: 100%;
  }
  .pp-checklist { padding: 0 16px; }
  .pp-checklist-cta { flex-direction: column; align-items: flex-start; }
  .pp-checklist-link { width: 100%; justify-content: center; }
  .pp-checklist-next-head {
    flex-direction: column;
    align-items: stretch;
  }
  .pp-checklist-ai {
    width: 100%;
  }
  .pp-checklist-next-grid {
    grid-template-columns: 1fr;
  }
  .pp-checklist-card {
    min-height: 0;
  }
  .pp-category-flow {
    padding: 0 16px;
  }
  .pp-category-flow-head {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .pp-category-flow-link {
    width: 100%;
  }
  .pp-category-flow-grid {
    display: flex;
    gap: 10px;
    margin-left: -2px;
    margin-right: -2px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .pp-category-flow-card {
    flex-basis: 174px;
    width: 174px;
    max-width: 174px;
  }
}

@media (max-width: 420px) {
  .pp-category-flow-card {
    flex-basis: 164px;
    width: 164px;
    max-width: 164px;
  }
  .pp-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .pp-nav-logo {
    gap: 6px;
  }
  .pp-nav-logo span {
    font-size: .86rem;
    letter-spacing: .06em;
  }
  .pp-nav-support {
    display: none;
  }
  .pp-nav-cart {
    padding: 0 10px;
  }
  .pp-badges { grid-template-columns: 1fr; }
  .pp-color-chips { gap: 6px; }
  .pp-sys-opts { grid-template-columns: 1fr; }
  .pp-color-chip { padding: 5px 12px; font-size: .82rem; }
}

/* Mobile-first marketplace product detail refinements */
body[data-product-id] {
  background: #faf8f1;
}
body[data-product-id] *,
body[data-product-id] *::before,
body[data-product-id] *::after {
  box-sizing: border-box;
}
.pp-layout {
  max-width: 1220px;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  gap: clamp(22px, 3vw, 40px);
}
.pp-gallery {
  min-width: 0;
}
@media (min-width: 980px) {
  .pp-gallery {
    position: sticky;
    top: 96px;
  }
}
.pp-gallery-main {
  border: 1px solid rgba(226, 220, 201, .9);
  box-shadow: 0 18px 38px rgba(47, 74, 32, .08);
}
.pp-gallery-main::after {
  content: "Kuvvet rengine göre seç";
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(19, 33, 13, .84);
  color: #fff8df;
  font-size: .76rem;
  font-weight: 800;
  pointer-events: none;
}
.pp-gallery-thumbs {
  gap: 10px;
}
.pp-thumb {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  background: #fff;
}
.pp-buybox {
  position: relative;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(226, 220, 201, .92);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(47, 74, 32, .09);
}
.pp-title {
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  letter-spacing: 0;
}
.pp-trust-line {
  color: #6b654f;
}
.pp-top-summary {
  margin: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.pp-top-summary span {
  border-color: #e7dfc8;
  background: linear-gradient(180deg, #fff, #fffaf0);
}
.pp-top-summary strong {
  font-size: .86rem;
}
.pp-price-block {
  padding: 15px;
  border-color: #eadfbd;
  background: linear-gradient(180deg, #fffaf0, #fff);
}
.pp-price-main {
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: 0;
}
.pp-istihkak-badge {
  display: flex;
  width: fit-content;
  max-width: 100%;
  line-height: 1.25;
}
.pp-deal-note,
.pp-why-compact {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(226, 220, 201, .86);
  color: #4d4a3d;
  font-size: .82rem;
  line-height: 1.35;
}
.pp-deal-note strong {
  color: var(--pp-green);
}
.pp-why-compact {
  display: block;
}
.pp-why-compact summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  color: var(--pp-green);
  font-size: .86rem;
  font-weight: 900;
  padding-right: 24px;
}
.pp-why-compact summary::-webkit-details-marker {
  display: none;
}
.pp-why-compact summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #eef6e7;
  color: var(--pp-green);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  font-size: .94rem;
  line-height: 1;
}
.pp-why-compact[open] summary::after {
  content: "-";
}
.pp-why-compact ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.pp-why-compact li {
  position: relative;
  padding-left: 22px;
  color: #454133;
  font-size: .82rem;
  line-height: 1.45;
}
.pp-why-compact li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pp-green);
}
.pp-color-chip,
.pp-sys-opt,
.pp-buy-inline,
.pp-btn-primary,
.pp-btn-whatsapp {
  border-radius: 9px;
}
.pp-color-chip {
  min-height: 40px;
  padding: 7px 13px;
  font-weight: 750;
}
.pp-sys-opts {
  gap: 8px;
}
.pp-sys-opt {
  min-height: 76px;
  justify-content: center;
  padding: 9px 7px;
}
.pp-sys-opt-bulk {
  line-height: 1.25;
}
.pp-buy-inline {
  padding: 14px;
  background: #fffdf6;
  border-color: #d2bf7a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.pp-buy-inline .cw-qty-row {
  padding: 8px 10px;
  border: 1px solid var(--pp-border);
  border-radius: 9px;
  background: #fff;
}
.pp-buy-inline .cw-add-btn {
  min-height: 56px;
  text-transform: none;
  letter-spacing: 0;
}
.pp-btn-primary,
.pp-btn-whatsapp {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.pp-why-buy {
  padding: 12px;
  background: #fbfff8;
}
.pp-why-buy-list {
  gap: 7px;
}
.pp-why-buy-item {
  font-size: .82rem;
}
.pp-badges {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pp-badge {
  min-height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
}
.pp-commerce-stack,
.pp-content,
.pp-related,
.pp-complementary {
  max-width: 1220px;
}
.pp-commerce-stack {
  margin-top: 22px;
}
.pp-content {
  padding: 0 24px;
}
.pp-content,
.pp-related {
  margin-top: 2rem;
}

@media (min-width: 769px) {
  .pp-sticky-cta {
    display: none !important;
  }
}

@media (max-width: 768px) {
  html,
  body[data-product-id] {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body[data-product-id] {
    background: #fff;
  }
  .pp-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding: 0;
  }
  .pp-gallery-main {
    width: 100%;
    max-width: 100vw;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
    background: #f7f5ed;
    aspect-ratio: 1 / 1;
  }
  .pp-gallery-main img {
    object-fit: contain;
  }
  .pp-gallery-main::after {
    left: 12px;
    bottom: 12px;
    font-size: .72rem;
  }
  .pp-gallery-thumbs {
    max-width: 100vw;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    margin: 0;
    padding: 10px 14px;
    background: #fff;
    border-bottom: 1px solid var(--pp-border);
  }
  .pp-thumb {
    width: 64px;
    height: 64px;
  }
  .pp-buybox {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    padding: 14px 14px 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .pp-title {
    font-size: 1.18rem;
    line-height: 1.28;
  }
  .pp-top-summary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    gap: 8px;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
  }
  .pp-top-summary span {
    flex: 0 0 94px;
    scroll-snap-align: start;
  }
  .pp-price-block {
    min-width: 0;
    overflow: hidden;
    padding: 13px;
  }
  .pp-price-row {
    align-items: flex-end;
  }
  .pp-price-main {
    font-size: 2rem;
  }
  .pp-istihkak-badge {
    width: 100%;
    white-space: normal;
    border-radius: 9px;
    padding: 8px 10px;
    font-size: .76rem;
  }
  .pp-color-chips {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    gap: 7px;
    padding-bottom: 2px;
  }
  .pp-color-chip {
    flex: 0 0 calc((100% - 14px) / 3);
    min-width: 0;
    text-align: center;
  }
  .pp-sys-opts {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    gap: 8px;
    padding-bottom: 0;
  }
  .pp-sys-opt {
    min-width: 0;
    min-height: 92px;
    align-items: center;
    padding: 8px 5px;
  }
  .pp-sys-opt-freq {
    font-size: .72rem;
    line-height: 1.1;
  }
  .pp-sys-opt-eq {
    font-size: .68rem;
    padding: 2px 5px;
  }
  .pp-sys-opt-eq,
  .pp-sys-opt-bulk {
    white-space: normal;
  }
  .pp-sys-opt-bulk {
    display: grid;
    gap: 2px;
    margin-top: 3px;
    font-size: .64rem;
    line-height: 1.12;
  }
  .pp-sys-opt-unit,
  .pp-sys-opt-save {
    display: block;
  }
  .pp-sys-opt-save {
    opacity: .88;
  }
  .pp-buy-inline {
    width: 100%;
    min-width: 0;
    padding: 12px;
  }
  .pp-buy-inline .cw-size-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pp-buy-inline .cw-size-btn {
    min-width: 0;
    width: 100%;
  }
  .pp-buy-inline .cw-qty-row {
    min-width: 0;
  }
  .pp-buy-inline .cw-add-btn {
    width: 100%;
  }
  .pp-buy-inline .cw-add-btn {
    min-height: 54px;
    font-size: 1.02rem;
  }
  .pp-badges {
    grid-template-columns: 1fr 1fr;
  }
  .pp-commerce-stack,
  .pp-content,
  .pp-related,
  .pp-complementary {
    margin-top: 18px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .pp-complementary-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
  }
  .pp-complementary-card {
    flex: 0 0 78%;
    padding: 12px;
  }
  .pp-sticky-cta-inner {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(72px, .68fr) minmax(0, 1.45fr);
    align-items: center;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  }
  .pp-sticky-cta-info {
    min-width: 0;
    display: grid;
    gap: 1px;
  }
  .pp-sticky-cta-name {
    font-size: .78rem;
  }
  .pp-sticky-cta-price {
    font-size: 1.05rem;
  }
  .pp-sticky-actions {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .pp-sticky-cta-btn,
  .pp-sticky-buy-now {
    width: 100%;
    min-height: 44px;
    padding: 0 7px;
    font-size: .82rem;
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(42,60,30,.26);
    gap: 6px;
    letter-spacing: 0;
  }
  .pp-sticky-action-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (max-width: 768px) {
  body[data-product-id] .pp-complementary .pp-complementary-card {
    flex: 0 0 174px;
    width: 174px;
    max-width: 174px;
    padding: 0 0 12px;
  }
  body[data-product-id] .pp-complementary .pp-complementary-card-img {
    height: 174px;
  }
  body[data-product-id] .pp-category-flow .pp-category-flow-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding: 0 2px 8px;
    margin-left: -2px;
    margin-right: -2px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  body[data-product-id] .pp-category-flow .pp-category-flow-card {
    flex: 0 0 174px;
    width: 174px;
    max-width: 174px;
    padding: 0 0 12px;
  }
}

@media (max-width: 420px) {
  body[data-product-id] .pp-complementary .pp-complementary-card {
    flex-basis: 164px;
    width: 164px;
    max-width: 164px;
    padding: 0 0 12px;
  }
  body[data-product-id] .pp-complementary .pp-complementary-card-img {
    height: 164px;
  }
  body[data-product-id] .pp-category-flow .pp-category-flow-card {
    flex-basis: 164px;
    width: 164px;
    max-width: 164px;
    padding: 0 0 12px;
  }
}

/* Final override: product rails use compact 1:1 image cards */
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-grid,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-category-flow-grid {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 8px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary-head,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow-head {
  min-height: 44px;
  margin-bottom: 14px;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow-head {
  display: block;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow-link {
  display: none;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow-kicker {
  margin-bottom: 4px;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card {
  flex: 0 0 190px;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  padding: 0 0 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card-img,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card-img {
  display: block;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  height: 190px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 0;
  background: #fffdf8;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card-name,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card-name {
  padding: 0 12px;
  font-size: .88rem;
  line-height: 1.25;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card-note,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card-note {
  flex: none;
  display: -webkit-box;
  min-height: 0;
  max-height: 4.1em;
  overflow: hidden;
  padding: 0 12px;
  font-size: .78rem;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card-footer,
body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card-footer {
  margin-top: auto;
  padding: 0 12px;
}

@media (max-width: 768px) {
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary,
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow {
    padding-left: 14px;
    padding-right: 14px;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary-head,
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow-head {
    min-height: 0;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-grid,
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-category-flow-grid {
    gap: 10px;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card,
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card {
    flex-basis: 174px;
    width: 174px;
    min-width: 174px;
    max-width: 174px;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card-img,
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card-img {
    width: 174px;
    min-width: 174px;
    max-width: 174px;
    height: 174px;
  }
}

@media (max-width: 420px) {
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card,
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card {
    flex-basis: 164px;
    width: 164px;
    min-width: 164px;
    max-width: 164px;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-complementary .pp-complementary-card-img,
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-category-flow .pp-complementary-card-img {
    width: 164px;
    min-width: 164px;
    max-width: 164px;
    height: 164px;
  }
}

@media (max-width: 480px) {
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt {
    min-height: 96px;
    align-items: center;
    padding: 8px 4px;
    text-align: center;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt-freq {
    font-size: .72rem;
    line-height: 1.15;
    text-align: center;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt-eq {
    font-size: .66rem;
    padding: 2px 4px;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-sys-opt-bulk {
    font-size: .66rem;
    line-height: 1.16;
    text-align: center;
  }
}

@media (min-width: 769px) {
  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-gallery > .pp-ai-builder {
    margin-top: 14px;
    padding: 12px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(9, 16, 6, 0.12);
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-gallery > .pp-ai-builder .pp-ai-builder-copy {
    gap: 2px;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-gallery > .pp-ai-builder .pp-ai-builder-copy strong {
    font-size: .9rem;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-gallery > .pp-ai-builder .pp-ai-builder-copy p {
    display: none;
  }

  body:is([data-product-id="asker-fanila"], [data-product-id="asker-atlet"], [data-product-id="asker-lycra-boxer"], [data-product-id="asker-arjantin-boxer"], [data-product-id="asker-slip"]) .pp-gallery > .pp-ai-builder .pp-ai-builder-btn {
    min-height: 36px;
    padding: 0 14px;
    font-size: .78rem;
  }
}

/* Çorap detay: tip + renk birleşik varyant mimarisi */
body[data-product-id="asker-corap"] .pp-type-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-product-id="asker-corap"] .pp-type-card {
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
  font-family: inherit;
  text-align: left;
}

body[data-product-id="asker-corap"] .pp-type-card-name {
  display: grid;
  gap: 4px;
  min-width: 0;
}

body[data-product-id="asker-corap"] .pp-type-card-name small {
  color: var(--pp-muted);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.35;
}

body[data-product-id="asker-corap"] .pp-color-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-product-id="asker-corap"] .pp-color-chip {
  width: 100%;
  min-width: 0;
}

body[data-product-id="asker-corap"] .pp-complementary,
body[data-product-id="asker-corap"] .pp-category-flow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

body[data-product-id="asker-corap"] .pp-complementary .pp-complementary-grid,
body[data-product-id="asker-corap"] .pp-category-flow .pp-category-flow-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 14px;
  padding: 0 0 8px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

body[data-product-id="asker-corap"] .pp-complementary .pp-complementary-card,
body[data-product-id="asker-corap"] .pp-category-flow .pp-complementary-card {
  flex: 0 0 190px;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  padding: 0 0 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

body[data-product-id="asker-corap"] .pp-complementary .pp-complementary-card-img,
body[data-product-id="asker-corap"] .pp-category-flow .pp-complementary-card-img {
  display: block;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  height: 190px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 0;
  background: #fffdf8;
}

@media (max-width: 768px) {
  body[data-product-id="asker-corap"] .pp-type-cards {
    grid-template-columns: 1fr;
  }

  body[data-product-id="asker-corap"] .pp-complementary,
  body[data-product-id="asker-corap"] .pp-category-flow {
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-product-id="asker-corap"] .pp-complementary .pp-complementary-card,
  body[data-product-id="asker-corap"] .pp-category-flow .pp-complementary-card {
    flex-basis: 174px;
    width: 174px;
    min-width: 174px;
    max-width: 174px;
  }

  body[data-product-id="asker-corap"] .pp-complementary .pp-complementary-card-img,
  body[data-product-id="asker-corap"] .pp-category-flow .pp-complementary-card-img {
    width: 174px;
    min-width: 174px;
    max-width: 174px;
    height: 174px;
  }
}

@media (max-width: 420px) {
  body[data-product-id="asker-corap"] .pp-complementary .pp-complementary-card,
  body[data-product-id="asker-corap"] .pp-category-flow .pp-complementary-card {
    flex-basis: 164px;
    width: 164px;
    min-width: 164px;
    max-width: 164px;
  }

  body[data-product-id="asker-corap"] .pp-complementary .pp-complementary-card-img,
  body[data-product-id="asker-corap"] .pp-category-flow .pp-complementary-card-img {
    width: 164px;
    min-width: 164px;
    max-width: 164px;
    height: 164px;
  }
}

/* Termal detay: tamamlayıcı ve yakın ihtiyaç kart raylarını aynı hizaya sabitle */
body[data-product-id="asker-termal-iclik"] .pp-complementary,
body[data-product-id="asker-termal-iclik"] .pp-category-flow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

body[data-product-id="asker-termal-iclik"] .pp-complementary-head,
body[data-product-id="asker-termal-iclik"] .pp-category-flow-head {
  min-height: 44px;
  margin-bottom: 14px;
}

body[data-product-id="asker-termal-iclik"] .pp-category-flow-head {
  display: block;
}

body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-grid,
body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-category-flow-grid {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 8px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card,
body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card {
  flex: 0 0 190px;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  padding: 0 0 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

@media (min-width: 769px) {
  body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card {
    height: 330px;
  }
}

body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card-img,
body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card-img {
  display: block;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  height: 190px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 0;
  background: #fffdf8;
}

body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card-name,
body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card-name {
  padding: 0 12px;
  font-size: .88rem;
  line-height: 1.25;
}

body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card-note,
body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card-note {
  flex: none;
  display: -webkit-box;
  min-height: 0;
  max-height: 4.1em;
  overflow: hidden;
  padding: 0 12px;
  font-size: .78rem;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card-footer,
body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card-footer {
  margin-top: auto;
  padding: 0 12px;
}

@media (max-width: 768px) {
  body[data-product-id="asker-termal-iclik"] .pp-complementary,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow {
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-product-id="asker-termal-iclik"] .pp-complementary-head,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow-head {
    min-height: 0;
  }

  body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-grid,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-category-flow-grid {
    gap: 10px;
  }

  body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card {
    flex-basis: 174px;
    width: 174px;
    min-width: 174px;
    max-width: 174px;
  }

  body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card-img,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card-img {
    width: 174px;
    min-width: 174px;
    max-width: 174px;
    height: 174px;
  }
}

@media (max-width: 420px) {
  body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card {
    flex-basis: 164px;
    width: 164px;
    min-width: 164px;
    max-width: 164px;
  }

  body[data-product-id="asker-termal-iclik"] .pp-complementary .pp-complementary-card-img,
  body[data-product-id="asker-termal-iclik"] .pp-category-flow .pp-complementary-card-img {
    width: 164px;
    min-width: 164px;
    max-width: 164px;
    height: 164px;
  }
}

/* Bot bakımı detay: komple kit ve kategori ürün kartlarını aynı raya al */
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary-head,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow-head {
  min-height: 44px;
  margin-bottom: 14px;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow-head {
  display: block;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-grid,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-category-flow-grid {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 8px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card {
  flex: 0 0 190px;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  min-height: 337px;
  padding: 0 0 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card-img,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card-img {
  display: block;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  height: 190px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 0;
  background: #fffdf8;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card-name,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card-name {
  padding: 0 12px;
  font-size: .88rem;
  line-height: 1.25;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card-note,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card-note {
  flex: none;
  display: -webkit-box;
  min-height: 0;
  max-height: 4.1em;
  overflow: hidden;
  padding: 0 12px;
  font-size: .78rem;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card-footer,
body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card-footer {
  margin-top: auto;
  padding: 0 12px;
}

@media (max-width: 768px) {
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary,
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow {
    padding-left: 14px;
    padding-right: 14px;
  }

  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary-head,
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow-head {
    min-height: 0;
  }

  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-grid,
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-category-flow-grid {
    gap: 10px;
  }

  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card,
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card {
    flex-basis: 174px;
    width: 174px;
    min-width: 174px;
    max-width: 174px;
  }

  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card-img,
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card-img {
    width: 174px;
    min-width: 174px;
    max-width: 174px;
    height: 174px;
  }
}

@media (max-width: 420px) {
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card,
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card {
    flex-basis: 164px;
    width: 164px;
    min-width: 164px;
    max-width: 164px;
  }

  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-complementary .pp-complementary-card-img,
  body:is([data-product-id="bot-bakim-seti"], [data-product-id="asker-havlusu"], [data-product-id="asker-kisisel-bakim"], [data-product-id="asker-banyo-urunleri"], [data-product-id="asker-valiz-saklama"], [data-product-id="asker-kucuk-gereklilikler"], [data-product-id="bot-boyasi"], [data-product-id="bot-parlatici"], [data-product-id="bot-vatkasi"], [data-product-id="bot-tabanligi"], [data-product-id="bot-pudrasi"], [data-product-id="bot-koku"]) .pp-category-flow .pp-complementary-card-img {
    width: 164px;
    min-width: 164px;
    max-width: 164px;
    height: 164px;
  }
}
