/* ==============================================
   PDP REDESIGN — Inspired by Amazon/Trendyol
   Primary: var(--th-color-primary) · Accent: #2c3e50
   Clean card-based layout with premium spacing
   ============================================== */

/* ── Base Container ── */
.pdp2 {

  margin: 0 auto;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--th-color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero: Card-Wrapped Grid ── */
.pdp2-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--th-space-8);
  align-items: start;
  background: #fff;
  border-radius: var(--th-radius-xl);
  padding: var(--th-space-8);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
}

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.pdp2-gallery {
  position: sticky;
  top: var(--th-space-6);
  border-radius: var(--th-pdp-gallery-radius);
  overflow: visible;
}
.pdp2-gallery-figure {
  margin: 0;
  position: relative;
  width: 100%;
}
.pdp2-gallery .carousel-outer { border-radius: var(--th-radius-lg); overflow: hidden; }
.pdp2-gallery img { border-radius: var(--th-radius-lg); }

/* Carousel wrapper */
.pdp2-carousel {
  border-radius: var(--th-radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--th-pdp-gallery-bg);
}
.pdp2-carousel .carousel-inner {
  border-radius: var(--th-radius-lg);
}

/* CLS Guard */
.pdp2-carousel .pp-main-img {
  aspect-ratio: 3/4;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pdp2-carousel .pp-media-stage {
  position: relative;
  overflow: hidden;
}

/* Discount badge on gallery */
.pdp2-gallery-discount {
  position: absolute;
  top: var(--th-space-3);
  left: var(--th-space-3);
  z-index: var(--th-z-dropdown, 5);
}
.pdp2-gallery-discount span {
  display: inline-block;
  padding: 4px 10px;
  background: var(--th-color-danger);
  color: #fff;
  font-size: var(--th-text-xs);
  font-weight: 700;
  border-radius: var(--th-radius-full);
  line-height: 1.2;
}

/* Gallery nav buttons */
.pdp2-gallery-prev,
.pdp2-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--th-z-dropdown, 10);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--th-color-border);
  border-radius: var(--th-radius-full);
  color: var(--th-color-text);
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  box-shadow: var(--th-shadow-sm);
  transition: opacity var(--th-transition-default), background var(--th-transition-default), transform var(--th-transition-default);
}
.pdp2-carousel:hover .pdp2-gallery-prev,
.pdp2-carousel:hover .pdp2-gallery-next,
.pdp2-gallery-prev:focus-visible,
.pdp2-gallery-next:focus-visible {
  opacity: 1;
}
.pdp2-gallery-prev:hover,
.pdp2-gallery-next:hover {
  background: var(--th-color-primary);
  color: #fff;
  border-color: var(--th-color-primary);
  transform: translateY(-50%) scale(1.05);
}
.pdp2-gallery-prev:active,
.pdp2-gallery-next:active {
  transform: translateY(-50%) scale(0.95);
}
.pdp2-gallery-prev { left: var(--th-space-3); }
.pdp2-gallery-next { right: var(--th-space-3); }

/* Hover zoom (desktop) */
.pdp2-carousel .pp-image-link {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}
.pdp2-carousel .pp-image-link:hover .pp-main-img {
  transform: scale(1.08);
}

/* Thumbnail strip */
.pdp2-thumbs {
  display: flex;
  gap: var(--th-space-2);
  margin-top: var(--th-space-3);
  padding: var(--th-space-1) 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pdp2-thumbs::-webkit-scrollbar { display: none; }

.pdp2-thumb {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 72px;
  height: 96px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--th-radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--th-pdp-gallery-bg);
  transition: border-color var(--th-transition-default), opacity var(--th-transition-default);
  opacity: .65;
}
.pdp2-thumb:hover,
.pdp2-thumb:focus-visible { opacity: 1; border-color: var(--th-color-border); }
.pdp2-thumb.active { opacity: 1; border-color: var(--th-pdp-gallery-thumb-active); }
.pdp2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Gallery actions (fav, compare, share) */
.pdp2-gallery-actions {
  position: absolute;
  top: var(--th-space-3);
  right: var(--th-space-3);
  z-index: var(--th-z-dropdown, 5);
  display: flex;
  flex-direction: column;
  gap: var(--th-space-2);
}
.pdp2-gallery-actions a,
.pdp2-gallery-actions button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--th-radius-full);
  border: none;
  color: var(--th-color-text-muted);
  font-size: 14px;
  box-shadow: var(--th-shadow-sm);
  transition: color var(--th-transition-default), transform var(--th-transition-default), box-shadow var(--th-transition-default);
  cursor: pointer;
}
.pdp2-gallery-actions a:hover,
.pdp2-gallery-actions button:hover {
  color: var(--th-color-primary);
  transform: scale(1.08);
  box-shadow: var(--th-shadow-md);
}
.pdp2-gallery-actions a:active,
.pdp2-gallery-actions button:active {
  transform: scale(0.95);
}

/* Gallery floating badges */
.pdp2-gallery-badges {
  position: absolute;
  top: var(--th-space-3);
  left: var(--th-space-3);
  z-index: var(--th-z-dropdown, 5);
  display: flex;
  flex-direction: column;
  gap: var(--th-space-1);
}
.pdp2-gbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: var(--th-radius-sm);
  font-size: var(--th-text-xs);
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(8px);
  box-shadow: var(--th-shadow-sm);
}
.pdp2-gbadge--fast {
  background: rgba(255, 255, 255, .92);
  color: var(--th-color-primary);
}
.pdp2-gbadge--cargo {
  background: rgba(255, 255, 255, .92);
  color: var(--th-color-success);
}

/* Gallery counter (mobile) */
.pdp2-gallery-counter {
  display: none;
  position: absolute;
  bottom: var(--th-space-3);
  left: 50%;
  transform: translateX(-50%);
  background: var(--th-pdp-gallery-counter-bg);
  color: #fff;
  font-size: var(--th-text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--th-radius-full);
  z-index: var(--th-z-dropdown, 10);
  gap: 2px;
  align-items: center;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

/* ═══════════════════════════════════════════════
   VIDEO ENGINE
   ═══════════════════════════════════════════════ */
.pdp2-video {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp2-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.pdp2-video.pdp2-video--playing .pdp2-video-poster {
  opacity: 0;
  pointer-events: none;
}
.pdp2-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--th-space-2);
  background: rgba(0, 0, 0, .25);
  border: none;
  cursor: pointer;
  z-index: var(--th-z-dropdown, 5);
  transition: background .2s ease;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
.pdp2-video-play:hover { background: rgba(0, 0, 0, .4); }
.pdp2-video-play:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }
.pdp2-video-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--th-color-primary);
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
  transition: transform .2s ease;
}
.pdp2-video-play:hover .pdp2-video-play-icon { transform: scale(1.08); }
.pdp2-video-play-label {
  color: #fff;
  font-size: var(--th-text-sm);
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}
.pdp2-video.pdp2-video--playing .pdp2-video-play { display: none; }
.pdp2-video-stage { position: absolute; inset: 0; z-index: 4; }
.pdp2-video-stage iframe,
.pdp2-video-stage video { width: 100%; height: 100%; border: none; display: block; background: #000; }
.pdp2-thumb--video { position: relative; }
.pdp2-thumb-video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  border-radius: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .pdp2-video-play:hover .pdp2-video-play-icon { transform: none; }
  .pdp2-video-poster { transition: none; }
}

/* ═══════════════════════════════════════════════
   INFO PANEL
   ═══════════════════════════════════════════════ */
.pdp2-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: var(--th-space-2);
}

/* ── Top Badge Row ── */
.pdp2-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--th-space-2);
  margin-bottom: var(--th-space-4);
}
.pdp2-topbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--th-radius-full);
  font-size: var(--th-text-xs);
  font-weight: 600;
  line-height: 1;
  transition: transform var(--th-transition-default);
}
.pdp2-topbadge:hover { transform: translateY(-2px); }
.pdp2-topbadge i { font-size: 10px; }
.pdp2-topbadge--deal {
  background: var(--th-color-accent-bg);
  color: var(--th-color-accent);
  border: 1px solid var(--th-color-accent-border);
}
.pdp2-topbadge--havale {
  background: var(--th-color-danger-bg);
  color: var(--th-color-danger);
  border: 1px solid var(--th-color-danger-border);
}
.pdp2-topbadge--kargo {
  background: var(--th-color-success-bg);
  color: var(--th-color-success-dark);
  border: 1px solid var(--th-color-success-border);
}

/* ── Breadcrumb Row ── */
.pdp2-breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--th-space-3);
  margin-bottom: var(--th-space-3);
  min-height: 24px;
}
.pdp2-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: var(--th-text-xs);
  color: var(--th-color-text-muted);
  min-width: 0;
}
.pdp2-breadcrumb li {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}
/* Son li (ürün adı) esnek — taşınca kısalır */
.pdp2-breadcrumb li:last-child {
  flex-shrink: 1;
  min-width: 0;
}
.pdp2-breadcrumb li:last-child a,
.pdp2-breadcrumb li:last-child span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 260px;
  color: var(--th-color-text);
  font-weight: 500;
  pointer-events: none;
  cursor: default;
}
.pdp2-breadcrumb li + li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin: 0 8px;
  color: var(--th-color-text-light);
  font-size: 8px;
}
.pdp2-breadcrumb a {
  color: var(--th-color-text-muted);
  text-decoration: none;
  transition: color var(--th-transition-default);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.pdp2-breadcrumb a:hover { color: var(--th-color-primary); }

/* Copy link button */
.pdp2-copy-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid var(--th-color-border);
  border-radius: var(--th-radius-full);
  font-size: 11px;
  color: var(--th-color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--th-transition-default);
  flex-shrink: 0;
}
.pdp2-copy-link:hover { border-color: var(--th-color-primary); color: var(--th-color-primary); }
.pdp2-copy-link.copied { border-color: var(--th-color-success); color: var(--th-color-success); }
.pdp2-copy-link i { font-size: 10px; }

/* ── Brand Row + SKU ── */
.pdp2-brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--th-space-2);
  margin-bottom: var(--th-space-4);
  padding-bottom: var(--th-space-3);
  border-bottom: 1px solid var(--th-color-border-light);
}
.pdp2-brand {
  font-size: var(--th-text-xs);
  font-weight: 700;
  color: var(--th-color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--th-transition-default);
  display: inline-block;
  margin-bottom: var(--th-space-1);
}
.pdp2-brand:hover { text-decoration: underline; color: var(--th-color-primary-hover); }
.pdp2-sku { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: var(--th-color-text-light); }
.pdp2-sku-label { font-weight: 600; }
.pdp2-sku-value { font-family: monospace; letter-spacing: .02em; }
.pdp2-sku-copy {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; padding: 0;
  background: transparent;
  border: 1px solid var(--th-color-border-light);
  border-radius: 3px;
  color: var(--th-color-text-light);
  font-size: 8px;
  cursor: pointer;
  transition: var(--th-transition-default);
  flex-shrink: 0;
}
.pdp2-sku-copy:hover { border-color: var(--th-color-primary); color: var(--th-color-primary); }
.pdp2-sku-copy.copied { border-color: var(--th-color-success); color: var(--th-color-success); }

