/* ==============================================
   C12 — Product Detail Page Redesign
   Primary: #ff6000 · Secondary: #2c3e50
   BG: #fff · Section: #f8f9fa · Border: #e5e7eb
   ============================================== */

/* ── Base ── */
.pdp2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-4) var(--space-8);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero Grid: 5/12 gallery / 7/12 buybox ── */
.pdp2-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-8);
  align-items: start;
}

/* ─────────────────────────────────────
   GALLERY
   ───────────────────────────────────── */
.pdp2-gallery {
  position: sticky;
  top: 80px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

/* ── Gallery Figure (semantic wrapper) ── */
.pdp2-gallery-figure {
  margin: 0;
  position: relative;
}

/* ── Main Carousel ── */
.pdp2-carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.pdp2-carousel .carousel-inner { border-radius: var(--radius-lg); }

/* CLS Guard: aspect-ratio + object-fit */
.pdp2-carousel .pp-main-img {
  aspect-ratio: 2/3;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.pdp2-carousel .pp-media-stage {
  position: relative;
  overflow: hidden;
}

/* ── Discount badge ── */
.pdp2-gallery-discount {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: var(--z-gallery-badge, 5);
}
.pdp2-gallery-discount span {
  display: inline-block;
  padding: 4px 10px;
  background: var(--color-danger);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--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(--z-gallery-control, 10);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--ease-default), background var(--ease-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: #fff;
  box-shadow: var(--shadow-sm);
}
.pdp2-gallery-prev { left: var(--space-3); }
.pdp2-gallery-next { right: var(--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);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.pdp2-carousel .pp-main-img {
  transition: transform 0.3s ease;
}

/* ── Thumbnail strip ── */
.pdp2-thumbs {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: var(--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(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-soft);
  transition: border-color var(--ease-default), opacity var(--ease-default);
  opacity: .7;
}
.pdp2-thumb:hover,
.pdp2-thumb:focus-visible { opacity: 1; border-color: var(--color-border); }
.pdp2-thumb.active { opacity: 1; border-color: var(--color-primary); }
.pdp2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Gallery actions (fav, compare) */
.pdp2-gallery-actions {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: var(--z-gallery-badge, 5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.pdp2-gallery-actions a,
.pdp2-gallery-actions button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 16px;
  transition: var(--ease-default);
  cursor: pointer;
}
.pdp2-gallery-actions a:hover,
.pdp2-gallery-actions button:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Gallery floating badges */
.pdp2-gallery-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: var(--z-gallery-badge, 5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.pdp2-gbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}
.pdp2-gbadge--fast {
  background: var(--color-primary);
  color: #fff;
}
.pdp2-gbadge--cargo {
  background: var(--color-success-dark);
  color: #fff;
}

/* Gallery mobile counter */
.pdp2-gallery-counter {
  display: none;
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: var(--z-gallery-counter, 10);
  gap: 2px;
  align-items: center;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

/* ─────────────────────────────────────
   VIDEO ENGINE (AŞAMA 12)
   ───────────────────────────────────── */
.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;
}

/* Play button overlay */
.pdp2-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: rgba(0,0,0,.25);
  border: none;
  cursor: pointer;
  z-index: var(--z-gallery-badge, 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(--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(--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;
}

/* Video stage (iframe/video inject target) */
.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;
}

/* Video thumbnail in strip */
.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;
}

/* Reduced motion */
@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;
}

/* ── Top Badge Row ── */
.pdp2-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.pdp2-topbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
}
.pdp2-topbadge i { font-size: 10px; }
.pdp2-topbadge--deal {
  background: var(--color-accent-bg);
  color: var(--color-accent);
  border-color: var(--color-accent-border);
}
.pdp2-topbadge--havale {
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border-color: var(--color-danger-border);
}
.pdp2-topbadge--kargo {
  background: var(--color-success-bg);
  color: var(--color-success-dark);
  border-color: var(--color-success-border);
}

/* ── Breadcrumb Row ── */
.pdp2-breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--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;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pdp2-breadcrumb li { display: inline-flex; align-items: center; }
.pdp2-breadcrumb li + li::before {
  content: '/';
  margin: 0 6px;
  color: var(--color-text-light);
  font-size: 10px;
}
.pdp2-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--ease-default);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.pdp2-breadcrumb a:hover { color: var(--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(--color-border);
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--ease-default);
  flex-shrink: 0;
}
.pdp2-copy-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.pdp2-copy-link.copied {
  border-color: var(--color-success);
  color: var(--color-success);
}
.pdp2-copy-link i { font-size: 10px; }

/* ── Brand Row + SKU ── */
.pdp2-brand-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
}
.pdp2-brand {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--ease-default);
}
.pdp2-brand:hover { text-decoration: underline; color: var(--color-primary-hover); }

/* SKU pill */
.pdp2-sku {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--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: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  font-size: 9px;
  cursor: pointer;
  transition: var(--ease-default);
}
.pdp2-sku-copy:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.pdp2-sku-copy.copied { border-color: var(--color-success); color: var(--color-success); }

/* ── Title (H1) ── */
.pdp2-title {
  font-size: clamp(18px, 2vw + 10px, 24px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin: 0 0 var(--space-2);
  max-width: 640px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Product Badges (inline row after title) ── */
.pdp2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}
.pdp2-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--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(--color-accent-bg);
  color: var(--color-accent);
  border-color: var(--color-accent-border);
}
.pdp2-badge--cargo {
  background: var(--color-success-bg);
  color: var(--color-success-dark);
  border-color: var(--color-success-border);
}
.pdp2-badge--discount {
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border-color: var(--color-danger-border);
}
.pdp2-badge--label {
  background: var(--color-bg-muted);
  color: var(--color-text-muted);
}

/* ── Tagline (short description) ── */
.pdp2-tagline {
  margin-bottom: var(--space-3);
  position: relative;
}
.pdp2-tagline-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
  max-height: 3em;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pdp2-tagline.expanded .pdp2-tagline-text {
  max-height: 200px;
  -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(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--ease-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);
}

/* ── Stats Row (Rating + Actions) — AŞAMA 4 ── */
.pdp2-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}
.pdp2-stats-sep { color: var(--color-text-light); user-select: none; }
.pdp2-stats-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.pdp2-stats-btn {
  background: none;
  border: none;
  padding: 4px 6px;
  margin: 0;
  font: inherit;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--ease-default);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.pdp2-stats-btn:hover { color: var(--color-primary); background: var(--color-bg-soft); }
.pdp2-stats-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.pdp2-stats-btn i { margin-right: 3px; font-size: 12px; }

/* ── Viewer Count ── */
.pdp2-viewer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  color: var(--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(--space-1);
}
.pdp2-rating-score {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--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(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: var(--ease-default);
}
.pdp2-rating-link:hover { color: var(--color-primary); text-decoration: underline; }

/* ── Rating Popup (hover) ── */
.pdp2-rating-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: var(--z-gallery-zoom);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--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(--text-md);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.pdp2-rpop-title span { font-weight: 400; font-size: var(--text-sm); color: var(--color-text-muted); }
.pdp2-rpop-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 4px;
}
.pdp2-rpop-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  min-width: 32px;
  text-align: right;
}
.pdp2-rpop-bar {
  flex: 1;
  height: 6px;
  background: var(--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(--text-xs);
  color: var(--color-text-light);
  min-width: 20px;
}
.pdp2-rpop-footer {
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border-light);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ── Price Block (AŞAMA 5 — Premium Price Card) ── */
.pdp2-price-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease-default);
  min-height: 80px;
}
.pdp2-price-main {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 0;
}
.pdp2-price-extra {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
  text-align: right;
}

/* Discount badge */
.pdp2-discount-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: var(--space-2);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  text-align: center;
  flex-shrink: 0;
}
.pdp2-discount-pct {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pdp2-discount-lbl {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Price numbers */
.pdp2-price-nums {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pdp2-price-now {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}
.pdp2-price-old {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-top: 2px;
}
.pdp2-price-save {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-success);
  margin-top: 2px;
}

/* 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; }
}

/* Havale / Taksit info */
.pdp2-havale-box {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
}
.pdp2-havale-box i { color: var(--color-primary); font-size: 12px; }
.pdp2-havale-box strong { color: var(--color-success); font-weight: 700; }
.pdp2-havale-badge {
  display: inline-block;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--color-success);
  background: var(--color-success-bg);
  border: 1px solid var(--color-success-border);
  border-radius: var(--radius-full);
  margin-left: var(--space-1);
}
.pdp2-taksit-line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  white-space: nowrap;
}
.pdp2-taksit-line i { color: var(--color-primary); font-size: 12px; }
.pdp2-taksit-link {
  background: none;
  border: none;
  padding: 2px 6px;
  margin: 0;
  font: inherit;
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--ease-default);
}
.pdp2-taksit-link:hover { text-decoration: underline; background: var(--color-bg-soft); }
.pdp2-taksit-link:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 1px; }

/* ── Payment Methods Row ── */
.pdp2-payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  min-height: 88px;
}
.pdp2-pm-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  transition: var(--ease-default);
  /* button reset */
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: visible;
}
.pdp2-pm-item:hover {
  border-color: var(--color-primary);
  background: #fff;
}
.pdp2-pm-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.pdp2-pm-item--disabled {
  opacity: .45;
  cursor: default;
  pointer-events: none;
}
.pdp2-pm-item > i {
  font-size: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.pdp2-pm-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.pdp2-pm-text strong {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text);
}
.pdp2-pm-text small {
  font-size: 10px;
  color: var(--color-text-muted);
}

/* ── Variants ── */
.pdp2-variants {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
}
.pdp2-variant-group {}
.pdp2-variant-group--color {}
.pdp2-variant-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}
.pdp2-variant-selected {
  color: var(--color-text);
}
.pdp2-variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Variant chip — AŞAMA 10: button semantics */
.pdp2-chip {
  /* Button reset */
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  /* Layout */
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: #fff;
  cursor: pointer;
  transition: var(--ease-default);
  min-height: 40px;
}
.pdp2-chip:hover:not([aria-disabled="true"]) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.pdp2-chip:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.pdp2-chip[aria-checked="true"] {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255,96,0,.04);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--color-primary);
}
.pdp2-chip[aria-disabled="true"] {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}
.pdp2-chip--color {
  padding: var(--space-2);
  min-width: 40px;
  justify-content: center;
}
.pdp2-chip-dot {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}
.pdp2-chip--color[aria-checked="true"] .pdp2-chip-dot {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary);
}
.pdp2-chip-text { line-height: 1; }

/* ── Smart Purchase / Bundle ── */
.pdp2-qty-pack {
  margin-bottom: var(--space-4);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.pdp2-qty-pack .bundle-title {
  padding: var(--space-3) var(--space-4);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: center;
}
.pdp2-qty-pack .bundle-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  padding: var(--space-3);
}
.pdp2-qty-pack .bundle-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--ease-default);
  text-align: center;
  min-height: 70px;
}
.pdp2-qty-pack .bundle-option:hover {
  border-color: var(--color-primary);
}
.pdp2-qty-pack .bundle-option.active {
  border-color: var(--color-primary);
  background: rgba(255,96,0,.04);
  box-shadow: 0 0 0 1px var(--color-primary);
}
.pdp2-qty-pack .bundle-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
}
.pdp2-qty-pack .bundle-option .qty {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}
.pdp2-qty-pack .bundle-option .save {
  font-size: var(--text-xs);
  color: var(--color-success);
  font-weight: 600;
  margin-top: 2px;
}
.pdp2-qty-pack .bundle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-soft);
}
.pdp2-qty-pack .summary-left {}
.pdp2-qty-pack .price-line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.pdp2-qty-pack .old-price {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-decoration: line-through;
}
.pdp2-qty-pack .new-price {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-primary);
}
.pdp2-qty-pack .save-text {
  font-size: var(--text-xs);
  color: var(--color-success);
  font-weight: 600;
}
.pdp2-qty-pack .bundle-suggestion {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}
.pdp2-qty-pack .summary-right {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pdp2-qty-pack .qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--ease-default);
}
.pdp2-qty-pack .qty-btn:hover { background: var(--color-bg-muted); }
.pdp2-qty-pack .qty-number { min-width: 36px; text-align: center; }
.pdp2-qty-pack .qty-number input {
  width: 36px;
  height: 36px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: var(--text-base);
  background: transparent;
  padding: 0;
}