/* ── Title (H1) ── */
.pdp2-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--th-color-text);
  line-height: 1.4;
  margin: 0 0 var(--th-space-3);
  max-width: 640px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ── Tagline ── */
.pdp2-tagline {
  margin-bottom: var(--th-space-3);
  position: relative;
  max-height: calc(var(--th-text-sm) * 1.7 * 2);
  overflow: hidden;
}
.pdp2-tagline-text {
  font-size: var(--th-text-sm);
  color: var(--th-color-text-muted);
  line-height: 1.7;
  margin: 0;
}
.pdp2-tagline.expanded { max-height: none; }
.pdp2-tagline.expanded .pdp2-tagline-text { -webkit-line-clamp: unset; }
.pdp2-tagline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 0;
  background: none;
  border: none;
  font-size: var(--th-text-xs);
  font-weight: 600;
  color: var(--th-color-primary);
  cursor: pointer;
  transition: var(--th-transition-default);
}
.pdp2-tagline-toggle:hover { text-decoration: underline; }
.pdp2-tagline-toggle i { font-size: 9px; transition: transform 0.2s; }
.pdp2-tagline.expanded .pdp2-tagline-toggle i { transform: rotate(180deg); }

/* ── Product Badges (inline row) ── */
.pdp2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--th-space-1-5, 6px);
  margin-bottom: var(--th-space-4);
  margin-top: var(--th-space-1);
}
.pdp2-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--th-radius-full);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
}
.pdp2-badge i { font-size: 9px; }
.pdp2-badge--fast { background: var(--th-color-accent-bg); color: var(--th-color-accent); border-color: var(--th-color-accent-border); }
.pdp2-badge--cargo { background: var(--th-color-success-bg); color: var(--th-color-success-dark); border-color: var(--th-color-success-border); }
.pdp2-badge--discount { background: var(--th-color-danger-bg); color: var(--th-color-danger); border-color: var(--th-color-danger-border); }
.pdp2-badge--label { background: var(--th-color-bg-muted); color: var(--th-color-text-muted); }

/* ═══════════════════════════════════════════════
   STATS ROW (Rating + Actions)
   ═══════════════════════════════════════════════ */
.pdp2-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--th-space-2);
  padding: var(--th-space-3) 0;
  margin-bottom: var(--th-space-4);
  border-top: 1px solid var(--th-color-border-light);
  border-bottom: 1px solid var(--th-color-border-light);
  font-size: var(--th-text-sm);
}
.pdp2-stats-sep { color: var(--th-color-text-light); user-select: none; }
.pdp2-stats-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--th-space-2);
}
.pdp2-stats-btn {
  background: none;
  border: none;
  padding: 4px 8px;
  margin: 0;
  font: inherit;
  font-size: var(--th-text-sm);
  color: var(--th-color-text-muted);
  cursor: pointer;
  transition: color var(--th-transition-default);
  border-radius: var(--th-radius-sm);
  white-space: nowrap;
}
.pdp2-stats-btn:hover { color: var(--th-color-primary); }
.pdp2-stats-btn:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 1px; }
.pdp2-stats-btn i { margin-right: 4px; font-size: 13px; }

/* Viewer Count */
.pdp2-viewer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--th-text-sm);
  color: var(--th-color-success);
  font-weight: 500;
  white-space: nowrap;
}
.pdp2-viewer i { font-size: 11px; }
.pdp2-viewer[hidden] { display: none; }
.pdp2-viewer-sep[hidden] { display: none; }

/* CSS-only Star Rating */
.pdp2-rating {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--th-space-1);
}
.pdp2-rating-score {
  font-weight: 700;
  font-size: var(--th-text-base);
  color: var(--th-color-text);
}
.pdp2-stars {
  --percent: calc(var(--rating, 0) / 5 * 100%);
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  background: linear-gradient(90deg, #f59e0b var(--percent), #d1d5db var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pdp2-rating-link {
  color: var(--th-color-text-muted);
  text-decoration: none;
  font-size: var(--th-text-sm);
  transition: color var(--th-transition-default);
  font-weight: 500;
}
.pdp2-rating-link:hover { color: var(--th-color-primary); text-decoration: underline; }

/* Rating Popup */
.pdp2-rating-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: var(--th-z-modal);
  background: #fff;
  border: 1px solid var(--th-color-border);
  border-radius: var(--th-radius-md);
  box-shadow: var(--th-shadow-md);
  padding: var(--th-space-4);
  min-width: 240px;
  white-space: nowrap;
}
.pdp2-rating:hover .pdp2-rating-popup,
.pdp2-rating:focus-within .pdp2-rating-popup,
.pdp2-rating-popup.is-visible { display: block; }
.pdp2-rpop-title { font-size: var(--th-text-md); font-weight: 700; color: var(--th-color-text); margin-bottom: var(--th-space-3); }
.pdp2-rpop-title span { font-weight: 400; font-size: var(--th-text-sm); color: var(--th-color-text-muted); }
.pdp2-rpop-row { display: flex; align-items: center; gap: var(--th-space-2); margin-bottom: 4px; }
.pdp2-rpop-label { font-size: var(--th-text-xs); color: var(--th-color-text-muted); min-width: 32px; text-align: right; }
.pdp2-rpop-bar { flex: 1; height: 6px; background: var(--th-color-bg-muted); border-radius: 3px; overflow: hidden; min-width: 100px; }
.pdp2-rpop-bar span { display: block; height: 100%; background: #f59e0b; border-radius: 3px; transition: width 0.3s ease; }
.pdp2-rpop-count { font-size: var(--th-text-xs); color: var(--th-color-text-light); min-width: 20px; }
.pdp2-rpop-footer { margin-top: var(--th-space-2); padding-top: var(--th-space-2); border-top: 1px solid var(--th-color-border-light); font-size: var(--th-text-xs); color: var(--th-color-text-muted); }

/* ═══════════════════════════════════════════════
   PRICE AREA — Premium Card Layout
   ═══════════════════════════════════════════════ */
.pdp2-price-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: var(--th-space-4) 0;
  margin-bottom: var(--th-space-2);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--th-color-border-light);
}

/* Price main: discount badge + price number */
.pdp2-price-main {
  display: flex;
  align-items: center;
  gap: var(--th-space-3);
  padding-right: var(--th-space-8);
  flex: 1;
  min-width: 0;
}

/* Discount badge box */
.pdp2-discount-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: var(--th-space-2);
  background: var(--th-color-primary);
  border-radius: var(--th-radius-md);
  text-align: center;
  flex-shrink: 0;
}

.pdp2-discount-pct {
  font-size: var(--th-text-md);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pdp2-discount-lbl {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Price numbers */
.pdp2-price-nums {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "now now"
    "old save";
  column-gap: var(--th-space-3);
  row-gap: var(--th-space-1);
  align-items: center;
  min-width: 0;
}

.pdp2-price-now {
  grid-area: now;
  font-size: 36px;
  font-weight: 800;
  color: var(--th-color-text);
  line-height: 1;
  min-width: 0;
}

.pdp2-price-old {
  grid-area: old;
  font-size: var(--th-text-sm);
  color: var(--th-color-text-light);
  text-decoration: line-through;
  white-space: nowrap;
}

.pdp2-price-save {
  grid-area: save;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--th-text-xs);
  font-weight: 600;
  color: var(--th-color-success);
  white-space: nowrap;
}

/* Sadece eski fiyat varsa */
.pdp2-price-nums.only-old {
  grid-template-areas:
    "now now"
    "old old";
}

/* Sadece kazanç varsa */
.pdp2-price-nums.only-save {
  grid-template-areas:
    "now now"
    "save save";
}

/* İkisi de yoksa */
.pdp2-price-nums.only-now {
  grid-template-areas:
    "now now";
}

/* Mobile */
@media (max-width: 767px) {
  .pdp2-price-main {
    padding-right: 0;
    gap: var(--th-space-2);
  }

  .pdp2-discount-badge {
    min-width: 48px;
    height: 48px;
  }

  .pdp2-price-now {
    font-size: 30px;
  }

  .pdp2-price-nums {
    column-gap: var(--th-space-2);
  }
}

/* Price extra: havale / taksit info */
.pdp2-price-extra {
  display: flex;
  flex-direction: column;
  gap: var(--th-space-2);
  padding-left: var(--th-space-8);
  border-left: 1px solid var(--th-color-border-light);
  flex-shrink: 0;
}

/* Havale box */
.pdp2-havale-box {
  display: flex;
  align-items: center;
  gap: var(--th-space-2);
  padding: 1px 5px 1px 0;
  border-radius: var(--th-radius-sm);
  font-size: var(--th-text-sm);
  background: var(--th-color-warning-bg);
  color: var(--th-color-warning);
}
.pdp2-havale-box i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--th-color-warning);
  color: #fff;
  border-radius: var(--th-radius-sm);
  font-size: 12px;
}
.pdp2-havale-box strong { color: var(--th-color-warning); font-weight: 700; }
.pdp2-havale-box span { color: var(--th-color-text-muted); }
.pdp2-havale-badge {
  display: inline-block;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--th-color-success);
  background: var(--th-color-success-bg);
  border: 1px solid var(--th-color-success-border);
  border-radius: var(--th-radius-full);
  margin-left: var(--th-space-1);
}
/* Havale highlight (fiyat saginda belirgin) */
.pdp2-havale-box--highlight {
  padding: var(--th-space-3);
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid var(--th-emerald-200);
  border-radius: var(--th-radius-md);
  gap: var(--th-space-3);
}
.pdp2-havale-box--highlight i {
  width: 36px;
  height: 36px;
  background: var(--th-color-success);
  border-radius: var(--th-radius-md);
  font-size: 14px;
}
.pdp2-havale-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pdp2-havale-info strong {
  font-size: var(--th-text-lg);
  font-weight: 800;
  color: var(--th-color-success);
}
.pdp2-havale-info span {
  font-size: var(--th-text-xs);
  color: var(--th-emerald-700);
}

/* Taksit line */
.pdp2-taksit-line {
  display: flex;
  align-items: center;
  gap: var(--th-space-2);
  padding: 1px 5px 1px 0;
  border-radius: var(--th-radius-sm);
  font-size: var(--th-text-sm);
  background: var(--th-color-bg-soft);
  color: var(--th-color-text-muted);
}
.pdp2-taksit-line i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--th-color-border-light);
  color: var(--th-color-text-secondary);
  border-radius: var(--th-radius-sm);
  font-size: 12px;
}
.pdp2-taksit-line strong { color: var(--th-color-text); font-weight: 600; }
.pdp2-taksit-link {
  background: none;
  border: none;
  padding: 2px 6px;
  margin: 0;
  margin-left: auto;
  font: inherit;
  font-size: var(--th-text-xs);
  color: var(--th-color-primary);
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition-default);
}
.pdp2-taksit-link:hover { text-decoration: underline; }