/* ── Cart Buttons ── */
/* ── CTA Engine (AŞAMA 7) ── */
.pdp2-cta {
  margin-bottom: var(--space-4);
  min-height: 52px;
}

/* Quantity Stepper */
.pdp2-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-3);
  width: fit-content;
}
.pdp2-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  font: inherit;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--ease-default);
  user-select: none;
}
.pdp2-qty-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.pdp2-qty-btn:last-child  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.pdp2-qty-btn:hover { background: var(--color-border-light); }
.pdp2-qty-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: -2px; }
.pdp2-qty-input {
  width: 44px;
  height: 36px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  font: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--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 auto;
  gap: var(--space-2);
}
.pdp2-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-md);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--ease-default);
  min-height: 52px;
  position: relative;
}
.pdp2-btn-cart:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-sm);
}
.pdp2-btn-cart:focus-visible {
  outline: 2px solid var(--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;
}

.pdp2-btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: #2c3e50;
  color: #fff;
  font-size: var(--text-md);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--ease-default);
  min-height: 52px;
  white-space: nowrap;
}
.pdp2-btn-buy:hover {
  background: #34495e;
  box-shadow: var(--shadow-sm);
}
.pdp2-btn-buy:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}
.pdp2-btn-wp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-3);
  margin-top: var(--space-2);
  background: #25d366;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--ease-default);
}
.pdp2-btn-wp:hover { background: #1ebe5d; color: #fff; }
.pdp2-btn-wp:focus-visible { outline: 2px solid #25d366; outline-offset: 2px; }

/* Delivery Microcopy */
.pdp2-delivery-micro {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--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(--color-success); font-weight: 600; }

/* Out of Stock */
.pdp2-oos {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.pdp2-oos-msg {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: #fef2f2;
  color: var(--color-danger);
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
}
.pdp2-btn-stock-alarm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-soft);
  color: var(--color-text);
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--ease-default);
}
.pdp2-btn-stock-alarm:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pdp2-btn-stock-alarm:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

/* Variant Gating highlight */
.pdp2-variants.pdp2-variant-highlight {
  animation: pdp2VarHighlight .4s ease;
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}
@keyframes pdp2VarHighlight {
  0%   { outline-color: transparent; }
  50%  { outline-color: var(--color-primary); }
  100% { outline-color: var(--color-primary); }
}
@media (prefers-reduced-motion: reduce) {
  .pdp2-variants.pdp2-variant-highlight { animation: none; }
}

/* Toast */
.pdp2-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: var(--z-sticky-cta);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: #1f2937;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-lg);
  box-shadow: var(--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; } /* override hidden but keep invisible */
.pdp2-toast.pdp2-toast--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.pdp2-toast i { color: var(--color-success); font-size: 16px; flex-shrink: 0; }
.pdp2-toast-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  margin-left: var(--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(--space-2);
  line-height: 1;
}
.pdp2-toast-close:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .pdp2-toast { transition: none; }
}

/* ── Campaigns ── */
.pdp2-campaigns {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.pdp2-campaign-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.pdp2-campaign-item--coupon {
  border-color: var(--color-accent-border);
  background: var(--color-accent-bg);
}
.pdp2-campaign-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  font-size: 16px;
}
.pdp2-campaign-ico--gift { background: #fce7f3; color: #db2777; }
.pdp2-campaign-ico--coupon { background: var(--color-accent); color: #fff; }
.pdp2-campaign-ico--doc { background: #dbeafe; color: #2563eb; }
.pdp2-campaign-body {
  flex: 1;
  line-height: 1.4;
}
.pdp2-campaign-body strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.pdp2-campaign-body a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.pdp2-campaign-body a:hover { text-decoration: underline; }
.pdp2-coupon-btn {
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--ease-default);
}
.pdp2-coupon-btn:hover { background: var(--color-primary-hover); }

/* ── Trust / Guarantee Module (AŞAMA 8) ── */
.pdp2-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  min-height: 64px;
}
.pdp2-trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.3;
}
.pdp2-trust-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  font-size: 14px;
}
.pdp2-trust-ico--wp {
  background: #25d366;
}
.pdp2-trust-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.pdp2-trust-body strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}
.pdp2-trust-body span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Proof Row (ETBİS / KVKK) */
.pdp2-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.pdp2-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--ease-default);
}
.pdp2-proof-badge:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.pdp2-proof-badge i {
  font-size: 11px;
}