/* Price update animation */
.pdp2-price-block.pdp2-price-flash .pdp2-price-now {
  animation: pdp2PriceFlash .4s ease;
}
@keyframes pdp2PriceFlash {
  0%   { opacity: .4; transform: translateY(-4px); }
  100% { opacity: 1;  transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .pdp2-price-block.pdp2-price-flash .pdp2-price-now { animation: none; }
}

/* Price legal microcopy */
.pdp2-price-legal {
  font-size: var(--th-text-xs);
  color: var(--th-color-text-muted);
  margin-top: var(--th-space-1);
}

/* Low stock indicator */
.pdp2-low-stock {
  display: inline-flex;
  align-items: center;
  gap: var(--th-space-2);
  padding: var(--th-space-2) var(--th-space-3);
  margin-bottom: var(--th-space-3);
  background: #fef3c7;
  color: #92400e;
  font-size: var(--th-text-sm);
  font-weight: 500;
  border-radius: var(--th-radius-sm);
  border: 1px solid #fde68a;
}
.pdp2-low-stock i { color: #d97706; font-size: 14px; }

/* ═══════════════════════════════════════════════
   PAYMENT METHODS — 4-Column Feature Grid
   ═══════════════════════════════════════════════ */
.pdp2-payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--th-space-3);
  margin-bottom: var(--th-space-4);
  padding: var(--th-space-3) 0;
  border-bottom: 1px solid var(--th-color-border-light);
}
.pdp2-pm-item {
  display: flex;
  align-items: center;
  gap: var(--th-space-2);
  padding: 0;
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  cursor: default;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: visible;
}
.pdp2-pm-item > i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--th-radius-md);
  font-size: var(--th-text-sm);
  flex-shrink: 0;
  background: var(--th-color-bg-soft);
  color: var(--th-color-primary);
  transition: transform var(--th-transition-default);
}
.pdp2-pm-item:hover > i { transform: scale(1.05); }
.pdp2-pm-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.pdp2-pm-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--th-color-primary);
}
.pdp2-pm-text small {
  font-size: 10px;
  color: var(--th-color-text-muted);
}
.pdp2-pm-price {
  display: block;
  font-size: var(--th-text-sm);
  font-weight: 700;
  color: var(--th-color-text);
  line-height: 1.2;
  margin-top: 1px;
}
.pdp2-pm-note {
  display: block;
  font-size: 10px;
  color: var(--th-color-text-muted);
  margin-top: 1px;
}
.pdp2-pm-note--green { color: var(--th-color-success); font-weight: 600; }
.pdp2-pm-note--warn { color: var(--th-color-warning); }
.pdp2-pm-badge {
  position: absolute;
  top: -8px;
  left: 0;
  padding: 2px 8px;
  background: var(--th-color-success-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--th-radius-full);
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  z-index: 1;
}
.pdp2-pm-item--best > i {
  background: var(--th-color-success-bg);
  color: var(--th-color-success-dark);
}
.pdp2-pm-item--best .pdp2-pm-text strong { color: var(--th-color-success-dark); }
.pdp2-pm-item--best .pdp2-pm-price { color: var(--th-color-success-dark); }
.pdp2-pm-item--disabled { opacity: .45; pointer-events: none; }

/* ═══════════════════════════════════════════════
   VARIANTS — Trendyol Elegant Style
   ═══════════════════════════════════════════════ */
.pdp2-variants {
  display: flex;
  flex-direction: column;
  gap: var(--th-space-5);
  margin-bottom: var(--th-space-5);
  padding-bottom: var(--th-space-5);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.pdp2-variant-group {}
.pdp2-variant-group--color {}
.pdp2-variant-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--th-color-text);
  margin-bottom: var(--th-space-2);
  letter-spacing: .3px;
}
.pdp2-variant-selected {
  color: var(--th-color-text);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
.pdp2-variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--th-space-2);
}

/* Variant chip */
.pdp2-chip {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: var(--th-space-1);
  padding: 10px 20px;
  border: 1px solid var(--th-pdp-variant-chip-border);
  border-radius: var(--th-pdp-variant-chip-radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--th-color-text);
  background: var(--th-color-surface);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 80px;
  text-align: center;
  justify-content: center;
  min-height: 40px;
}
.pdp2-chip:hover:not([aria-disabled="true"]) {
  border-color: var(--th-pdp-variant-chip-hover);
  background: var(--th-pdp-variant-chip-selected-bg);
}
.pdp2-chip:focus-visible {
  outline: 2px solid var(--th-color-primary);
  outline-offset: 2px;
}
.pdp2-chip[aria-checked="true"] {
  border-color: var(--th-pdp-variant-chip-selected);
  background: var(--th-pdp-variant-chip-selected);
  color: var(--th-color-text-inverse);
  font-weight: 600;
}
.pdp2-chip[aria-disabled="true"] {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}
.pdp2-chip--color {
  padding: var(--th-space-2);
  min-width: 44px;
  border-radius: 50%;
  border: 2px solid transparent;
}
.pdp2-chip--color[aria-checked="true"] {
  border-color: var(--th-pdp-variant-color-selected);
  background: transparent;
  color: inherit;
  box-shadow: 0 0 0 2px var(--th-color-primary-subtle);
}
.pdp2-chip--color:hover:not([aria-disabled="true"]) {
  transform: scale(1.1);
  background: transparent;
}
.pdp2-chip-dot {
  width: 28px;
  height: 28px;
  border-radius: var(--th-radius-full);
  border: 1px solid var(--th-pdp-variant-color-border);
  flex-shrink: 0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1), 0 2px 4px rgba(0, 0, 0, .08);
}
.pdp2-chip--color[aria-checked="true"] .pdp2-chip-dot {
  border-color: var(--th-pdp-variant-color-selected);
}
.pdp2-chip-text { line-height: 1; }

/* Variant Gating highlight */
.pdp2-variants.pdp2-variant-highlight {
  animation: pdp2VarHighlight .4s ease;
  outline: 2px solid var(--th-color-primary);
  outline-offset: 2px;
  border-radius: var(--th-radius-md);
}
@keyframes pdp2VarHighlight {
  0%   { outline-color: transparent; }
  50%  { outline-color: var(--th-color-primary); }
  100% { outline-color: var(--th-color-primary); }
}
@media (prefers-reduced-motion: reduce) {
  .pdp2-variants.pdp2-variant-highlight { animation: none; }
}

/* ═══════════════════════════════════════════════
   SMART PURCHASE / BUNDLE
   ═══════════════════════════════════════════════ */
.pdp2-qty-pack {
  margin-bottom: var(--th-space-5);
  margin-top: var(--th-space-2);
  border: 1.5px solid var(--th-color-border-light);
  border-radius: var(--th-radius-md);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  background: var(--th-color-bg-soft);
}
.pdp2-qty-pack .bundle-title {
  padding: var(--th-space-3) var(--th-space-4);
  font-size: var(--th-text-sm);
  font-weight: 600;
  color: var(--th-color-text);
  background: transparent;
}
.pdp2-qty-pack .bundle-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--th-space-2);
  padding: 0 var(--th-space-3) var(--th-space-3);
}
.pdp2-qty-pack .bundle-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0 3px;
  background: #fff;
  border: 1.5px solid var(--th-color-border-light);
  border-radius: var(--th-radius-md);
  cursor: pointer;
  transition: border-color var(--th-transition-default), transform var(--th-transition-default), box-shadow var(--th-transition-default), background var(--th-transition-default);
  text-align: center;
  min-height: 60px;
}
.pdp2-qty-pack .bundle-option:hover {
  border-color: var(--th-color-primary);
  transform: translateY(-2px);
}
.pdp2-qty-pack .bundle-option:active { transform: translateY(0); }
.pdp2-qty-pack .bundle-option.active {
  border-color: var(--th-color-primary);
  background: var(--th-color-bg-soft);
  box-shadow: inset 0 0 0 1px var(--th-color-primary);
}
.pdp2-qty-pack .bundle-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1px 8px;
  background: var(--th-color-warning);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  border-radius: var(--th-radius-full);
  white-space: nowrap;
}
.pdp2-qty-pack .bundle-option .qty {
  font-size: var(--th-text-sm);
  font-weight: 600;
  color: var(--th-color-text-secondary);
}
.pdp2-qty-pack .bundle-option .save {
  font-size: var(--th-text-xs);
  color: var(--th-color-success);
  font-weight: 600;
  margin-top: 2px;
}

/* Bundle summary / total */
.pdp2-qty-pack .bundle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--th-space-2) var(--th-space-4);
  border-top: 1px solid var(--th-color-border-light);
  background: #fff;
  font-size: 12.5px;
}
.pdp2-qty-pack .price-line { display: flex; align-items: baseline; gap: var(--th-space-2); }
.pdp2-qty-pack .old-price { font-size: var(--th-text-sm); color: var(--th-color-text-muted); text-decoration: line-through; }
.pdp2-qty-pack .new-price { font-size: var(--th-text-2xl); font-weight: 800; color: var(--th-color-text); }
.pdp2-qty-pack .save-text { font-size: var(--th-text-xs); color: var(--th-color-success); font-weight: 600; }
.pdp2-qty-pack .bundle-suggestion { font-size: var(--th-text-xs); color: var(--th-color-primary); font-weight: 600; cursor: pointer; margin-top: 4px; }

/* Quantity stepper in bundle */
.pdp2-qty-pack .summary-right {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--th-color-border);
  border-radius: var(--th-radius-sm);
  overflow: hidden;
}
.pdp2-qty-pack .qty-btn {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--th-color-bg-soft); color: var(--th-color-text-secondary);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: var(--th-transition-default);
}
.pdp2-qty-pack .qty-btn:hover { background: var(--th-color-bg-muted); color: var(--th-color-primary); }
.pdp2-qty-pack .qty-number { min-width: 40px; text-align: center; }
.pdp2-qty-pack .qty-number input {
  width: 40px; height: 30px; text-align: center;
  border: none; font-weight: 600; font-size: var(--th-text-base);
  background: transparent; padding: 0; font-family: inherit;
}

/* ═══════════════════════════════════════════════
   CTA ENGINE — Cart Buttons
   ═══════════════════════════════════════════════ */
.pdp2-cta {
  margin-bottom: var(--th-space-5);
  margin-top: var(--th-space-2);
  min-height: 52px;
  padding-top: var(--th-space-3);
  border-top: 1px solid var(--th-color-border-light);
}

/* Quantity Stepper */
.pdp2-qty {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--th-space-3);
  border: 1px solid var(--th-color-border);
  border-radius: var(--th-radius-lg);
  overflow: hidden;
  width: fit-content;
}
.pdp2-qty-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 44px;
  background: transparent; border: none;
  font: inherit; font-size: 18px; font-weight: 600;
  color: var(--th-color-text); cursor: pointer;
  transition: var(--th-transition-default); user-select: none;
}
.pdp2-qty-btn:hover { background: var(--th-color-bg-hover); }
.pdp2-qty-btn:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: -2px; }
.pdp2-qty-input {
  width: 50px; height: 44px; text-align: center;
  border: none; border-left: 1px solid var(--th-color-border); border-right: 1px solid var(--th-color-border);
  border-radius: 0; font: inherit; font-size: var(--th-text-base);
  font-weight: var(--th-font-semibold); color: var(--th-color-text); background: #fff;
  -moz-appearance: textfield;
}
.pdp2-qty-input::-webkit-inner-spin-button,
.pdp2-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Primary + Secondary CTA row */
.pdp2-cart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--th-space-2);
}
.pdp2-btn-cart {
  flex: none;
  display: flex; align-items: center; justify-content: center;
  gap: var(--th-space-2);
  padding: var(--th-space-3) var(--th-space-6);
  background: var(--th-btn-accent-bg, var(--th-color-accent, #F27A1A));
  color: #fff;
  font-size: var(--th-text-base);
  font-weight: 600;
  border: none; border-radius: var(--th-radius-md);
  cursor: pointer;
  transition: background var(--th-transition-default), transform var(--th-transition-default), box-shadow var(--th-transition-default);
  min-height: 52px;
  position: relative;
}
.pdp2-btn-cart:hover {
  background: var(--th-btn-accent-hover, #e06a0a);
  transform: translateY(-2px);
  box-shadow: var(--th-shadow-md);
}
.pdp2-btn-cart:active { transform: translateY(0); }
.pdp2-btn-cart:focus-visible { outline: 2px solid var(--th-color-text); outline-offset: 2px; }

/* Loading state */
.pdp2-btn-cart.pdp2-btn--loading .pdp2-btn-label { visibility: hidden; }
.pdp2-btn-cart.pdp2-btn--loading .pdp2-btn-spinner { display: block; }
.pdp2-btn-spinner {
  display: none;
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pdp2Spin .6s linear infinite;
}
@keyframes pdp2Spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .pdp2-btn-spinner { animation-duration: 1.5s; } }

/* Disabled state */
.pdp2-btn-cart:disabled,
.pdp2-btn-buy:disabled {
  opacity: .5; cursor: not-allowed; pointer-events: none;
}

/* Buy Now button */
.pdp2-btn-buy {
  display: flex; align-items: center; justify-content: center;
  gap: var(--th-space-2);
  padding: var(--th-space-3) var(--th-space-6);
  background: var(--th-btn-primary-bg, var(--th-color-primary, #14613A));
  color: #fff;
  font-size: var(--th-text-base);
  font-weight: 600;
  border: none; border-radius: var(--th-radius-md);
  cursor: pointer;
  transition: background var(--th-transition-default), transform var(--th-transition-default), box-shadow var(--th-transition-default);
  min-height: 52px;
  white-space: nowrap;
}
.pdp2-btn-buy:hover {
  background: var(--th-btn-primary-hover, #0f4d2e);
  transform: translateY(-2px);
  box-shadow: var(--th-shadow-md);
}
.pdp2-btn-buy:active { transform: translateY(0); }
.pdp2-btn-buy:focus-visible { outline: 2px solid var(--th-color-text); outline-offset: 2px; }

/* WhatsApp button */
.pdp2-btn-wp {
  display: flex; align-items: center; justify-content: center;
  gap: var(--th-space-2); width: 100%;
  padding: var(--th-space-3);
  margin-top: var(--th-space-2);
  background: var(--th-whatsapp-bg, #25d366); color: #fff;
  font-size: var(--th-text-sm); font-weight: 600;
  border: none; border-radius: var(--th-radius-md);
  text-decoration: none;
  transition: var(--th-transition-default);
}
.pdp2-btn-wp:hover { background: #1ebe5d; color: #fff; }
.pdp2-btn-wp:focus-visible { outline: 2px solid #25d366; outline-offset: 2px; }

/* Support row (WhatsApp + Soru Sor) */
.pdp2-support-row {
  display: flex;
  gap: var(--th-space-2);
  margin-top: var(--th-space-2);
}
.pdp2-btn-support {
  display: inline-flex; align-items: center;
  gap: var(--th-space-2);
  padding: var(--th-space-2) var(--th-space-4);
  border-radius: var(--th-radius-md);
  font-size: var(--th-text-sm); font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--th-color-border);
  background: #fff; color: var(--th-color-text);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
  flex: 1; justify-content: center;
}
.pdp2-btn-support:hover { background: var(--th-color-bg-soft); border-color: var(--th-color-text-muted); }
.pdp2-btn-support:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }
.pdp2-btn-support--wp { border-color: #25d366; color: #25d366; }
.pdp2-btn-support--wp:hover { background: var(--th-whatsapp-bg, #25d366); color: #fff; }
.pdp2-btn-support--wp i { font-size: 18px; }
.pdp2-btn-support--ask i { color: var(--th-color-primary); }

/* Delivery Microcopy */
.pdp2-delivery-micro {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: var(--th-space-2) var(--th-space-4);
  margin-top: var(--th-space-3);
  font-size: var(--th-text-sm); color: var(--th-color-text-muted);
}
.pdp2-micro-item { display: flex; align-items: center; gap: 4px; }
.pdp2-micro-item i { font-size: 12px; }
.pdp2-micro-item--stock { color: var(--th-color-success); font-weight: 600; }

/* Out of Stock */
.pdp2-oos { display: flex; flex-direction: column; gap: var(--th-space-3); }
.pdp2-oos-msg {
  display: flex; align-items: center; gap: var(--th-space-2);
  padding: var(--th-space-3) var(--th-space-4);
  background: #fef2f2; color: var(--th-color-danger);
  border: 1px solid #fecaca; border-radius: var(--th-radius-md);
  font-size: var(--th-text-sm); font-weight: 600;
}
.pdp2-btn-stock-alarm {
  display: flex; align-items: center; justify-content: center;
  gap: var(--th-space-2);
  padding: var(--th-space-3) var(--th-space-4);
  background: var(--th-color-bg-soft); color: var(--th-color-text);
  font: inherit; font-size: var(--th-text-sm); font-weight: 600;
  border: 1px solid var(--th-color-border); border-radius: var(--th-radius-md);
  cursor: pointer; transition: var(--th-transition-default);
}
.pdp2-btn-stock-alarm:hover { border-color: var(--th-color-primary); color: var(--th-color-primary); }
.pdp2-btn-stock-alarm:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }

/* Toast */
.pdp2-toast {
  position: fixed; bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: var(--th-z-sticky);
  display: flex; align-items: center; gap: var(--th-space-2);
  padding: var(--th-space-3) var(--th-space-4);
  background: var(--th-toast-bg, #1f2937); color: #fff;
  font-size: var(--th-text-sm); font-weight: 500;
  border-radius: var(--th-radius-lg); box-shadow: var(--th-shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  white-space: nowrap; pointer-events: none;
}
.pdp2-toast[hidden] { display: flex; }
.pdp2-toast.pdp2-toast--visible {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.pdp2-toast i { color: var(--th-color-success); font-size: 16px; flex-shrink: 0; }
.pdp2-toast-link { color: var(--th-color-primary); font-weight: 700; text-decoration: none; margin-left: var(--th-space-1); }
.pdp2-toast-link:hover { text-decoration: underline; }
.pdp2-toast-close {
  background: none; border: none; color: rgba(255, 255, 255, .5);
  font-size: 18px; cursor: pointer; padding: 0 0 0 var(--th-space-2); line-height: 1;
}
.pdp2-toast-close:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) { .pdp2-toast { transition: none; } }

/* ═══════════════════════════════════════════════
   DELIVERY SECTION
   ═══════════════════════════════════════════════ */
.pdp2-delivery {
  margin-bottom: var(--th-space-5);
}

/* Delivery bar */
.delivery-bar {
  width: 100%;
  background: #fff;
  border: 1px solid var(--th-color-border);
  border-radius: var(--th-radius-md);
  overflow: hidden;
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
}
.delivery-bar .delivery-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: var(--th-space-3) var(--th-space-4);
  background: rgba(0, 113, 133, .04);
}
.delivery-bar .delivery-text {
  color: var(--th-color-text); font-size: var(--th-text-sm); line-height: 1.25; font-weight: 600;
}
.delivery-bar .delivery-text strong { font-weight: 800; color: var(--th-pdp-delivery-icon); }
.delivery-bar .delivery-countdown {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 12px; border-radius: var(--th-radius-md);
  border: 1px solid var(--th-color-border); background: var(--th-color-bg-soft);
  font-variant-numeric: tabular-nums; user-select: none;
}
.delivery-bar .delivery-countdown span { font-size: 18px; font-weight: 700; color: #7b7b7b; min-width: 22px; text-align: center; }
.delivery-bar .delivery-countdown em { font-style: normal; color: var(--th-color-text-light); font-weight: 800; }
.delivery-bar .delivery-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--th-space-3) var(--th-space-4);
  border-top: 1px solid var(--th-color-border-light);
}
.delivery-bar .delivery-meta span {
  display: inline-flex; align-items: center; gap: var(--th-space-2);
  color: var(--th-color-text-muted); font-size: var(--th-text-sm);
}
.delivery-bar .delivery-meta i { color: var(--th-pdp-delivery-icon); }
.delivery-bar .delivery-meta strong { color: var(--th-color-text); font-weight: 700; }
.delivery-bar.alert { border-color: rgba(249, 115, 22, .45); box-shadow: 0 10px 28px rgba(249, 115, 22, .15); }
.delivery-bar.alert .delivery-countdown { border-color: rgba(249, 115, 22, .45); background: rgba(249, 115, 22, .08); }
.delivery-bar.pulse { animation: thPulse 1.2s ease-in-out infinite; }
@keyframes thPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-1px); } }
@media (prefers-reduced-motion: reduce) { .delivery-bar.pulse { animation: none; } }

/* Static delivery info */
.pdp2-delivery-info {
  display: flex; flex-direction: column; gap: var(--th-space-2); margin-top: var(--th-space-3);
}
.pdp2-delivery-info:empty { display: none; }
.pdp2-del-row {
  display: flex; align-items: flex-start; gap: var(--th-space-2);
  font-size: var(--th-text-sm); color: var(--th-color-text-muted); line-height: 1.3;
}
.pdp2-del-row > i { font-size: 14px; color: var(--th-pdp-delivery-icon); flex-shrink: 0; margin-top: 2px; }
.pdp2-del-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pdp2-del-body strong { font-size: var(--th-text-sm); font-weight: 700; color: var(--th-color-text); }
.pdp2-del-body span { font-size: var(--th-text-xs); color: var(--th-color-text-muted); }

/* ═══════════════════════════════════════════════
   CAMPAIGNS — Gift + Coupon Cards
   ═══════════════════════════════════════════════ */
.pdp2-campaigns {
  display: flex; flex-direction: column; gap: var(--th-space-3); margin-bottom: var(--th-space-5);
}
.pdp2-campaign-item {
  display: flex; align-items: center; gap: var(--th-space-3);
  padding: var(--th-space-4);
  background: #f7fbfc;
  border: 1px solid #f0f8f9;
  border-radius: var(--th-radius-md);
  font-size: var(--th-text-sm);
  color: var(--th-color-text-secondary);
  transition: all var(--th-transition-default);
}
.pdp2-campaign-item--coupon {
  background: var(--th-color-accent-bg);
  border-color: var(--th-color-accent-border);
}
.pdp2-campaign-ico {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--th-radius-md);
  flex-shrink: 0; font-size: 18px;
  background: var(--th-campaign-info-bg, #007185); color: #fff;
}
.pdp2-campaign-ico--gift { background: var(--th-campaign-gift-bg, #16a34a); }
.pdp2-campaign-ico--coupon { background: var(--th-color-primary); }
.pdp2-campaign-ico--doc { background: var(--th-campaign-doc-bg, #2563eb); }
.pdp2-campaign-body { flex: 1; line-height: 1.4; }
.pdp2-campaign-body strong { display: block; font-size: var(--th-text-sm); color: var(--th-color-text); font-weight: 600; }
.pdp2-campaign-body a { color: var(--th-color-primary); text-decoration: none; font-weight: 600; }
.pdp2-campaign-body a:hover { text-decoration: underline; }
.pdp2-coupon-btn {
  padding: var(--th-space-2) var(--th-space-4);
  background: var(--th-color-primary); color: #fff;
  font-size: var(--th-text-sm); font-weight: 600;
  border: none; border-radius: var(--th-radius-sm);
  cursor: pointer; white-space: nowrap;
  transition: var(--th-transition-default);
}
.pdp2-coupon-btn:hover { background: var(--th-color-primary-hover); transform: translateY(-1px); }
.pdp2-coupon-btn.pdp2-coupon-copied { background: var(--th-color-success) !important; color: #fff !important; pointer-events: none; }

/* ═══════════════════════════════════════════════
   TRUST STRIP — 4-Column Grid
   ═══════════════════════════════════════════════ */
.pdp2-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--th-space-3);
  padding: var(--th-space-4);
  background: var(--th-color-bg-soft);
  border-radius: var(--th-radius-md);
  margin-bottom: var(--th-space-5);
}
.pdp2-trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--th-space-2); text-align: center;
  transition: transform var(--th-transition-default);
}
.pdp2-trust-item:hover { transform: translateY(-2px); }
.pdp2-trust-ico {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--th-color-primary);
  font-size: var(--th-text-xl);
  flex-shrink: 0;
}
.pdp2-trust-ico--wp { color: #25d366; }
.pdp2-trust-body {
  display: flex; flex-direction: column; gap: 1px; min-width: 0;
}
.pdp2-trust-body strong { font-size: var(--th-text-xs); font-weight: 600; color: var(--th-color-text); }
.pdp2-trust-body span { font-size: var(--th-text-xs); color: var(--th-color-text-muted); line-height: 1.3; }

/* Proof Row (ETBİS / KVKK) */
.pdp2-proof {
  display: flex; align-items: center; gap: var(--th-space-3);
  margin-bottom: var(--th-space-4); flex-wrap: wrap;
}
.pdp2-proof-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; font-size: var(--th-text-xs); font-weight: 600;
  color: var(--th-color-text-muted); background: var(--th-color-bg-soft);
  border: 1px solid var(--th-color-border-light); border-radius: var(--th-radius-full);
  text-decoration: none; transition: var(--th-transition-default);
}
.pdp2-proof-badge:hover { color: var(--th-color-primary); border-color: var(--th-color-primary); }
.pdp2-proof-badge i { font-size: 11px; }

/* ═══════════════════════════════════════════════
   PRODUCT HIGHLIGHTS
   ═══════════════════════════════════════════════ */
.pdp2-highlights {
  margin-bottom: var(--th-space-5);
  contain: layout;
}
.pdp2-highlights-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--th-space-2) var(--th-space-3);
  padding: var(--th-space-3) var(--th-space-4);
  background: var(--th-color-bg-soft); border: 1px solid var(--th-color-border-light);
  border-radius: var(--th-radius-md);
}
.pdp2-highlights-item { display: flex; align-items: flex-start; gap: var(--th-space-2); line-height: 1.3; min-width: 0; }
.pdp2-highlights-ico { color: var(--th-color-success); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pdp2-highlights-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pdp2-highlights-title { font-size: var(--th-text-xs); font-weight: 600; color: var(--th-color-text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdp2-highlights-value { font-size: var(--th-text-sm); font-weight: 700; color: var(--th-color-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ═══════════════════════════════════════════════
   DESCRIPTION / SPEC ACCORDION
   ═══════════════════════════════════════════════ */
.pdp2-desc {
  margin-top: var(--th-space-8);
  border: 1px solid var(--th-color-border-light);
  border-radius: var(--th-radius-md);
  overflow: hidden;
  contain: layout;
}
.pdp2-desc-section { border-bottom: 1px solid var(--th-color-border-light); }
.pdp2-desc-section:last-child { border-bottom: none; }
.pdp2-desc-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--th-space-4) var(--th-space-5);
  background: #fff; border: none;
  font-size: var(--th-text-md); font-weight: 700; color: var(--th-color-text);
  cursor: pointer; text-align: left;
  transition: background .15s ease; min-height: 52px;
}
.pdp2-desc-header:hover { background: var(--th-color-bg-soft); }
.pdp2-desc-header:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: -2px; }
.pdp2-desc-header-text { display: flex; align-items: center; gap: var(--th-space-2); }
.pdp2-desc-header-text i { font-size: var(--th-text-base); color: var(--th-pdp-tab-text-active); }
.pdp2-desc-arrow {
  font-size: 12px; color: var(--th-color-text-muted);
  transition: transform .25s ease; flex-shrink: 0;
}
.pdp2-desc-section--open > .pdp2-desc-header .pdp2-desc-arrow { transform: rotate(180deg); }
.pdp2-desc-panel { padding: 0 var(--th-space-5) var(--th-space-5); overflow: hidden; }
.pdp2-desc-panel[hidden] { display: none; }
.pdp2-desc-content { font-size: var(--th-text-base); line-height: 1.7; color: var(--th-color-text); word-wrap: break-word; overflow-wrap: break-word; }
.pdp2-desc-content img { max-width: 100%; height: auto; border-radius: var(--th-radius-sm); }
.pdp2-desc-content table { width: 100%; border-collapse: collapse; }
.pdp2-desc-content table td,
.pdp2-desc-content table th { padding: var(--th-space-2) var(--th-space-3); border: 1px solid var(--th-color-border-light); }

/* Spec table */
.pdp2-spec-table { width: 100%; border-collapse: collapse; font-size: var(--th-text-sm); }
.pdp2-spec-table th,
.pdp2-spec-table td { padding: var(--th-space-3) var(--th-space-4); border-bottom: 1px solid var(--th-color-border-light); text-align: left; vertical-align: top; }
.pdp2-spec-table th { width: 40%; font-weight: 600; color: var(--th-color-text-muted); background: var(--th-color-bg-soft); }
.pdp2-spec-table td { color: var(--th-color-text); }
.pdp2-spec-table td a { color: var(--th-color-text); text-decoration: none; }
.pdp2-spec-table td a:hover { color: var(--th-color-primary); }
.pdp2-spec-table tr:last-child th,
.pdp2-spec-table tr:last-child td { border-bottom: none; }

/* Returns list */
.pdp2-returns-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--th-space-3); }
.pdp2-returns-list li { display: flex; align-items: flex-start; gap: var(--th-space-2); font-size: var(--th-text-sm); color: var(--th-color-text); line-height: 1.5; }
.pdp2-returns-list li i { color: var(--th-color-success); margin-top: 3px; flex-shrink: 0; font-size: 12px; }
.pdp2-returns-link { display: inline-flex; align-items: center; gap: 4px; margin-top: var(--th-space-3); font-size: var(--th-text-sm); font-weight: 600; color: var(--th-color-primary); text-decoration: none; }
.pdp2-returns-link:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) { .pdp2-desc-arrow { transition: none; } }

/* ═══════════════════════════════════════════════
   STICKY BUY BAR
   ═══════════════════════════════════════════════ */
.pp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: var(--th-pdp-sticky-z);
  background: var(--th-pdp-sticky-bg);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--th-color-border);
  box-shadow: var(--th-pdp-sticky-shadow);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.pp-sticky-cta.visible { transform: translateY(0); }
.pp-sticky-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; gap: var(--th-space-6);
}
.pp-sticky-img {
  width: 50px; height: 50px;
  object-fit: cover; border-radius: var(--th-radius-md);
  border: 1px solid var(--th-color-border-light);
  flex-shrink: 0;
}
.pp-sticky-info { flex: 1; min-width: 0; }
.pp-sticky-name {
  font-size: 14px; font-weight: 600; color: var(--th-color-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pp-sticky-brand { font-weight: 700; color: var(--th-color-primary); margin-right: 4px; }
.pp-sticky-prices { display: flex; align-items: center; gap: var(--th-space-2); }
.pp-sticky-price { font-size: 22px; font-weight: 700; color: var(--th-color-text); }
.pp-sticky-old { font-size: var(--th-text-sm); color: var(--th-color-text-muted); text-decoration: line-through; }
.pp-sticky-btn {
  padding: 12px 32px;
  background: var(--th-color-primary); color: #fff;
  font-weight: 600; font-size: 15px;
  border: none; border-radius: var(--th-radius-md);
  cursor: pointer;
  transition: background var(--th-transition-default), transform var(--th-transition-default), box-shadow var(--th-transition-default);
  white-space: nowrap;
  box-shadow: var(--th-shadow-sm);
}
.pp-sticky-btn:hover {
  background: var(--th-color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--th-shadow-md);
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.pdp2-faq { margin-top: 16px; }
.pdp2-faq-title { font-size: 14px; font-weight: 700; color: var(--th-color-text); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.pdp2-faq-title i { color: var(--th-color-primary); font-size: 16px; }
.pdp2-faq-item { border: 1px solid var(--th-color-border-light); border-radius: 10px; margin-bottom: 6px; overflow: hidden; transition: box-shadow 0.2s; }
.pdp2-faq-item[open] { box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-color: var(--th-color-border); }
.pdp2-faq-q { padding: 12px 16px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--th-color-text); list-style: none; display: flex; align-items: center; transition: background 0.15s; }
.pdp2-faq-q:hover { background: var(--th-color-bg-soft); }
.pdp2-faq-q::after { content: '\f078'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 10px; color: var(--th-color-text-muted); margin-left: auto; transition: transform 0.2s; }
.pdp2-faq-item[open] .pdp2-faq-q::after { transform: rotate(180deg); }
.pdp2-faq-q::-webkit-details-marker { display: none; }
.pdp2-faq-a { padding: 0 16px 14px; font-size: 13px; color: var(--th-color-text-secondary); line-height: 1.6; border-top: 1px solid var(--th-color-border-light); padding-top: 12px; }

/* ═══════════════════════════════════════════════
   QUICK VIEW MODAL PREMIUM
   ═══════════════════════════════════════════════ */
.native-modal.show .hizli-sepet .modal-content { border-radius: 16px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.3); border: none; }
.native-modal.show .hizli-sepet .carousel-item img { width: 100%; height: auto; object-fit: contain; aspect-ratio: 1/1; background: var(--th-color-bg-soft); }
.native-modal.show .hizli-sepet .carousel-control-prev i,
.native-modal.show .hizli-sepet .carousel-control-next i { background: rgba(255,255,255,0.92); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--th-color-text); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.native-modal.show .hizli-sepet .fast-product-cart-box h4 { font-size: 18px; font-weight: 700; color: var(--th-color-text); line-height: 1.4; margin-bottom: 8px; }
.native-modal.show .hizli-sepet .product-price-group .sale-price { font-size: 24px; font-weight: 700; color: var(--th-color-primary); }
.native-modal.show .hizli-sepet .product-price-group .list-price { font-size: 14px; color: var(--th-color-text-muted); text-decoration: line-through; }
.native-modal.show .hizli-sepet .variant-box .options a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; padding: 8px 16px; border: 1.5px solid var(--th-color-border); border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--th-color-text); text-decoration: none; margin: 3px; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.native-modal.show .hizli-sepet .variant-box .options a:hover { border-color: var(--th-color-primary); color: var(--th-color-primary); }
.native-modal.show .hizli-sepet .variant-box .options a.active { background: var(--th-color-primary); border-color: var(--th-color-primary); color: #fff; }
.native-modal.show .hizli-sepet .variant-box .options a.sold-out { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }
.native-modal.show .hizli-sepet .buttons .btn-cart { width: 100%; padding: 14px 24px; background: var(--th-color-primary); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.native-modal.show .hizli-sepet .buttons .btn-cart:hover { background: #e55500; transform: translateY(-1px); }
.native-modal.show .hizli-sepet .product-quantity { display: inline-flex; align-items: center; border: 1.5px solid var(--th-color-border); border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.native-modal.show .hizli-sepet .product-quantity .btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--th-color-bg-soft); border: none; font-size: 12px; color: var(--th-color-text); }
.native-modal.show .hizli-sepet .product-quantity input { width: 50px; text-align: center; border: none; font-size: 15px; font-weight: 600; }
.qv-trust { display: flex; gap: 16px; padding: 12px 0; margin-top: 16px; border-top: 1px solid var(--th-color-border-light); }
.qv-trust-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--th-color-text-muted); white-space: nowrap; }
.qv-trust-item i { color: var(--th-color-primary); font-size: 13px; }
.qv-product-link { display: block; text-align: center; padding: 10px; margin-top: 8px; color: var(--th-color-primary); font-size: 13px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.qv-product-link:hover { opacity: 0.8; }
.native-modal .modal-dialog { transform: translateY(20px) scale(0.98); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.native-modal.show .modal-dialog { transform: translateY(0) scale(1); opacity: 1; }

/* ═══════════════════════════════════════════════
   CROSS-SELL / BUNDLE ENGINE
   ═══════════════════════════════════════════════ */
.pdp2-bundle { margin-top: var(--th-space-6); border: 1px solid var(--th-color-border-light); border-radius: var(--th-radius-md); overflow: hidden; background: #fff; contain: layout; }
.pdp2-bundle-header { display: flex; align-items: center; gap: var(--th-space-2); padding: var(--th-space-3) var(--th-space-4); background: var(--th-color-bg-soft); border-bottom: 1px solid var(--th-color-border-light); font-size: var(--th-text-base); font-weight: 700; color: var(--th-color-text); }
.pdp2-bundle-header i { color: var(--th-color-primary); font-size: var(--th-text-md); }
.pdp2-bundle-list { display: flex; flex-direction: column; }
.pdp2-bundle-card { display: flex; align-items: center; gap: var(--th-space-3); padding: var(--th-space-3) var(--th-space-4); border-bottom: 1px solid var(--th-color-border-light); cursor: pointer; transition: var(--th-transition-default); }
.pdp2-bundle-card:last-child { border-bottom: none; }
.pdp2-bundle-card:hover { background: var(--th-color-bg-soft); }
.pdp2-bundle-card--main { background: var(--th-color-accent-subtle); cursor: default; }
.pdp2-bundle-check { flex-shrink: 0; }
.pdp2-bundle-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--th-color-primary); cursor: pointer; }
.pdp2-bundle-check input[disabled] { cursor: default; opacity: .6; }
.pdp2-bundle-img { position: relative; flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--th-radius-sm); overflow: hidden; background: var(--th-color-bg-soft); }
.pdp2-bundle-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp2-bundle-badge { position: absolute; top: 2px; left: 2px; padding: 1px 4px; background: var(--th-color-danger); color: #fff; font-size: 10px; font-weight: 700; border-radius: 3px; line-height: 1.3; }
.pdp2-bundle-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pdp2-bundle-tag { display: inline-block; padding: 1px 6px; background: var(--th-color-primary); color: #fff; font-size: 10px; font-weight: 700; border-radius: 3px; width: fit-content; line-height: 1.4; }
.pdp2-bundle-name { font-size: var(--th-text-sm); color: var(--th-color-text); font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.pdp2-bundle-link { text-decoration: none; }
.pdp2-bundle-link:hover { color: var(--th-color-primary); text-decoration: underline; }
.pdp2-bundle-prices { display: flex; align-items: center; gap: var(--th-space-2); }
.pdp2-bundle-price { font-size: var(--th-text-sm); font-weight: 700; color: var(--th-color-primary); }
.pdp2-bundle-old { font-size: var(--th-text-xs); color: var(--th-color-text-muted); text-decoration: line-through; }
.pdp2-bundle-card.pdp2-bundle--unchecked { opacity: .5; }
.pdp2-bundle-card.pdp2-bundle--unchecked .pdp2-bundle-img { filter: grayscale(.6); }
.pdp2-bundle-summary { display: flex; align-items: center; justify-content: space-between; gap: var(--th-space-3); padding: var(--th-space-3) var(--th-space-4); background: var(--th-color-bg-soft); border-top: 1px solid var(--th-color-border-light); }
.pdp2-bundle-total { display: flex; flex-direction: column; gap: 2px; }
.pdp2-bundle-total-label { font-size: var(--th-text-xs); color: var(--th-color-text-muted); }
.pdp2-bundle-total-price { font-size: var(--th-text-lg); color: var(--th-color-text); }
.pdp2-bundle-total-count { font-size: var(--th-text-xs); color: var(--th-color-text-muted); }
.pdp2-bundle-add { -webkit-appearance: none; appearance: none; font-family: inherit; display: inline-flex; align-items: center; gap: var(--th-space-2); padding: var(--th-space-3) var(--th-space-5); background: var(--th-color-primary); color: #fff; border: none; border-radius: var(--th-radius-sm); font-size: var(--th-text-sm); font-weight: 700; cursor: pointer; transition: var(--th-transition-default); min-height: 44px; white-space: nowrap; }
.pdp2-bundle-add:hover { background: var(--th-color-primary-hover); }
.pdp2-bundle-add:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }
.pdp2-bundle-add:disabled { opacity: .5; cursor: not-allowed; }

/* Fav button */
.pdp2-fav-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: none; background: rgba(255,255,255,.9); border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--th-color-text-muted); transition: transform .2s ease, color .2s ease; box-shadow: var(--th-shadow-sm); }
.pdp2-fav-btn:hover { transform: scale(1.1); color: #ef4444; }
.pdp2-fav-btn:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }
.pdp2-fav-btn--active { color: #ef4444; }
@keyframes pdp2-heart-pop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
.pdp2-fav-btn--pop { animation: pdp2-heart-pop .4s ease; }

/* Recently Viewed */
.pdp2-recently {  margin: var(--th-space-8) auto var(--th-space-4); padding: 0 var(--th-space-4); }
.pdp2-recently .th-rv-title { font-size: var(--th-text-lg); font-weight: 600; margin-bottom: var(--th-space-4); color: var(--th-color-text); }
.pdp2-recently .th-rv-list { display: flex; gap: var(--th-space-3); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: var(--th-space-2); }
.pdp2-recently .th-rv-item { flex: 0 0 140px; scroll-snap-align: start; text-decoration: none; color: var(--th-color-text); border: 1px solid var(--th-color-border-light); border-radius: var(--th-radius-md); overflow: hidden; transition: box-shadow .15s ease; }
.pdp2-recently .th-rv-item:hover { box-shadow: var(--th-shadow-md); }
.pdp2-recently .th-rv-item img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }
.pdp2-recently .th-rv-name { font-size: var(--th-text-xs); padding: var(--th-space-2); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pdp2-recently .th-rv-price { font-size: var(--th-text-sm); font-weight: 600; padding: 0 var(--th-space-2) var(--th-space-2); color: var(--th-color-primary); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pdp2-hero {
    grid-template-columns: 1fr;
    gap: var(--th-space-4);
    padding: var(--th-space-4);
    border-radius: var(--th-radius-md);
  }
  .pdp2-gallery {
    position: relative;
    top: 0;
  }
  .pdp2-gallery-counter { display: flex; }
  .pdp2-payment-methods { grid-template-columns: repeat(2, 1fr); }
  .pdp2-trust { grid-template-columns: repeat(2, 1fr); }
  .pdp2-qty-pack .bundle-options { grid-template-columns: repeat(2, 1fr); }

  /* Price stacked on tablet */
  .pdp2-price-block { flex-direction: column; gap: var(--th-space-4); }
  .pdp2-price-main { padding-right: 0; }
  .pdp2-price-extra { padding-left: 0; border-left: none; width: 100%; }

  /* Sticky bar mobile */
  .pp-sticky-cta { height: 64px; padding: 0; }
  .pp-sticky-inner { height: 100%; padding: 0 var(--th-space-3); gap: var(--th-space-3); }
  .pp-sticky-img { display: none; }
  .pp-sticky-name { display: none; }
  .pp-sticky-price { font-size: var(--th-text-lg); font-weight: 800; color: var(--th-color-primary); }
  .pp-sticky-old { font-size: var(--th-text-xs); }
  .pp-sticky-btn { padding: var(--th-space-3) var(--th-space-6); font-size: var(--th-text-base); min-height: 44px; }
  .pdp2 { padding-bottom: 80px; }
  .pdp2-toast { bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
  .pdp2-qty-btn { width: 44px; height: 44px; }
  .pdp2-qty-input { width: 48px; height: 44px; }

  /* Mobile flow reorder */
  .pdp2-info { display: flex; flex-direction: column; }
  .pdp2-topbar        { order: -1; display: none; }
  .pdp2-breadcrumb-row{ order: 0; }
  .pdp2-brand         { order: 1; }
  .pdp2-title         { order: 2; }
  .pdp2-brand-row     { order: 3; }
  .pdp2-badges        { order: 4; }
  .pdp2-stats         { order: 5; }
  .pdp2-tagline       { order: 6; display: none; }
  .pdp2-price-block   { order: 7; }
  .pdp2-payment-methods { order: 8; }
  .pdp2-qty-pack      { order: 9; }
  .pdp2-variants      { order: 10; }
  .variant-box        { order: 10; }
  .pdp2-cta           { order: 11; }
  .pdp2-delivery      { order: 12; }
  .pdp2-trust         { order: 13; }
  .pdp2-highlights    { order: 14; }
  .pdp2-campaigns     { order: 15; }
  .pdp2-info > [class*="special_fields"] { order: 16; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (<=991px) — grid collapse
   ═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .pdp2-hero {
    grid-template-columns: 1fr;
    gap: var(--th-space-4);
    padding: var(--th-space-4);
  }
  .pdp2-gallery { max-width: 100%; overflow: hidden; position: static; }
  .pdp2-info { max-width: 100%; overflow: hidden; }
  .pdp2-cart-row { grid-template-columns: 1fr 1fr; }
  .pdp2-trust { grid-template-columns: repeat(2, 1fr); }
  .pdp2-payment-methods { grid-template-columns: repeat(2, 1fr); }
  .pdp2-qty-pack .bundle-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .pdp2 { padding: var(--th-space-3); }
  .pdp2-hero {
    grid-template-columns: 1fr;
    padding: var(--th-space-3);
    gap: var(--th-space-3);
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  /* Gallery: full bleed */
  .pdp2-gallery { margin: 0 calc(-1 * var(--th-space-3)); border-radius: 0; }
  .pdp2-carousel { border-radius: 0; }
  .pdp2-carousel .carousel-inner { border-radius: 0; }
  .pdp2-carousel .pp-main-img { border-radius: 0; }
  .pdp2-carousel .pp-image-link:hover .pp-main-img { transform: none; }
  .pdp2-gallery-prev,
  .pdp2-gallery-next { opacity: .8; width: 36px; height: 36px; font-size: 12px; }
  .pdp2-thumbs { margin: var(--th-space-2) var(--th-space-3) 0; padding: 0; gap: var(--th-space-2); }
  .pdp2-thumb { width: 56px; height: 72px; }

  /* Info panel spacing */
  .pdp2-info { gap: 0; }

  /* Breadcrumb */
  .pdp2-breadcrumb-row { gap: var(--th-space-1); }
  .pdp2-breadcrumb ol { flex-wrap: nowrap; overflow: hidden; }
  .pdp2-breadcrumb a { max-width: 80px; }
  .pdp2-breadcrumb li:last-child a,
  .pdp2-breadcrumb li:last-child span { max-width: 180px; }
  .pdp2-copy-link span { display: none; }
  .pdp2-copy-link { padding: 4px 8px; }

  /* Title & Brand */
  .pdp2-title { font-size: 16px; max-width: none; }
  .pdp2-brand-row {
    gap: var(--th-space-2);
    flex-wrap: wrap;
    margin-bottom: var(--th-space-3);
    padding-bottom: var(--th-space-2);
    border-bottom: 1px solid var(--th-color-border-light);
    overflow: hidden;
  }
  .pdp2-sku {
    flex-wrap: wrap;
    gap: 3px;
    max-width: 100%;
    overflow: hidden;
  }
  .pdp2-brand { font-size: var(--th-text-xs); }
  .pdp2-badges {
    gap: 3px;
    margin-bottom: var(--th-space-3);
    margin-top: var(--th-space-1);
    row-gap: 4px;
  }
  .pdp2-badge { font-size: 9px; padding: 2px 6px; }

  /* Stats */
  .pdp2-stats {
    font-size: var(--th-text-xs);
    gap: var(--th-space-2);
    padding: var(--th-space-2) 0;
    margin-bottom: var(--th-space-3);
    flex-wrap: wrap;
    row-gap: var(--th-space-1);
  }
  .pdp2-stats-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    width: 100%;
  }
  .pdp2-stats-btn {
    padding: 6px 8px;
    font-size: 11px;
    min-height: 36px;
    min-width: unset;
    flex: 0 0 auto;
  }
  /* Viewer satırı tam genişlik */
  .pdp2-viewers {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--th-space-1);
  }
  .pdp2-rating-score { font-size: var(--th-text-sm); }
  .pdp2-stars { font-size: 12px; }
  .pdp2-rating-link { font-size: var(--th-text-xs); }
  .pdp2-rating-popup { left: -8px; min-width: 220px; padding: var(--th-space-3); }

  /* Price */
  .pdp2-price-now { font-size: 28px; }
  .pdp2-discount-badge { height: 50px; min-width: 48px; }

  /* Fiyat bloğu mobil tam düzen */
  .pdp2-price-block {
    flex-direction: column;
    gap: var(--th-space-3);
    padding: var(--th-space-3) 0;
    margin-bottom: var(--th-space-3);
  }
  .pdp2-price-main {
    padding-right: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .pdp2-price-extra {
    padding-left: 0;
    border-left: none;
    width: 100%;
    justify-content: flex-start;
  }
  .pdp2-price-nums {
    flex: 1;
    min-width: 0;
  }

  /* Payment 2x2 mobile */
  .pdp2-payment-methods { grid-template-columns: 1fr 1fr; gap: var(--th-space-3); padding: var(--th-space-4) 0; }
  .pdp2-pm-item > i { width: 32px; height: 32px; font-size: 12px; }

  /* Trust 2x2 */
  .pdp2-trust { grid-template-columns: 1fr 1fr; padding: var(--th-space-3); }
  .pdp2-trust-body strong { font-size: var(--th-text-xs); }
  .pdp2-trust-body span { font-size: 10px; }

  /* Highlights 2-col */
  .pdp2-highlights-list { grid-template-columns: repeat(2, 1fr); padding: var(--th-space-3); gap: var(--th-space-2); }

  /* CTA container tam genişlik */
  .pdp2-cta {
    width: 100%;
    margin-top: var(--th-space-2);
    padding-top: var(--th-space-3);
    border-top: 1px solid var(--th-color-border-light);
  }

  /* Stepper tam genişlik ve butonlarla hizalı */
  .pdp2-qty {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--th-space-3);
    border-radius: var(--th-radius-md);
  }
  .pdp2-qty-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    flex-shrink: 0;
  }
  .pdp2-qty-input {
    flex: 1;
    width: auto;
    height: 48px;
    font-size: var(--th-text-base);
  }

  /* Cart buttons */
  .pdp2-cart-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--th-space-2);
    width: 100%;
  }
  .pdp2-btn-cart,
  .pdp2-btn-buy {
    width: 100%;
    min-height: 52px;
    font-size: 14px;
    padding: var(--th-space-3) var(--th-space-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: var(--th-radius-md);
  }
  .pdp2-btn-cart i,
  .pdp2-btn-buy i {
    font-size: 14px;
    flex-shrink: 0;
  }
  /* Whatsapp butonu tam genişlik */
  .pdp2-btn-wp {
    width: 100%;
    margin-top: var(--th-space-2);
    grid-column: 1 / -1;
  }

  /* Variant chips scroll */
  .pdp2-variant-chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .pdp2-variant-chips::-webkit-scrollbar { display: none; }
  .pdp2-chip { flex-shrink: 0; min-height: 44px; padding: var(--th-space-2) var(--th-space-3); }

  /* Topbar scroll */
  .pdp2-topbar { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
  .pdp2-topbar::-webkit-scrollbar { display: none; }
  .pdp2-topbadge { flex-shrink: 0; }

  /* Bundle 2x2 */
  .pdp2-qty-pack .bundle-options {
    grid-template-columns: 1fr 1fr;
    gap: var(--th-space-2);
    padding: 0 var(--th-space-2) var(--th-space-2);
  }
  .pdp2-qty-pack .bundle-summary {
    flex-direction: column;
    gap: var(--th-space-2);
    text-align: left;
    padding: var(--th-space-2) var(--th-space-3);
  }
  .pdp2-qty-pack .bundle-summary .summary-right {
    align-self: flex-end;
  }
  .pdp2-qty-pack {
    margin-bottom: var(--th-space-4);
    overflow: hidden;
  }

  /* Campaigns compact */
  .pdp2-campaign-item { padding: var(--th-space-3); font-size: var(--th-text-xs); }
  .pdp2-campaign-ico { width: 36px; height: 36px; font-size: 16px; }

  /* Delivery compact */
  .delivery-bar .delivery-main { flex-direction: column; gap: 8px; padding: var(--th-space-3); }
  .delivery-bar .delivery-countdown { align-self: flex-start; padding: 8px 10px; border-radius: var(--th-radius-sm); }
  .delivery-bar .delivery-countdown span { font-size: 15px; min-width: 18px; }
  .delivery-bar .delivery-meta { flex-direction: column; gap: var(--th-space-2); }

  /* Accordion */
  .pdp2-desc-header { padding: var(--th-space-3) var(--th-space-4); font-size: var(--th-text-base); min-height: 48px; }
  .pdp2-desc-panel { padding: 0 var(--th-space-4) var(--th-space-4); }
  .pdp2-spec-table th { width: 45%; font-size: var(--th-text-xs); padding: var(--th-space-2) var(--th-space-3); }
  .pdp2-spec-table td { font-size: var(--th-text-xs); padding: var(--th-space-2) var(--th-space-3); }

  /* Support row */
  .pdp2-support-row { flex-direction: column; }
  .pdp2-recently .th-rv-item { flex: 0 0 120px; }
  .pdp2-fav-btn { width: 36px; height: 36px; font-size: 16px; }

  /* Cross-sell bundle mobile */
  .pdp2-bundle-card { gap: var(--th-space-2); padding: var(--th-space-2) var(--th-space-3); }
  .pdp2-bundle-img { width: 52px; height: 52px; }
  .pdp2-bundle-summary { flex-direction: column; align-items: stretch; gap: var(--th-space-2); }

  /* QV modal mobile */
  .native-modal.show .hizli-sepet { max-width: 100% !important; margin: 8px; }
  .native-modal.show .hizli-sepet .modal-content { border-radius: 12px; }
  .qv-trust { flex-wrap: wrap; gap: 10px; }

  /* WhatsApp satırı */
  .pdp2-wa-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--th-space-3);
    padding: var(--th-space-2) 0;
    border-top: 1px solid var(--th-color-border-light);
  }
  .pdp2-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #25d366;
    font-size: var(--th-text-sm);
    font-weight: 600;
    text-decoration: none;
  }
  .pdp2-wa-link i {
    font-size: 16px;
  }

  /* Mikro bilgi (Hızlı Teslimat / Ücretsiz Kargo) */
  .pdp2-delivery-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--th-space-2) var(--th-space-3);
    margin-top: var(--th-space-2);
    padding: var(--th-space-2) 0;
    font-size: 12px;
    color: var(--th-color-text-muted);
    border-top: 1px solid var(--th-color-border-light);
  }
  .pdp2-micro-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }
  .pdp2-micro-item i {
    font-size: 11px;
    color: var(--th-color-primary);
  }

  /* Sticky bar mobile */
  .pp-sticky-cta.visible { padding-bottom: calc(var(--th-space-2) + env(safe-area-inset-bottom, 0px)); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤500px)
   ═══════════════════════════════════════════════ */