/* ── Product Highlights (AŞAMA 13) ── */
.pdp2-highlights {
  margin-bottom: var(--space-3);
  contain: layout;
  min-height: 64px;
}
.pdp2-highlights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-2) var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}
.pdp2-highlights-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.3;
  min-width: 0;
}
.pdp2-highlights-ico {
  color: var(--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(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pdp2-highlights-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Description / Spec Accordion (AŞAMA 14) ── */
.pdp2-desc {
  margin-top: var(--space-8);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  contain: layout;
}
.pdp2-desc-section {
  border-bottom: 1px solid var(--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(--space-4) var(--space-5);
  background: var(--color-bg);
  border: none;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: background .15s ease;
  min-height: 52px;
}
.pdp2-desc-header:hover {
  background: var(--color-bg-soft);
}
.pdp2-desc-header:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}
.pdp2-desc-header-text {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.pdp2-desc-header-text i {
  font-size: var(--text-base);
  color: var(--color-primary);
}
.pdp2-desc-arrow {
  font-size: 12px;
  color: var(--color-text-muted);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.pdp2-desc-section--open > .pdp2-desc-header .pdp2-desc-arrow {
  transform: rotate(180deg);
}

/* Panel: visible by default (progressive enhancement). JS adds hidden. */
.pdp2-desc-panel {
  padding: 0 var(--space-5) var(--space-5);
  overflow: hidden;
}
.pdp2-desc-panel[hidden] {
  display: none;
}

/* Content styling */
.pdp2-desc-content {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.pdp2-desc-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}
.pdp2-desc-content table {
  width: 100%;
  border-collapse: collapse;
}
.pdp2-desc-content table td,
.pdp2-desc-content table th {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border-light);
}

/* Spec table */
.pdp2-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.pdp2-spec-table th,
.pdp2-spec-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
  text-align: left;
  vertical-align: top;
}
.pdp2-spec-table th {
  width: 40%;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-soft);
}
.pdp2-spec-table td {
  color: var(--color-text);
}
.pdp2-spec-table td a {
  color: var(--color-text);
  text-decoration: none;
}
.pdp2-spec-table td a:hover {
  color: var(--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(--space-3);
}
.pdp2-returns-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}
.pdp2-returns-list li i {
  color: var(--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(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}
.pdp2-returns-link:hover {
  text-decoration: underline;
}

/* Reduced motion: no arrow animation */
@media (prefers-reduced-motion: reduce) {
  .pdp2-desc-arrow { transition: none; }
}

/* ── Sticky CTA ── */
.pp-sticky-cta {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: var(--z-sticky-cta);
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-sticky);
  padding: var(--space-3) var(--space-4);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  transition: bottom .3s cubic-bezier(.22,1,.36,1);
}
.pp-sticky-cta.visible { bottom: 0; }
.pp-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.pp-sticky-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light);
  flex-shrink: 0;
}
.pp-sticky-info { flex: 1; min-width: 0; }
.pp-sticky-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pp-sticky-brand {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 4px;
}
.pp-sticky-prices {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.pp-sticky-price {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--color-primary);
}
.pp-sticky-old {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-decoration: line-through;
}
.pp-sticky-btn {
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-base);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--ease-default);
  white-space: nowrap;
}
.pp-sticky-btn:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

/* ─────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────── */

/* Tablet */
@media (max-width: 992px) {
  .pdp2-hero {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .pdp2-gallery {
    position: static;
  }
  .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); }
}

/* Mobile */
@media (max-width: 768px) {
  .pdp2 { padding: var(--space-3); }
  .pdp2-title { font-size: var(--text-lg); }
  .pdp2-price-block {
    flex-direction: column;
    gap: var(--space-3);
  }
  .pdp2-price-right {
    text-align: left;
    flex-direction: row;
    gap: var(--space-4);
  }
  .pdp2-price-now { font-size: 24px; }
  .pdp2-cart-row { grid-template-columns: 1fr; }
  .pdp2-btn-buy { width: 100%; }
  .pp-sticky-cta { padding: var(--space-2) var(--space-3); }
  .pp-sticky-btn { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
}

/* Small mobile */
@media (max-width: 500px) {
  .pdp2-payment-methods { grid-template-columns: 1fr 1fr; }
  .pdp2-trust { grid-template-columns: 1fr 1fr; }
  .pdp2-pm-item { padding: var(--space-2); }
  .pdp2-trust-item { font-size: 10px; }
  .pdp2-qty-pack .bundle-options { grid-template-columns: repeat(2, 1fr); }
  .pdp2-topbar { gap: var(--space-1); }
  .pdp2-topbadge { font-size: 10px; padding: 4px 8px; }
}


/* ==============================================
   DELIVERY BAR
   ============================================== */

.delivery-bar{
  --accent:#f97316;
  --text:#111827;
  --muted:var(--color-text-muted);
  --border:var(--color-border);
  --bg:#ffffff;

  width:100%;
  margin-top:14px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:14px;
  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:12px 14px;
}

.delivery-bar .delivery-text{
  color:var(--text);
  font-size:13.5px;
  line-height:1.25;
  font-weight:600;
}
.delivery-bar .delivery-text strong{
  font-weight:800;
  color:var(--accent);
}

.delivery-bar .delivery-countdown{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--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(--color-text-light);
  font-weight:800;
}

.delivery-bar .delivery-meta{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  padding:10px 14px 12px 14px;
  border-top:1px solid var(--border);
  background:#fbfbfc;
}
@media (min-width:720px){
  .delivery-bar .delivery-meta{ grid-template-columns:1fr 1fr; }
}

.delivery-bar .delivery-meta span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.2;
}
.delivery-bar .delivery-meta i{
  color:var(--accent);
  opacity:.95;
}
.delivery-bar .delivery-meta strong{
  color:var(--text);
  font-weight:800;
}

.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; }
}

/* ── Delivery Wrapper (AŞAMA 9) ── */
.pdp2-delivery {
  margin-bottom: var(--space-4);
  min-height: 48px;
}
.pdp2-delivery .delivery-bar {
  margin-top: 0;
}