@media (max-width: 500px) {
  .pdp2 { padding: var(--th-space-2) var(--th-space-3) 80px; }
  .pdp2-title { font-size: 15px; -webkit-line-clamp: 2; }
  .pdp2-price-now { font-size: 24px; }
  .pdp2-discount-badge { height: 46px; min-width: 44px; }
  .pdp2-discount-pct { font-size: 14px; }

  /* Breadcrumb tighter */
  .pdp2-breadcrumb ol { font-size: 10px; }
  .pdp2-breadcrumb a { max-width: 80px; }
  .pdp2-breadcrumb li + li::before { margin: 0 4px; }

  /* Badges smaller */
  .pdp2-badge { font-size: 8px; padding: 2px 5px; }
  .pdp2-badge i { font-size: 8px; }

  /* Stats compact */
  .pdp2-stats { gap: var(--th-space-1); }
  .pdp2-stats-actions { gap: 0; }

  /* Payment tighter */
  .pdp2-pm-item > i { width: 30px; height: 30px; }
  .pdp2-pm-text strong { font-size: 11px; }
  .pdp2-pm-badge { font-size: 8px; padding: 1px 6px; top: -6px; }

  /* Bundle compact */
  .pdp2-qty-pack .bundle-option { padding: var(--th-space-2); min-height: 56px; }
  .pdp2-qty-pack .bundle-badge { font-size: 8px; top: -6px; }

  /* CTA buttons smaller */
  .pdp2-btn-cart,
  .pdp2-btn-buy {
    font-size: 13px;
    min-height: 48px;
    padding: var(--th-space-2) var(--th-space-1);
  }
  .pdp2-delivery-micro {
    font-size: 11px;
    gap: var(--th-space-1) var(--th-space-2);
  }

  /* Sticky bar */
  .pp-sticky-cta { height: 56px; }
  .pp-sticky-btn { padding: var(--th-space-2) var(--th-space-4); font-size: var(--th-text-sm); min-height: 40px; }
}