/* Static delivery info rows */
.pdp2-delivery-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.pdp2-delivery-info:empty {
  display: none;
}
.pdp2-del-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.3;
}
.pdp2-del-row > i {
  font-size: 14px;
  color: var(--color-primary);
  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(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}
.pdp2-del-body span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* ==============================================
   PDP SHADOW ADDITIONS
   FAQ Accordion + Sticky CTA + Quick View Modal
   Migrated from style-shadow.css sections 31B, 32
   ============================================== */

/* ═══════════════════════════════════════════════════════════════════
   SECTION 31B — C7-3: PDP FAQ ACCORDION + STICKY CTA POLISH
   ═══════════════════════════════════════════════════════════════════ */

/* ── FAQ Accordion ── */
.pdp2-faq { margin-top: 16px; }
.pdp2-faq-title {
  font-size: 14px; font-weight: 700; color: #111;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.pdp2-faq-title i { color: var(--main-color, #ff6000); font-size: 16px; }

.pdp2-faq-item {
  border: 1px solid #f0f0f0; 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: #e0e0e0;
}
.pdp2-faq-q {
  padding: 12px 16px; cursor: pointer;
  font-size: 13px; font-weight: 600; color: #333;
  list-style: none; display: flex; align-items: center;
  transition: background 0.15s;
}
.pdp2-faq-q:hover { background: #fafafa; }
.pdp2-faq-q::after {
  content: '\f078'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
  font-size: 10px; color: #999; 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: #555;
  line-height: 1.6; border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

/* ── Sticky CTA polish ── */
.pp-sticky-cta {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}
.pp-sticky-btn {
  background: var(--main-color, #ff6000) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.pp-sticky-btn:hover {
  background: #e55500 !important;
  transform: translateY(-1px);
}



/* ═══════════════════════════════════════════════════════════════════
   SECTION 32 — C7-2: QUICK VIEW MODAL PREMIUM
   Styling for hizli_sepet_kutusu.twig (platform native modal)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Modal container ── */
.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;
}

/* ── Gallery image ── */
.native-modal.show .hizli-sepet .carousel-item img {
  width: 100%; height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
  background: #f8f8f8;
  border-radius: 0;
}

/* ── Carousel controls ── */
.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: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── Product title ── */
.native-modal.show .hizli-sepet .fast-product-cart-box h4 {
  font-size: 18px; font-weight: 700; color: #111;
  line-height: 1.4; margin-bottom: 8px;
}

/* ── Price ── */
.native-modal.show .hizli-sepet .product-price-group .sale-price {
  font-size: 24px; font-weight: 700;
  color: var(--main-color, #ff6000);
}
.native-modal.show .hizli-sepet .product-price-group .list-price {
  font-size: 14px; color: #999;
  text-decoration: line-through;
}

/* ── Variant chips ── */
.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 #e0e0e0; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: #333;
  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(--main-color, #ff6000);
  color: var(--main-color, #ff6000);
}
.native-modal.show .hizli-sepet .variant-box .options a.active {
  background: var(--main-color, #ff6000);
  border-color: var(--main-color, #ff6000);
  color: #fff;
}
.native-modal.show .hizli-sepet .variant-box .options a.sold-out {
  opacity: 0.4; text-decoration: line-through; cursor: not-allowed;
}

/* ── Add to cart button ── */
.native-modal.show .hizli-sepet .buttons .btn-cart {
  width: 100%; padding: 14px 24px;
  background: var(--main-color, #ff6000); color: #fff;
  border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.native-modal.show .hizli-sepet .buttons .btn-cart:hover {
  background: #e55500; transform: translateY(-1px);
}

/* ── Quantity controls ── */
.native-modal.show .hizli-sepet .product-quantity {
  display: inline-flex; align-items: center;
  border: 1.5px solid #e0e0e0; 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: #f5f5f5; border: none; font-size: 12px; color: #333;
}
.native-modal.show .hizli-sepet .product-quantity input {
  width: 50px; text-align: center; border: none;
  font-size: 15px; font-weight: 600;
}

/* ── Trust bar (added via twig) ── */
.qv-trust {
  display: flex; gap: 16px; padding: 12px 0; margin-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.qv-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #666; white-space: nowrap;
}
.qv-trust-item i { color: var(--main-color, #ff6000); font-size: 13px; }

/* ── Product page link ── */
.qv-product-link {
  display: block; text-align: center; padding: 10px; margin-top: 8px;
  color: var(--main-color, #ff6000); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}
.qv-product-link:hover { opacity: 0.8; color: var(--main-color, #ff6000); }

/* ── Modal entry animation ── */
.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;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .native-modal.show .hizli-sepet { max-width: 100% !important; margin: 8px; }
  .native-modal.show .hizli-sepet .modal-content { border-radius: 12px; }
  .native-modal.show .hizli-sepet .fast-product-cart-box { max-height: 70vh; padding-right: 12px !important; }
  .qv-trust { flex-wrap: wrap; gap: 10px; }
}


/* ==============================================
   PDP MOBILE PREMIUM — C13
   Mobile-first premium product detail page.
   Reorder, sticky bar, payment 2x2, card standard.
   ============================================== */

/* ─────────────────────────────────────
   PAYMENT METHODS 2x2 GRID (Enhanced)
   ───────────────────────────────────── */
.pdp2-pm-item {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  min-height: 80px;
}
.pdp2-pm-item > i {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: 16px;
  opacity: .5;
}
.pdp2-pm-price {
  display: block;
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin-top: 2px;
}
.pdp2-pm-note {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.pdp2-pm-note--green {
  color: var(--color-success);
  font-weight: 600;
}
.pdp2-pm-note--warn {
  color: var(--color-warning, #d97706);
}

/* "EN AVANTAJLI" badge */
.pdp2-pm-badge {
  position: absolute;
  top: -8px;
  left: var(--space-3);
  padding: 2px 8px;
  background: var(--color-success-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  z-index: 1;
}

/* Best price card highlight */
.pdp2-pm-item--best {
  border-color: var(--color-success-dark);
  background: var(--color-success-bg);
}
.pdp2-pm-item--best > i {
  color: var(--color-success-dark);
  opacity: 1;
}
.pdp2-pm-item--best .pdp2-pm-price {
  color: var(--color-success-dark);
}

/* ─────────────────────────────────────
   CARD STANDARD — Sections as Cards
   bg #fff, border #e9ecef, radius 14px,
   padding 14-16px, gap 12px
   ───────────────────────────────────── */
.pdp2-price-block,
.pdp2-payment-methods,
.pdp2-trust,
.pdp2-qty-pack,
.pdp2-delivery .delivery-bar {
  border-color: #e9ecef;
}

/* ─────────────────────────────────────
   TOPBAR BADGE — Horizontal scroll
   ───────────────────────────────────── */
@media (max-width: 768px) {
  .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; }
}

/* ─────────────────────────────────────
   VARIANT CHIPS — Horizontal scroll
   ───────────────────────────────────── */
@media (max-width: 768px) {
  .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; }
}

/* ─────────────────────────────────────
   BUNDLE — Premium polish
   ───────────────────────────────────── */
.pdp2-qty-pack .bundle-option.active {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-sm);
}
.pdp2-qty-pack .bundle-badge {
  box-shadow: var(--shadow-xs);
}

/* ─────────────────────────────────────
   CROSS-SELL / BUNDLE ENGINE (AŞAMA 11)
   ───────────────────────────────────── */
.pdp2-bundle {
  margin-top: var(--space-6);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  min-height: 120px;
  contain: layout;
}
.pdp2-bundle-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}
.pdp2-bundle-header i {
  color: var(--color-primary);
  font-size: var(--text-md);
}

/* Card list */
.pdp2-bundle-list {
  display: flex;
  flex-direction: column;
}
.pdp2-bundle-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: var(--ease-default);
}
.pdp2-bundle-card:last-child { border-bottom: none; }
.pdp2-bundle-card:hover { background: var(--color-bg-soft); }
.pdp2-bundle-card--main {
  background: rgba(255,96,0,.03);
  cursor: default;
}

/* Checkbox */
.pdp2-bundle-check {
  flex-shrink: 0;
}
.pdp2-bundle-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.pdp2-bundle-check input[disabled] {
  cursor: default;
  opacity: .6;
}

/* Image */
.pdp2-bundle-img {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--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(--color-danger);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  line-height: 1.3;
}

/* Body */
.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(--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(--text-sm);
  color: var(--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(--color-primary);
  text-decoration: underline;
}
.pdp2-bundle-prices {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.pdp2-bundle-price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}
.pdp2-bundle-old {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* Unchecked state */
.pdp2-bundle-card.pdp2-bundle--unchecked {
  opacity: .5;
}
.pdp2-bundle-card.pdp2-bundle--unchecked .pdp2-bundle-img {
  filter: grayscale(.6);
}

/* Footer — total + CTA */
.pdp2-bundle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border-light);
}
.pdp2-bundle-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pdp2-bundle-total-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pdp2-bundle-total-price {
  font-size: var(--text-lg);
  color: var(--color-text);
}
.pdp2-bundle-total-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pdp2-bundle-add {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease-default);
  min-height: 44px;
  white-space: nowrap;
}
.pdp2-bundle-add:hover {
  background: var(--color-primary-hover);
}
.pdp2-bundle-add:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.pdp2-bundle-add:disabled,
.pdp2-bundle-add[aria-disabled="true"] {
  opacity: .5;
  cursor: not-allowed;
}
.pdp2-bundle-add.pdp2-bundle-add--loading {
  pointer-events: none;
  opacity: .7;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .pdp2-bundle-card {
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
  }
  .pdp2-bundle-img {
    width: 52px;
    height: 52px;
  }
  .pdp2-bundle-summary {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
  }
  .pdp2-bundle-total {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
  }
  .pdp2-bundle-add {
    justify-content: center;
  }
}

/* ─────────────────────────────────────
   MOBILE STICKY BOTTOM BAR
   ───────────────────────────────────── */
@media (max-width: 992px) {
  .pp-sticky-cta {
    padding: 0;
    /* CLS-safe fixed height */
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .pp-sticky-inner {
    height: 100%;
    padding: 0 var(--space-3);
    gap: var(--space-3);
  }
  .pp-sticky-img { display: none; }
  .pp-sticky-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pp-sticky-name { display: none; }
  .pp-sticky-price {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-primary);
  }
  .pp-sticky-old {
    font-size: var(--text-xs);
  }
  .pp-sticky-btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    min-height: 44px;
    white-space: nowrap;
  }

  /* Padding for sticky bar: CLS-safe */
  .pdp2 {
    padding-bottom: 80px;
  }

  /* Toast above sticky bar on mobile */
  .pdp2-toast {
    bottom: calc(72px + env(safe-area-inset-bottom, 0));
  }

  /* Qty stepper: wider for tap targets */
  .pdp2-qty-btn { width: 44px; height: 44px; }
  .pdp2-qty-input { width: 48px; height: 44px; }
}

/* ─────────────────────────────────────
   MOBILE FLOW REORDER
   Gallery → Title → Stats → Price →
   Payment 2x2 → CTA → Trust 2x2 →
   Variants → Bundle → Delivery → Campaigns
   ───────────────────────────────────── */
@media (max-width: 992px) {
  .pdp2-info {
    display: flex;
    flex-direction: column;
  }

  /* Hide topbar badges on mobile (redundant with gallery badges) */
  .pdp2-topbar { order: -1; display: none; }

  /* Title + Brand */
  .pdp2-title { order: 1; }

  /* Short description (collapsed on mobile) */
  .pdp2-tagline { order: 2; display: none; }

  /* Rating + Actions */
  .pdp2-stats { order: 3; }

  /* Price Block */
  .pdp2-price-block { order: 4; }

  /* Payment Methods */
  .pdp2-payment-methods { order: 5; }

  /* Cart Buttons (CTA up!) */
  .pdp2-cta { order: 6; }

  /* Trust Strip */
  .pdp2-trust { order: 7; }

  /* Highlights (between trust and variants) */
  .pdp2-highlights { order: 7; }

  /* Variants (below CTA on mobile) */
  .pdp2-variants { order: 8; }
  .variant-box { order: 8; }

  /* Bundle */
  .pdp2-qty-pack { order: 9; }

  /* Delivery */
  .pdp2-delivery { order: 10; }

  /* Campaigns */
  .pdp2-campaigns { order: 11; }

  /* Special product fields */
  .pdp2-info > [class*="special_fields"] { order: 8; }
}

/* ─────────────────────────────────────
   MOBILE TYPOGRAPHY SCALE
   ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Breadcrumb row: stack on mobile, hide copy link label */
  .pdp2-breadcrumb-row { gap: var(--space-1); }
  .pdp2-breadcrumb ol { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pdp2-breadcrumb a { max-width: 90px; }
  .pdp2-copy-link span { display: none; }
  .pdp2-copy-link { padding: 4px 8px; }

  /* Brand row compact */
  .pdp2-brand-row { gap: var(--space-2); flex-wrap: wrap; }
  .pdp2-sku { font-size: 10px; padding: 2px 6px; }

  /* Badges wrap */
  .pdp2-badges { gap: 3px; }
  .pdp2-badge { font-size: 9px; padding: 2px 6px; }

  /* Tagline */
  .pdp2-tagline-text { font-size: var(--text-sm); }

  .pdp2-title {
    font-size: 17px;
    line-height: 1.35;
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pdp2-brand {
    font-size: var(--text-xs);
  }
  .pdp2-price-now {
    font-size: 24px;
  }
  .pdp2-stats {
    font-size: var(--text-xs);
    gap: var(--space-1);
    padding-bottom: var(--space-3);
    margin-bottom: var(--space-3);
  }
  .pdp2-stats-actions { gap: var(--space-1); }
  .pdp2-stats-btn { padding: 6px 4px; font-size: var(--text-xs); min-height: 44px; }
  .pdp2-stats-btn i { font-size: 11px; }
  .pdp2-rating-score { font-size: var(--text-sm); }
  .pdp2-stars { font-size: 12px; }
  .pdp2-rating-link { font-size: var(--text-xs); }
  .pdp2-rating-popup { left: -8px; min-width: 220px; padding: var(--space-3); }

  /* Payment 2x2 mobile */
  .pdp2-payment-methods {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
  .pdp2-pm-item {
    padding: var(--space-3);
    min-height: 72px;
    border-radius: var(--radius-md);
  }
  .pdp2-pm-text strong {
    font-size: var(--text-xs);
  }
  .pdp2-pm-price {
    font-size: var(--text-sm);
  }

  /* Trust 2x2 mobile */
  .pdp2-trust {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3);
  }
  .pdp2-trust-body strong { font-size: var(--text-xs); }
  .pdp2-trust-body span { font-size: 10px; }

  /* Highlights 2-col mobile */
  .pdp2-highlights-list {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--space-3);
    gap: var(--space-2);
  }
  .pdp2-highlights-title { font-size: 10px; }
  .pdp2-highlights-value { font-size: var(--text-xs); }

  /* Accordion mobile */
  .pdp2-desc-header {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    min-height: 48px;
  }
  .pdp2-desc-panel {
    padding: 0 var(--space-4) var(--space-4);
  }
  .pdp2-spec-table th {
    width: 45%;
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }
  .pdp2-spec-table td {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }

  /* Cart buttons full width */
  .pdp2-cart-row {
    grid-template-columns: 1fr;
  }
  .pdp2-btn-buy {
    width: 100%;
  }
  .pdp2-btn-cart {
    min-height: 48px;
    font-size: var(--text-base);
  }
  .pdp2-btn-buy {
    min-height: 44px;
    font-size: var(--text-base);
  }

  /* Bundle 2x2 */
  .pdp2-qty-pack .bundle-options {
    grid-template-columns: 1fr 1fr;
  }
  .pdp2-qty-pack .bundle-summary {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  /* Price block stacked */
  .pdp2-price-block {
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-4);
  }
  .pdp2-price-extra {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .pdp2-havale-badge { margin-left: 0; margin-top: 2px; }

  /* Campaigns compact */
  .pdp2-campaign-item {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
  }
  .pdp2-campaign-ico {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* Delivery bar compact */
  .delivery-bar .delivery-main {
    flex-direction: column;
    gap: 8px;
    padding: var(--space-3);
  }
  .delivery-bar .delivery-countdown {
    align-self: flex-start;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
  }
  .delivery-bar .delivery-countdown span {
    font-size: 15px;
    min-width: 18px;
  }

  /* Gallery: full bleed on mobile */
  .pdp2-gallery {
    margin: 0 calc(-1 * var(--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; }

  /* Disable hover zoom on touch */
  .pdp2-carousel .pp-image-link:hover .pp-main-img { transform: none; }

  /* Mobile gallery nav always visible */
  .pdp2-gallery-prev,
  .pdp2-gallery-next { opacity: .8; width: 36px; height: 36px; font-size: 12px; }

  /* Thumbs horizontal scroll-snap */
  .pdp2-thumbs {
    margin: var(--space-2) var(--space-3) 0;
    padding: 0;
    gap: var(--space-2);
  }
  .pdp2-thumb { width: 56px; height: 72px; }
}

/* ─────────────────────────────────────
   SMALL MOBILE (≤500px)
   ───────────────────────────────────── */
@media (max-width: 500px) {
  .pdp2 { padding: var(--space-2) var(--space-3) 80px; }
  .pdp2-title { font-size: 16px; max-width: none; }
  .pdp2-price-now { font-size: 22px; }

  /* Breadcrumb: tighter */
  .pdp2-breadcrumb ol { font-size: 10px; }
  .pdp2-breadcrumb a { max-width: 70px; }
  .pdp2-breadcrumb li + li::before { margin: 0 4px; }

  /* Badges smaller */
  .pdp2-badge { font-size: 8px; padding: 2px 5px; }
  .pdp2-badge i { font-size: 8px; }

  /* Payment items tighter */
  .pdp2-pm-item {
    padding: var(--space-2);
    min-height: 64px;
  }
  .pdp2-pm-badge {
    font-size: 8px;
    padding: 1px 6px;
    top: -6px;
  }

  /* Bundle even more compact */
  .pdp2-qty-pack .bundle-option {
    padding: var(--space-2);
    min-height: 60px;
  }
  .pdp2-qty-pack .bundle-badge {
    font-size: 8px;
    top: -6px;
  }

  /* Sticky bar tighter */
  .pp-sticky-cta { height: 56px; }
  .pp-sticky-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    min-height: 40px;
  }
}

/* ─────────────────────────────────────
   CLS SAFETY
   ───────────────────────────────────── */
/* Gallery CLS now handled in .pdp2-carousel .pp-main-img above */

/* Fixed height placeholders */
.pdp2-payment-methods { min-height: 88px; }
.pdp2-trust { min-height: 64px; }
.pdp2-cta { min-height: 52px; }
.pp-sticky-cta { contain: layout; height: 64px; }

@media (max-width: 992px) {
  .pdp2-payment-methods { min-height: 160px; }
  .pdp2-trust { min-height: 120px; }
  .pdp2-highlights { min-height: 80px; }
  .pdp2-delivery { min-height: 48px; }
}

/* ─────────────────────────────────────
   CONVERSION MICRO UX (AŞAMA 17)
   ───────────────────────────────────── */

/* ── 17.1 Price legal microcopy ── */
.pdp2-price-legal {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ── 17.3 Low stock indicator ── */
.pdp2-low-stock {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
  background: #fef3c7;
  color: #92400e;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid #fde68a;
}
.pdp2-low-stock i { color: #d97706; font-size: 14px; }

/* ── 17.4 Favori button polish ── */
.pdp2-fav-wrap {
  position: relative;
}
.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(--color-text-muted);
  transition: transform .2s ease, color .2s ease;
  box-shadow: var(--shadow-sm);
}
.pdp2-fav-btn:hover { transform: scale(1.1); color: #ef4444; }
.pdp2-fav-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.pdp2-fav-btn--active { color: #ef4444; }
.pdp2-fav-btn--active:hover { color: #dc2626; }
@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; }

/* ── 17.7 Support row (WhatsApp + Soru Sor) ── */
.pdp2-support-row {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.pdp2-btn-support {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
  flex: 1;
  justify-content: center;
}
.pdp2-btn-support:hover { background: var(--color-bg-soft); border-color: var(--color-text-muted); }
.pdp2-btn-support:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.pdp2-btn-support--wp { border-color: #25d366; color: #25d366; }
.pdp2-btn-support--wp:hover { background: #25d366; color: #fff; }
.pdp2-btn-support--wp i { font-size: 18px; }
.pdp2-btn-support--ask i { color: var(--color-primary); }

/* ── 17.6 Recently Viewed polish ── */
.pdp2-recently {
  max-width: 1200px;
  margin: var(--space-8) auto var(--space-4);
  padding: 0 var(--space-4);
}
.pdp2-recently .th-rv-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.pdp2-recently .th-rv-list {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}
.pdp2-recently .th-rv-item {
  flex: 0 0 140px;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .15s ease;
}
.pdp2-recently .th-rv-item:hover { box-shadow: var(--shadow-md); }
.pdp2-recently .th-rv-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.pdp2-recently .th-rv-name {
  font-size: var(--text-xs);
  padding: var(--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(--text-sm);
  font-weight: 600;
  padding: 0 var(--space-2) var(--space-2);
  color: var(--color-primary);
}

/* ── 17.2 Coupon copy feedback ── */
.pdp2-coupon-btn {
  transition: background .15s ease, color .15s ease;
}
.pdp2-coupon-btn.pdp2-coupon-copied {
  background: var(--color-success) !important;
  color: #fff !important;
  pointer-events: none;
}

/* ── 17.9 Toast standardization ── */
/* Toast already defined above — ensure consistent z-index and transition */

@media (prefers-reduced-motion: reduce) {
  .pdp2-fav-btn { transition: none; }
  .pdp2-fav-btn--pop { animation: none; }
  .pdp2-btn-support { transition: none; }
}

@media (max-width: 768px) {
  .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; }
}

/* ─────────────────────────────────────
   MOBILE UX POLISH (AŞAMA 19)
   ───────────────────────────────────── */

/* 19.1 Sticky CTA + header collision: ensure CTA above mobile nav */
@media (max-width: 992px) {
  .pp-sticky-cta.visible {
    bottom: 0;
    padding-bottom: calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
  }
}

/* 19.2 Mobile spacing fine-tuning */
@media (max-width: 768px) {
  .pdp2-info { gap: var(--space-3); }
  .pdp2-stats { gap: var(--space-2); flex-wrap: wrap; }
  .pdp2-stats-actions { gap: var(--space-1); }
  .pdp2-campaigns { gap: var(--space-2); }
  .pdp2-delivery-info { gap: var(--space-2); }
}

/* 19.3 Tap targets: ensure 44px minimum on all interactive elements */
@media (max-width: 768px) {
  .pdp2-stats-btn { min-height: 44px; min-width: 44px; padding: var(--space-2); }
  .pdp2-chip { min-height: 44px; padding: var(--space-2) var(--space-3); }
  .pdp2-qty-btn { min-width: 44px; min-height: 44px; }
  .pdp2-desc-header { min-height: 48px; }
  .pdp2-thumb { min-width: 44px; min-height: 44px; }
}

/* 19.7 Toast safe-area */
@media (max-width: 768px) {
  .pdp2-toast {
    bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
  }
}

/* 19.8 Long title/attribute clamp */
.pdp2-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.pdp2-variant-label strong {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 500px) {
  .pdp2-title { -webkit-line-clamp: 2; }
}