/* ═══════════════════════════════════════════════
   CLS SAFETY
   ═══════════════════════════════════════════════ */
.pdp2-payment-methods { min-height: 60px; }
.pdp2-trust { min-height: 64px; }
.pdp2-cta { min-height: 52px; }
.pp-sticky-cta { contain: layout; }

@media (max-width: 1024px) {
  .pdp2-payment-methods { min-height: 80px; }
  .pdp2-trust { min-height: 120px; }
  .pdp2-highlights { min-height: 80px; }
  .pdp2-delivery { min-height: 48px; }
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .pdp2-fav-btn { transition: none; }
  .pdp2-fav-btn--pop { animation: none; }
  .pdp2-btn-support { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 22 — PDP LIGHTBOX
   Full-screen image gallery with zoom, swipe, keyboard nav
   ═══════════════════════════════════════════════════════════════════ */

.pdp2-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--th-z-modal, 1050);
  background: var(--th-color-bg-overlay-heavy, rgba(0, 0, 0, .92));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.pdp2-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.pdp2-lightbox__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  z-index: 2;
}
.pdp2-lightbox__counter {
  font-size: var(--th-text-sm, 14px);
  color: rgba(255, 255, 255, .8);
  font-weight: var(--th-font-medium, 500);
}
.pdp2-lightbox__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, .15);
  border-radius: var(--th-radius-full);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease;
}
.pdp2-lightbox__close:hover {
  background: rgba(255, 255, 255, .3);
}
.pdp2-lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  touch-action: pinch-zoom;
}
.pdp2-lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform .3s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.pdp2-lightbox__img.is-zoomed {
  cursor: zoom-out;
  transform: scale(2);
}
.pdp2-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, .15);
  border-radius: var(--th-radius-full);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background .2s ease;
  z-index: 2;
}
.pdp2-lightbox__nav:hover { background: rgba(255, 255, 255, .3); }
.pdp2-lightbox__nav--prev { left: 16px; }
.pdp2-lightbox__nav--next { right: 16px; }
.pdp2-lightbox__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100vw;
}
.pdp2-lightbox__thumbs::-webkit-scrollbar { display: none; }
.pdp2-lightbox__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--th-radius-sm, 4px);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  opacity: .5;
  transition: opacity .2s ease, border-color .2s ease;
}
.pdp2-lightbox__thumb.is-active {
  border-color: #fff;
  opacity: 1;
}
.pdp2-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .pdp2-lightbox__nav { width: 36px; height: 36px; font-size: 16px; }
  .pdp2-lightbox__nav--prev { left: 8px; }
  .pdp2-lightbox__nav--next { right: 8px; }
  .pdp2-lightbox__thumbs { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 23 — PDP BOTTOM SHEET (Mobile)
   Taksit, ölçü rehberi, soru-cevap için bottom sheet
   ═══════════════════════════════════════════════════════════════════ */

.pdp2-bottom-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: calc(var(--th-z-drawer, 1040) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.pdp2-bottom-sheet-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
.pdp2-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--th-z-drawer, 1040);
  background: var(--th-color-bg);
  border-radius: var(--th-radius-xl, 16px) var(--th-radius-xl, 16px) 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .12);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.pdp2-bottom-sheet.is-open {
  transform: translateY(0);
}
.pdp2-bottom-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--th-neutral-300);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}
.pdp2-bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--th-color-border-light);
  flex-shrink: 0;
}
.pdp2-bottom-sheet__title {
  font-size: var(--th-text-lg, 18px);
  font-weight: var(--th-font-bold, 700);
  color: var(--th-color-text);
  margin: 0;
}
.pdp2-bottom-sheet__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--th-color-bg-secondary);
  border-radius: var(--th-radius-full);
  color: var(--th-color-text);
  cursor: pointer;
  font-size: 16px;
}
.pdp2-bottom-sheet__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
  .pdp2-bottom-sheet,
  .pdp2-bottom-sheet-backdrop { display: none !important; }
}

/* ── Toast Enhancements ── */
.pdp2-toast--fav { background: var(--th-color-primary); }
.pdp2-toast--copy { background: var(--th-neutral-700); }
.pdp2-toast--warn { background: var(--th-color-warning, #f59e0b); }

/* Copy toast */
.pdp2-copy-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--th-color-text);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--th-radius-full);
  font-size: var(--th-text-sm);
  font-weight: 600;
  z-index: 99999;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.pdp2-copy-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Gallery left-thumb layout (desktop) */
@media (min-width: 768px) {
  .pdp2-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto;
    gap: var(--th-space-2);
  }
  .pdp2-gallery .pdp2-gallery-actions {
    grid-column: 2;
    grid-row: 1;
  }
  .pdp2-gallery .pdp2-gallery-badges {
    grid-column: 2;
    grid-row: 1;
  }
  .pdp2-gallery .carousel-outer,
  .pdp2-gallery .pdp2-carousel {
    grid-column: 2;
    grid-row: 1 / -1;
  }
  .pdp2-thumbs {
    grid-column: 1;
    grid-row: 1 / -1;
    flex-direction: column;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 0;
    scrollbar-width: thin;
  }
  .pdp2-thumb {
    width: 72px;
    height: 96px;
  }
}

/* Bookmark / Collection button */
.pdp2-action-bookmark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--th-radius-full);
  border: none;
  color: var(--th-color-text-muted);
  font-size: 14px;
  box-shadow: var(--th-shadow-sm);
  transition: color var(--th-transition-default), transform var(--th-transition-default), box-shadow var(--th-transition-default);
  cursor: pointer;
}
.pdp2-action-bookmark:hover {
  color: var(--th-color-primary);
  transform: scale(1.08);
  box-shadow: var(--th-shadow-md);
}

/* Single CTA (no Hemen Al): full width */
.pdp2-cart-row:has(.pdp2-btn-cart:only-child) {
  grid-template-columns: 1fr;
}

/* WhatsApp minimal link */
.pdp2-wa-row {
  text-align: center;
  margin-top: var(--th-space-2);
}
.pdp2-wa-link {
  display: inline-flex;
  align-items: center;
  gap: var(--th-space-1);
  font-size: var(--th-text-xs);
  color: var(--th-color-text-muted);
  text-decoration: none;
  transition: color var(--th-transition-default);
}
.pdp2-wa-link:hover {
  color: var(--th-color-success, #25d366);
}
.pdp2-wa-link i {
  font-size: 14px;
}

/* Social Proof */
.pdp2-viewers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--th-text-sm);
  color: var(--th-color-success);
  font-weight: 500;
  white-space: nowrap;
}
.pdp2-viewers-dot {
  width: 8px;
  height: 8px;
  background: var(--th-color-success);
  border-radius: 50%;
  animation: pdp2DotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pdp2DotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.pdp2-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--th-space-3);
  margin-bottom: var(--th-space-3);
}
.pdp2-sp-item {
  display: inline-flex;
  align-items: center;
  gap: var(--th-space-1);
  font-size: var(--th-text-xs);
  color: var(--th-color-text-muted);
}
.pdp2-sp-item i {
  font-size: 11px;
}
.pdp2-sp-item--sale i {
  color: var(--th-color-warning);
}
.pdp2-sp-item--weekly i {
  color: var(--th-color-primary);
}

/* Social toast (bottom-right) */
.pdp2-social-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: var(--th-space-2);
  padding: var(--th-space-3) var(--th-space-4);
  background: #fff;
  border: 1px solid var(--th-color-border-light);
  border-radius: var(--th-radius-md);
  box-shadow: var(--th-shadow-lg);
  font-size: var(--th-text-sm);
  color: var(--th-color-text);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) translateX(20px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
  max-width: 320px;
}
.pdp2-social-toast--show {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.pdp2-social-toast i {
  color: var(--th-color-success);
  font-size: 16px;
}

/* Extra badge variants */
.pdp2-badge--info { background: var(--th-color-bg-soft); color: var(--th-color-text-muted); border-color: var(--th-color-border-light); }
.pdp2-badge--new { background: #eef2ff; color: #4338ca; border-color: #c7d2fe; }
.pdp2-badge--secure { background: var(--th-color-success-bg); color: var(--th-color-success-dark); border-color: var(--th-color-success-border); }
.pdp2-badge--original { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.pdp2-badge--turkey { background: #fef2f2; color: #991b1b; border-color: #fecaca; }

/* Platform customer-actions block — gizle (pdp2-stats-actions ile duplicate) */
.product-customer-actions {
  display: none !important;
}
