/* === kaynak: assets/css/pdp.css — Z-2 sprint === */

/* ==============================================
   PDP REDESIGN — Inspired by Amazon/Trendyol
   Primary: var(--th-color-primary) · Accent: #2c3e50
   Clean card-based layout with premium spacing
   ============================================== */

/* ── PDP Wrapper ── */
.th-pdp__wrapper {
  max-width: var(--th-container-max-width, 1280px);
  margin: 0 auto;
  padding: 1.5rem var(--th-spacing-container, 1rem);
}

/* ── Base Container ── */
.th-pdp__root {
  max-width: var(--th-container-max-width, 1440px);
  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;
}

.th-pdp__tagline-wrap {
  position: relative;
  max-height: 60px;
  overflow: hidden;
  margin-bottom: var(--th-space-2, 8px);
  transition: max-height 0.3s ease;
}

.th-pdp__tagline-wrap.expanded { max-height: none; }

.th-pdp__tagline-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--th-text-xs, 11px);
  font-weight: 600;
  color: var(--th-color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 2px;
}

.th-pdp__tagline-more:hover { text-decoration: underline; }

/* ── Hero: Card-Wrapped Grid ── */
.th-pdp__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--th-space-8);
  align-items: start;
  background: var(--th-color-bg);
  border-radius: var(--th-radius-xl);
  padding: var(--th-space-8);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  border: 1px solid var(--th-color-border-subtle);
}

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.th-pdp__gallery {
  position: sticky;
  top: var(--th-header-height, 90px);
  align-self: start;
  border-radius: var(--th-pdp-gallery-radius);
}
.th-pdp__gallery-figure {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: var(--th-space-3, 12px);
  width: 100%;
  overflow: hidden;
}
.th-pdp__gallery .carousel-outer { border-radius: var(--th-radius-lg); overflow: hidden; }
.th-pdp__gallery img { border-radius: 0; }

/* Carousel wrapper */
.th-pdp__carousel {
  border-radius: var(--th-radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--th-pdp-gallery-bg);
}
.th-pdp__carousel .carousel-inner {
  border-radius: var(--th-radius-lg);
}

/* CLS Guard */
.th-pdp__carousel .pp-main-img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--th-color-bg-soft, #fafafa);
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.th-pdp__carousel .pp-media-stage {
  position: relative;
  overflow: hidden;
}

/* Discount badge moved to .th-pdp__gbadge--discount in gallery-badges */

/* Gallery nav buttons */
.th-pdp__gallery-prev,
.th-pdp__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: var(--th-color-bg);
  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);
}
.th-pdp__carousel:hover .th-pdp__gallery-prev,
.th-pdp__carousel:hover .th-pdp__gallery-next,
.th-pdp__gallery-prev:focus-visible,
.th-pdp__gallery-next:focus-visible {
  opacity: 1;
}
.th-pdp__gallery-prev:hover,
.th-pdp__gallery-next:hover {
  background: var(--th-color-primary);
  color: var(--th-color-text-inverse);
  border-color: var(--th-color-primary);
  transform: translateY(-50%) scale(1.05);
}
.th-pdp__gallery-prev:active,
.th-pdp__gallery-next:active {
  transform: translateY(-50%) scale(0.95);
}
.th-pdp__gallery-prev { left: var(--th-space-3); }
.th-pdp__gallery-next { right: var(--th-space-3); }

/* Hover zoom (desktop) */
.th-pdp__carousel .pp-image-link {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}
.th-pdp__carousel .pp-image-link:hover .pp-main-img {
  transform: scale(1.08);
}

/* Thumbnail strip — desktop: sol kolon dikey */
.th-pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--th-space-2);
  margin-top: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
  scroll-snap-type: y mandatory;
  scrollbar-width: thin;
  flex-shrink: 0;
  width: 76px;
}
.th-pdp__thumbs::-webkit-scrollbar { width: 3px; }
.th-pdp__thumbs::-webkit-scrollbar-thumb { background: var(--th-color-border); border-radius: 2px; }


.th-pdp__thumb {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 68px;
  height: 90px;
  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;
}
.th-pdp__thumb:hover,
.th-pdp__thumb:focus-visible { opacity: 1; border-color: var(--th-color-border); }
.th-pdp__thumb.active {
  opacity: 1;
  border-color: var(--th-color-primary);
  border-width: 2.5px;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--th-color-primary) 15%, transparent);
}
.th-pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Gallery actions (fav, compare, share) */
.th-pdp__gallery-actions {
  position: absolute;
  top: var(--th-space-3, 12px);
  right: var(--th-space-3, 12px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--th-space-2);
}
.th-pdp__gallery-actions a,
.th-pdp__gallery-actions button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--th-color-bg);
  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;
}
.th-pdp__gallery-actions a:hover,
.th-pdp__gallery-actions button:hover {
  color: var(--th-color-primary);
  transform: scale(1.08);
  box-shadow: var(--th-shadow-md);
}
.th-pdp__gallery-actions a:active,
.th-pdp__gallery-actions button:active {
  transform: scale(0.95);
}

/* Gallery floating badges */
.th-pdp__gallery-badges {
  position: absolute;
  top: var(--th-space-3, 12px);
  left: var(--th-space-3, 12px);
  z-index: 10;
  display: flex;
  pointer-events: none;
  flex-direction: column;
  gap: var(--th-space-1);
}
.th-pdp__gbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--th-radius-full);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.th-pdp__gbadge--fast {
  background: color-mix(in srgb, var(--th-color-accent) 92%, transparent);
  color: var(--th-color-text-inverse);
}
.th-pdp__gbadge--cargo {
  background: color-mix(in srgb, var(--th-color-primary) 92%, transparent);
  color: var(--th-color-text-inverse);
}
.th-pdp__gbadge--discount {
  background: var(--th-color-error-hot);
  color: var(--th-color-text-inverse);
  font-size: 13px;
  font-weight: 800;
}

/* Gallery counter (mobile) */
.th-pdp__gallery-counter {
  display: none;
  position: absolute;
  bottom: var(--th-space-3);
  left: 50%;
  transform: translateX(-50%);
  background: var(--th-pdp-gallery-counter-bg);
  color: var(--th-color-text-inverse);
  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
   ═══════════════════════════════════════════════ */
.th-pdp__video {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--th-color-bg-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.th-pdp__video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.th-pdp__video.th-pdp__video--playing .th-pdp__video-poster {
  opacity: 0;
  pointer-events: none;
}
.th-pdp__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--th-space-2);
  background: var(--th-overlay-light, 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;
}
.th-pdp__video-play:hover { background: rgba(0, 0, 0, .4); }
.th-pdp__video-play:focus-visible { outline: 2px solid var(--th-neutral-0); outline-offset: -4px; }
.th-pdp__video-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--th-overlay-white, 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;
}
.th-pdp__video-play:hover .th-pdp__video-play-icon { transform: scale(1.08); }
.th-pdp__video-play-label {
  color: var(--th-color-text-inverse);
  font-size: var(--th-text-sm);
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}
.th-pdp__video.th-pdp__video--playing .th-pdp__video-play { display: none; }
.th-pdp__video-stage { position: absolute; inset: 0; z-index: 4; }
.th-pdp__video-stage iframe,
.th-pdp__video-stage video { width: 100%; height: 100%; border: none; display: block; background: var(--th-color-bg-inverse); }
.th-pdp__thumb--video { position: relative; }
.th-pdp__thumb-video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .35);
  color: var(--th-color-text-inverse);
  font-size: 16px;
  pointer-events: none;
  border-radius: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .th-pdp__video-play:hover .th-pdp__video-play-icon { transform: none; }
  .th-pdp__video-poster { transition: none; }
}

/* ═══════════════════════════════════════════════
   INFO PANEL
   ═══════════════════════════════════════════════ */
.th-pdp__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: var(--th-space-2);
}
.th-pdp__info > * { margin-bottom: 0; }

.th-pdp__rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--th-space-2, 8px);
  margin-bottom: var(--th-space-2, 8px);
}

.th-pdp__rating-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--th-color-text-muted);
  display: inline-block;
  flex-shrink: 0;
}

.th-pdp__reviews {
  scroll-margin-top: 80px;
}

/* ── Top Badge Row ── */
.th-pdp__topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: var(--th-space-1-5, 6px);
  margin-bottom: var(--th-space-2-5, 10px);
  min-height: 0;
}
.th-pdp__topbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  font-size: var(--th-text-xs);
  font-weight: 600;
  line-height: 1;
  transition: transform var(--th-transition-default);
}
.th-pdp__topbadge:hover { transform: translateY(-2px); }
.th-pdp__topbadge i { font-size: 10px; }
.th-pdp__topbadge--deal {
  background: var(--th-color-accent-bg);
  color: var(--th-color-accent);
  border: 1px solid var(--th-color-accent-border);
}
.th-pdp__topbadge--havale {
  background: var(--th-color-danger-bg);
  color: var(--th-color-danger);
  border: 1px solid var(--th-color-danger-border);
}
.th-pdp__topbadge--kargo {
  background: var(--th-color-success-bg);
  color: var(--th-color-success-dark);
  border: 1px solid var(--th-color-success-border);
}

/* ── Badge Strip (birleşik) ── */
.th-pdp__badge-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--th-space-2, 8px);
  margin-bottom: var(--th-space-3, 12px);
}
.th-pdp__bs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.th-pdp__bs i { font-size: 11px; }
.th-pdp__bs--new       { background: var(--th-indigo-50); color: var(--th-indigo-600); border: 1px solid var(--th-indigo-200); }
.th-pdp__bs--discount  { background: var(--th-color-danger-subtle); color: var(--th-color-danger-hover); border: 1px solid var(--th-red-200); }
.th-pdp__bs--fast      { background: var(--th-color-accent-subtle); color: var(--th-orange-600); border: 1px solid var(--th-orange-200); }
.th-pdp__bs--popularity {
  background: color-mix(in srgb, var(--th-color-info) 12%, transparent);
  color: var(--th-color-info);
}

.th-pdp__bs--cargo-info {
  background: color-mix(in srgb, var(--th-color-primary) 10%, transparent);
  color: var(--th-color-primary);
}

.th-pdp__badge-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--th-color-border-subtle);
  background: var(--th-color-bg-primary);
  color: var(--th-color-text-muted);
  cursor: pointer;
  font-size: 13px;
  margin-left: auto;
  transition: color 0.15s, border-color 0.15s;
}

.th-pdp__badge-share:hover {
  color: var(--th-color-primary);
  border-color: var(--th-color-primary);
}

.th-pdp__brand-link {
  font-weight: 700;
  color: var(--th-color-primary);
  text-decoration: none;
  font-size: var(--th-text-sm, 13px);
}

.th-pdp__brand-link:hover { text-decoration: underline; }

.th-pdp__taksit-arrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--th-color-text-muted);
  margin-left: 2px;
}

.th-pdp__campaign-item--gift {
  border-left: 3px solid var(--th-color-accent);
}

.th-pdp__bs--cargo     { background: var(--th-color-success-subtle); color: var(--th-emerald-600); border: 1px solid var(--th-emerald-200); }
.th-pdp__bs--havale    { background: var(--th-color-warning-subtle); color: var(--th-color-warning-hover); border: 1px solid var(--th-amber-200); }
.th-pdp__bs--deal      { background: var(--th-color-accent-subtle); color: var(--th-orange-600); border: 1px solid var(--th-orange-200); }
.th-pdp__bs--secure    { background: var(--th-slate-50); color: var(--th-slate-500); border: 1px solid var(--th-slate-200); }
.th-pdp__bs--original  { background: var(--th-slate-50); color: var(--th-slate-500); border: 1px solid var(--th-slate-200); }
.th-pdp__bs--turkey    { background: var(--th-slate-50); color: var(--th-slate-500); border: 1px solid var(--th-slate-200); }
.th-pdp__bs--label     { background: var(--th-blue-50); color: var(--th-cyan-600); border: 1px solid var(--th-blue-200); }

.th-pdp__stock-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--th-space-1, 4px);
  font-size: var(--th-text-xs, 11px);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.th-pdp__stock-badge--ok {
  background: color-mix(in srgb, var(--th-color-success) 12%, transparent);
  color: var(--th-color-success);
}

.th-pdp__stock-badge--low {
  background: color-mix(in srgb, var(--th-color-warning) 12%, transparent);
  color: var(--th-color-warning);
}

.th-pdp__stock-badge--critical {
  background: color-mix(in srgb, var(--th-color-danger) 12%, transparent);
  color: var(--th-color-danger);
}

/* ── Meta Row ── */
.th-pdp__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--th-space-1, 4px) var(--th-space-2, 8px);
  font-size: var(--th-text-xs, 11px);
  color: var(--th-color-text-muted);
  margin-bottom: var(--th-space-2, 8px);
}
.th-pdp__meta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.th-pdp__meta i { font-size: 10px; }
.th-pdp__meta--stock { color: var(--th-color-success); font-weight: 600; }
.th-pdp__meta--oos { color: var(--th-color-danger); font-weight: 600; }
.th-pdp__meta--cat { color: var(--th-color-primary); text-decoration: none; }
.th-pdp__meta--cat:hover { text-decoration: underline; }
.th-pdp__meta-sep { color: var(--th-color-border); user-select: none; }
.th-pdp__meta-val { font-weight: 500; }
.th-pdp__meta-mono { font-family: monospace; letter-spacing: 0.5px; }
.th-pdp__meta-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  color: var(--th-color-text-muted);
  cursor: pointer;
  padding: 0;
  font-size: 11px;
  border-radius: var(--th-radius-sm);
  transition: color 0.15s;
}
.th-pdp__meta-copy:hover { color: var(--th-color-primary); }

/* ── Smart Purchase (Çok Al Az Öde) ── */
.th-pdp__sp-wrap {
  border: 1px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-lg, 12px);
  padding: var(--th-space-3, 12px) var(--th-space-4, 16px);
  background: var(--th-color-bg-secondary);
  margin-bottom: var(--th-space-4, 16px);
}

.th-pdp__sp-head {
  font-size: var(--th-text-sm, 13px);
  font-weight: 700;
  color: var(--th-color-text-default);
  margin-bottom: var(--th-space-3, 12px);
  display: flex;
  align-items: center;
  gap: var(--th-space-2, 8px);
}

.th-pdp__sp-body {
  display: flex;
  gap: var(--th-space-3, 12px);
  align-items: center;
  flex-wrap: nowrap;
}

.th-pdp__sp-left {
  display: flex;
  gap: var(--th-space-2, 8px);
  flex-wrap: wrap;
  flex: 1;
}

.th-pdp__sp-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: var(--th-space-2, 8px) var(--th-space-3, 12px);
  border: 2px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-md, 8px);
  background: var(--th-color-bg-primary);
  cursor: pointer;
  font-size: var(--th-text-xs, 11px);
  font-weight: 600;
  color: var(--th-color-text-default);
  transition: border-color 0.15s, background 0.15s;
  min-width: 72px;
}

.th-pdp__sp-opt:hover:not([aria-disabled="true"]) {
  border-color: var(--th-color-primary);
  background: color-mix(in srgb, var(--th-color-primary) 6%, transparent);
}

.th-pdp__sp-opt.active,
.th-pdp__sp-opt[aria-checked="true"] {
  border-color: var(--th-color-primary);
  background: color-mix(in srgb, var(--th-color-primary) 10%, transparent);
  color: var(--th-color-primary);
}

.th-pdp__sp-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--th-color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 99px;
  white-space: nowrap;
}

.th-pdp__sp-qty {
  font-size: var(--th-text-sm, 13px);
  font-weight: 700;
}

.th-pdp__sp-save {
  font-size: 10px;
  font-weight: 600;
  color: var(--th-color-success);
}

.th-pdp__sp-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: var(--th-space-2, 8px);
  min-width: 130px;
  flex-shrink: 0;
}

.th-pdp__sp-hint {
  font-size: var(--th-text-xs, 11px);
  color: var(--th-color-text-muted);
  text-align: right;
}

.th-pdp__sp-stepper {
  display: flex;
  align-items: center;
  gap: var(--th-space-2, 8px);
}

.th-pdp__sp-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-sm, 6px);
  background: var(--th-color-bg-primary);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
}

.th-pdp__sp-qty-btn:hover { background: var(--th-color-bg-hover); }

.th-pdp__sp-qty-input {
  width: 48px !important;
  text-align: center;
  font-weight: 700;
  font-size: var(--th-text-sm, 13px);
}

.th-pdp__sp-result {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--th-space-2, 8px);
  padding: var(--th-space-2, 8px) var(--th-space-3, 12px);
  background: color-mix(in srgb, var(--th-color-primary) 8%, transparent);
  border-radius: var(--th-radius-sm, 6px);
  margin-top: var(--th-space-2, 8px);
  flex-wrap: wrap;
}

.th-pdp__sp-result.is-active {
  display: flex !important;
}

.th-pdp__sp-old {
  font-size: var(--th-text-xs, 11px);
  color: var(--th-color-text-muted);
  text-decoration: line-through;
}

.th-pdp__sp-new {
  font-size: var(--th-text-base, 15px);
  font-weight: 800;
  color: var(--th-color-primary);
}

.th-pdp__sp-save-txt {
  font-size: var(--th-text-xs, 11px);
  font-weight: 700;
  color: var(--th-color-success);
}

@media (max-width: 575px) {
  .th-pdp__sp-body { flex-direction: column; }
  .th-pdp__sp-right { align-items: flex-start; width: 100%; }
  .th-pdp__sp-opt { min-width: 64px; }
}

/* ── Sosyal Kanıt Ticker (dikey) ── */
.th-pdp__sp-ticker {
  height: 36px;
  overflow: hidden;
  background: var(--th-color-success-subtle);
  border: 1px solid var(--th-emerald-200);
  border-radius: var(--th-radius-md, 8px);
  margin-bottom: var(--th-space-2, 8px);
  position: relative;
  z-index: 1;
  width: 100%;
}

.th-pdp__sp-ticker-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.th-pdp__spt-chip {
  display: flex;
  align-items: center;
  gap: var(--th-space-1, 4px);
  height: 36px;
  padding: 0 var(--th-space-3, 12px);
  font-size: 13px;
  color: var(--th-emerald-800);
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.th-pdp__spt-chip i { font-size: 12px; flex-shrink: 0; }
.th-pdp__spt-chip strong { font-weight: 700; }

/* ── Breadcrumb Row ── */
.th-pdp__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;
}
.th-pdp__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;
}
.th-pdp__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 */
.th-pdp__breadcrumb li:last-child {
  flex-shrink: 1;
  min-width: 0;
}
.th-pdp__breadcrumb li:last-child a,
.th-pdp__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;
}
.th-pdp__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;
}
.th-pdp__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;
}
.th-pdp__breadcrumb a:hover { color: var(--th-color-primary); }

/* Copy link button */
.th-pdp__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;
}
.th-pdp__copy-link:hover { border-color: var(--th-color-primary); color: var(--th-color-primary); }
.th-pdp__copy-link.copied { border-color: var(--th-color-success); color: var(--th-color-success); }
.th-pdp__copy-link i { font-size: 10px; }

/* ── Brand Row + SKU ── */
.th-pdp__brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--th-space-2);
  margin-bottom: var(--th-space-3);
  padding-bottom: 0;
  border-bottom: none;
}
.th-pdp__brand {
  font-size: inherit;
  font-weight: 700;
  color: var(--th-color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: var(--th-transition-default);
  display: inline;
  margin-right: 4px;
}
.th-pdp__brand:hover { text-decoration: underline; color: var(--th-color-primary-hover); }
.th-pdp__sku { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: var(--th-color-text-light); }
.th-pdp__sku-label { font-weight: 600; }
.th-pdp__sku-value { font-family: monospace; letter-spacing: .02em; }
.th-pdp__sku-copy {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; padding: 0;
  background: transparent;
  border: none;
  border-radius: 3px;
  color: var(--th-color-text-light);
  font-size: 9px;
  cursor: pointer;
  transition: var(--th-transition-default);
  flex-shrink: 0;
}
.th-pdp__sku-copy:hover { border-color: var(--th-color-primary); color: var(--th-color-primary); }
.th-pdp__sku-copy.copied { border-color: var(--th-color-success); color: var(--th-color-success); }

.th-pdp__title .th-pdp__brand-link {
  color: var(--th-color-primary);
  font-weight: 700;
  font-size: inherit;
  text-decoration: none;
  display: inline;
  margin-right: 2px;
}

.th-pdp__title .th-pdp__brand-link:hover { text-decoration: underline; }

.th-pdp__brand-verified {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 3px;
  margin-bottom: 3px;
  flex-shrink: 0;
}

/* ── Title (H1) ── */
.th-pdp__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 ── */
.th-pdp__tagline {
  margin-bottom: var(--th-space-3);
  position: relative;
  max-height: calc(var(--th-text-sm) * 1.7 * 2);
  overflow: hidden;
}
.th-pdp__tagline-text {
  font-size: var(--th-text-sm);
  color: var(--th-color-text-muted);
  line-height: 1.7;
  margin: 0;
}
.th-pdp__tagline.expanded { max-height: none; }
.th-pdp__tagline.expanded .th-pdp__tagline-text { -webkit-line-clamp: unset; }
.th-pdp__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);
}
.th-pdp__tagline-toggle:hover { text-decoration: underline; }
.th-pdp__tagline-toggle i { font-size: 9px; transition: transform 0.2s; }
.th-pdp__tagline.expanded .th-pdp__tagline-toggle i { transform: rotate(180deg); }

/* ── Product Badges (inline row) ── */
.th-pdp__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--th-space-3);
  margin-top: var(--th-space-1);
}
.th-pdp__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: var(--th-radius-full);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
}
.th-pdp__badge i { font-size: 9px; }
.th-pdp__badge--fast { background: var(--th-color-accent-bg); color: var(--th-color-accent); border-color: var(--th-color-accent-border); }
.th-pdp__badge--cargo { background: var(--th-color-success-bg); color: var(--th-color-success-dark); border-color: var(--th-color-success-border); }
.th-pdp__badge--discount { background: var(--th-color-danger-bg); color: var(--th-color-danger); border-color: var(--th-color-danger-border); }
.th-pdp__badge--label { background: var(--th-color-bg-muted); color: var(--th-color-text-muted); }

/* ═══════════════════════════════════════════════
   STATS ROW (Rating + Actions)
   ═══════════════════════════════════════════════ */
.th-pdp__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);
}
.th-pdp__stats-sep { color: var(--th-color-text-light); user-select: none; }
.th-pdp__stats-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--th-space-2);
}
.th-pdp__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;
}
.th-pdp__stats-btn:hover { color: var(--th-color-primary); }
.th-pdp__stats-btn:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 1px; }
.th-pdp__stats-btn i { margin-right: 4px; font-size: 13px; }
.th-pdp__stats-btn--wa { color: var(--th-whatsapp-bg); text-decoration: none; }
.th-pdp__stats-btn--wa:hover { color: var(--th-whatsapp-hover, #128c7e); }

/* Viewer Count */
.th-pdp__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;
}
.th-pdp__viewer i { font-size: 11px; }
.th-pdp__viewer[hidden] { display: none; }
.th-pdp__viewer-sep[hidden] { display: none; }

/* CSS-only Star Rating */
.th-pdp__rating {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--th-space-2, 8px);
  cursor: default;
}
.th-pdp__rating-score {
  font-weight: 700;
  font-size: 16px;
  color: var(--th-color-text);
}
.th-pdp__stars {
  --percent: calc(var(--rating, 0) / 5 * 100%);
  display: inline-block;
  font-size: 1em;
  letter-spacing: 2px;
  line-height: 1;
  background: linear-gradient(90deg, var(--th-color-warning) var(--percent), var(--th-color-border-strong) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.th-pdp__rating-link {
  color: var(--th-color-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--th-transition-default);
  font-weight: 500;
}
.th-pdp__rating-link:hover { color: var(--th-color-primary); text-decoration: underline; }

/* Rating Popup */
.th-pdp__rating-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: var(--th-z-modal);
  background: var(--th-color-bg);
  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;
}
.th-pdp__rating:hover .th-pdp__rating-popup,
.th-pdp__rating:focus-within .th-pdp__rating-popup,
.th-pdp__rating-popup.is-visible { display: block; }
.th-pdp__rpop-title { font-size: var(--th-text-md); font-weight: 700; color: var(--th-color-text); margin-bottom: var(--th-space-3); }
.th-pdp__rpop-title span { font-weight: 400; font-size: var(--th-text-sm); color: var(--th-color-text-muted); }
.th-pdp__rpop-row { display: flex; align-items: center; gap: var(--th-space-2); margin-bottom: 4px; }
.th-pdp__rpop-label { font-size: var(--th-text-xs); color: var(--th-color-text-muted); min-width: 32px; text-align: right; }
.th-pdp__rpop-bar { flex: 1; height: 6px; background: var(--th-color-bg-muted); border-radius: 3px; overflow: hidden; min-width: 100px; }
.th-pdp__rpop-bar span { display: block; height: 100%; background: var(--th-color-warning); border-radius: 3px; transition: width 0.3s ease; }
.th-pdp__rpop-count { font-size: var(--th-text-xs); color: var(--th-color-text-light); min-width: 20px; }
.th-pdp__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
   ═══════════════════════════════════════════════ */
.th-pdp__price-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--th-space-5, 20px);
  padding: var(--th-space-4) 0;
  margin-bottom: var(--th-space-2);
  border-bottom: 1px solid var(--th-color-border-light);
}

.th-pdp__price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--th-space-3, 12px);
  flex-wrap: wrap;
}

.th-pdp__price-main {
  display: flex;
  align-items: center;
  gap: var(--th-space-2, 8px);
  flex-wrap: wrap;
}

.th-pdp__price-discount {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--th-color-danger);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  padding: 3px 7px;
  border-radius: var(--th-radius-sm, 6px);
  min-width: 40px;
}

.th-pdp__price-discount small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.th-pdp__price-sub {
  display: flex;
  align-items: center;
  gap: var(--th-space-2, 8px);
  flex-wrap: wrap;
  margin-top: var(--th-space-1, 4px);
}

/* Price left column: old price + badge, big price, savings */
.th-pdp__price-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

/* Discount badge — Trendyol kırmızı pill */
.th-pdp__discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--th-color-error-hot);
  border-radius: 100px;
  flex-shrink: 0;
}

.th-pdp__discount-pct {
  font-size: 13px;
  font-weight: 800;
  color: var(--th-color-text-inverse);
  line-height: 1;
}

.th-pdp__discount-lbl {
  display: none;
}

.th-pdp__price-old-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.th-pdp__price-now {
  font-size: var(--th-text-3xl, 32px);
  font-weight: 800;
  color: var(--th-color-text);
  line-height: 1;
  letter-spacing: -0.5px;
}

.th-pdp__price-old {
  font-size: 13px;
  color: var(--th-color-text-light);
  text-decoration: line-through;
  white-space: nowrap;
}

.th-pdp__price-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;
}

/* Mobile */
@media (max-width: 767px) {
  .th-pdp__price-block {
    flex-direction: column;
    gap: 10px;
  }

  .th-pdp__price-right {
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    border-top: 1px solid var(--th-color-border-light);
    width: 100%;
  }

  .th-pdp__discount-badge {
    padding: 3px 8px;
  }

  .th-pdp__discount-pct {
    font-size: 12px;
  }

  .th-pdp__price-now {
    font-size: 28px;
  }
}

/* Price right column: taksit + havale (vertical divider) */
.th-pdp__price-right {
  display: flex;
  flex-direction: column;
  gap: var(--th-space-2, 8px);
  flex: 1;
  padding-left: var(--th-space-5, 20px);
  border-left: 1px solid var(--th-color-border-light);
}

/* Havale box — minimal dot + text */
.th-pdp__havale-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--th-color-success);
  font-weight: 500;
}
.th-pdp__havale-box i {
  font-size: 8px;
  color: var(--th-color-success);
}
.th-pdp__havale-box strong {
  color: var(--th-color-success);
  font-weight: 700;
}

.th-pdp__tipara {
  display: flex;
  align-items: flex-start;
  gap: var(--th-space-2, 8px);
  padding: var(--th-space-2, 8px) var(--th-space-3, 12px);
  background: color-mix(in srgb, var(--th-color-accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--th-color-accent) 20%, transparent);
  border-radius: var(--th-radius-md, 8px);
  margin-left: var(--th-space-3, 12px);
  min-width: 160px;
  max-width: 220px;
}

.th-pdp__tipara-coin {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.th-pdp__tipara-body {
  font-size: var(--th-text-xs, 11px);
  color: var(--th-color-text-default);
  line-height: 1.4;
}

.th-pdp__tipara-body strong {
  color: var(--th-color-accent);
  font-weight: 800;
  font-size: var(--th-text-sm, 13px);
}

.th-pdp__tipara-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  color: var(--th-color-text-muted);
  font-size: 11px;
  margin-top: 2px;
}

.th-pdp__tipara-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  width: 220px;
  background: var(--th-color-bg-primary);
  border: 1px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-md, 8px);
  padding: var(--th-space-2, 8px) var(--th-space-3, 12px);
  font-size: 11px;
  color: var(--th-color-text-default);
  box-shadow: var(--th-shadow-md);
  z-index: 10;
  line-height: 1.5;
}

.th-pdp__tipara-info:hover .th-pdp__tipara-tooltip { display: block; }

.th-pdp__tipara-tooltip-link {
  display: block;
  margin-top: var(--th-space-1, 4px);
  color: var(--th-color-primary);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 575px) {
  .th-pdp__tipara { max-width: 100%; margin-left: 0; margin-top: var(--th-space-2, 8px); }
}

/* Taksit line */
.th-pdp__taksit-line {
  display: flex;
  align-items: center;
  gap: var(--th-space-2, 8px);
  padding: var(--th-space-2, 8px) var(--th-space-3, 12px);
  background: var(--th-color-bg-secondary);
  border: 1px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-md, 8px);
  font-size: 13px;
  white-space: nowrap;
  color: var(--th-color-text-muted);
}
.th-pdp__taksit-line i { font-size: 14px; color: var(--th-color-success); }
.th-pdp__taksit-line strong { color: var(--th-color-text); font-weight: 600; }
.th-pdp__taksit-link {
  color: var(--th-color-primary);
  font-size: 11px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.th-pdp__taksit-link:hover { text-decoration: underline; }
.th-pdp__pesin-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--th-color-success);
  font-weight: 600;
}
.th-pdp__pesin-note i { font-size: 5px; }

/* Price update animation */
.th-pdp__price-block.th-pdp__price-flash .th-pdp__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) {
  .th-pdp__price-block.th-pdp__price-flash .th-pdp__price-now { animation: none; }
}

/* Price legal microcopy */
.th-pdp__price-legal {
  font-size: var(--th-text-xs);
  color: var(--th-color-text-muted);
  margin-top: var(--th-space-1);
}

/* Low stock indicator */
.th-pdp__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: var(--th-amber-100);
  color: var(--th-amber-800);
  font-size: var(--th-text-sm);
  font-weight: 500;
  border-radius: var(--th-radius-sm);
  border: 1px solid var(--th-amber-200);
}
.th-pdp__low-stock i { color: var(--th-color-warning-hover); font-size: 14px; }

/* ═══════════════════════════════════════════════
   PAYMENT METHODS — Premium Card List
   ═══════════════════════════════════════════════ */
.th-pdp__payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--th-space-4);
  border: 1px solid var(--th-color-border-light);
  border-radius: var(--th-radius-lg);
  overflow: hidden;
  background: var(--th-color-bg);
}
.th-pdp__pm-header {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--th-color-text-muted);
  background: var(--th-color-bg-soft);
  border-bottom: 1px solid var(--th-color-border-light);
  display: flex; align-items: center; gap: 6px;
}
.th-pdp__pm-header i { font-size: 10px; }
.th-pdp__pm-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--th-color-bg);
  border: none;
  border-bottom: 1px solid var(--th-color-border-light);
  text-align: left;
  cursor: pointer;
  transition: background .15s ease;
  position: relative;
  font: inherit;
  color: inherit;
  width: 100%;
}
.th-pdp__pm-card:last-child { border-bottom: none; }
.th-pdp__pm-card:hover { background: var(--th-color-bg-soft); }
.th-pdp__pm-card--best { background: var(--th-color-success-subtle); }
.th-pdp__pm-card--best:hover { background: var(--th-color-success-bg); }
.th-pdp__pm-icon {
  width: 38px; height: 38px; border-radius: var(--th-radius-md);
  background: var(--th-color-bg-soft); color: var(--th-color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.th-pdp__pm-card--best .th-pdp__pm-icon {
  background: var(--th-color-success-bg);
  color: var(--th-color-success-dark);
}
.th-pdp__pm-body { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.th-pdp__pm-body strong { font-size: 13px; font-weight: 600; color: var(--th-color-text); }
.th-pdp__pm-body small { font-size: 11px; color: var(--th-color-text-muted); }
.th-pdp__pm-card--best .th-pdp__pm-body strong { color: var(--th-color-success-dark); }
.th-pdp__pm-best-tag {
  font-size: 9px; font-weight: 700; color: var(--th-color-success-dark);
  background: var(--th-color-success-bg); border: 1px solid var(--th-color-success-border, #bbf7d0);
  padding: 2px 7px; border-radius: var(--th-radius-full);
  white-space: nowrap;
}
.th-pdp__pm-price {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--th-color-text);
  line-height: 1.2;
  margin-top: 1px;
}
.th-pdp__pm-note--warn { color: var(--th-color-warning); font-size: 11px; }
.th-pdp__pm-card--best .th-pdp__pm-price { color: var(--th-color-success-dark); }
.th-pdp__pm-card--disabled { opacity: .45; pointer-events: none; }

/* ═══════════════════════════════════════════════
   VARIANTS — Trendyol Elegant Style
   ═══════════════════════════════════════════════ */
.th-pdp__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);
}
.th-pdp__variant-group {}
.th-pdp__variant-group--color {}
.th-pdp__variant-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--th-color-text);
  margin-bottom: var(--th-space-2);
  letter-spacing: .3px;
}
.th-pdp__variant-selected {
  color: var(--th-color-text);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
.th-pdp__variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--th-space-2);
}

/* Variant chip */
.th-pdp__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;
}
.th-pdp__chip:hover:not([aria-disabled="true"]) {
  border-color: var(--th-pdp-variant-chip-hover);
  background: var(--th-pdp-variant-chip-selected-bg);
}
.th-pdp__chip:focus-visible {
  outline: 2px solid var(--th-color-primary);
  outline-offset: 2px;
}
.th-pdp__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;
}
.th-pdp__chip[aria-disabled="true"] {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}
.th-pdp__chip--color {
  padding: var(--th-space-2);
  min-width: 44px;
  border-radius: 50%;
  border: 2px solid transparent;
}
.th-pdp__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);
}
.th-pdp__chip--color:hover:not([aria-disabled="true"]) {
  transform: scale(1.1);
  background: transparent;
}
.th-pdp__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);
}
.th-pdp__chip--color[aria-checked="true"] .th-pdp__chip-dot {
  border-color: var(--th-pdp-variant-color-selected);
}
.th-pdp__chip-text { line-height: 1; }

/* Variant Gating highlight */
.th-pdp__variants.th-pdp__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) {
  .th-pdp__variants.th-pdp__variant-highlight { animation: none; }
}

/* ═══════════════════════════════════════════════
   SMART PURCHASE / BUNDLE
   ═══════════════════════════════════════════════ */
.th-pdp__qty-pack {
  margin-bottom: var(--th-space-5);
  margin-top: var(--th-space-2);
  border: 1px solid var(--th-color-border-muted);
  border-radius: var(--th-radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  background: var(--th-color-bg-secondary);
}
.th-pdp__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;
}
.th-pdp__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);
}
.th-pdp__qty-pack .bundle-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0 3px;
  background: var(--th-color-bg);
  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;
}
.th-pdp__qty-pack .bundle-option:hover {
  border-color: var(--th-color-primary);
  transform: translateY(-2px);
}
.th-pdp__qty-pack .bundle-option:active { transform: translateY(0); }
.th-pdp__qty-pack .bundle-option.active {
  border-color: var(--th-color-primary);
  background: var(--th-color-success-subtle);
  box-shadow: inset 0 0 0 1.5px var(--th-color-primary);
}
.th-pdp__qty-pack .bundle-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1px 8px;
  background: var(--th-color-warning);
  color: var(--th-color-text-inverse);
  font-size: 8px;
  font-weight: 600;
  border-radius: var(--th-radius-full);
  white-space: nowrap;
}
.th-pdp__qty-pack .bundle-option .qty {
  font-size: var(--th-text-sm);
  font-weight: 600;
  color: var(--th-color-text-secondary);
}
.th-pdp__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 */
.th-pdp__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: var(--th-color-bg);
  font-size: 12.5px;
}
.th-pdp__qty-pack .price-line { display: flex; align-items: baseline; gap: var(--th-space-2); }
.th-pdp__qty-pack .old-price { font-size: var(--th-text-sm); color: var(--th-color-text-muted); text-decoration: line-through; }
.th-pdp__qty-pack .new-price { font-size: var(--th-text-2xl); font-weight: 800; color: var(--th-color-text); }
.th-pdp__qty-pack .save-text { font-size: var(--th-text-xs); color: var(--th-color-success); font-weight: 600; }
.th-pdp__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 */
.th-pdp__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;
}
.th-pdp__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);
}
.th-pdp__qty-pack .qty-btn:hover { background: var(--th-color-bg-muted); color: var(--th-color-primary); }
.th-pdp__qty-pack .qty-number { min-width: 40px; text-align: center; }
.th-pdp__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;
}

.th-pdp__cart-hint {
  display: flex;
  align-items: center;
  gap: var(--th-space-2, 8px);
  font-size: var(--th-text-sm, 13px);
  font-weight: 600;
  color: var(--th-color-success);
  padding: var(--th-space-2, 8px) var(--th-space-3, 12px);
  background: color-mix(in srgb, var(--th-color-success) 8%, transparent);
  border-radius: var(--th-radius-md, 8px);
  margin-bottom: var(--th-space-3, 12px);
  min-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.th-pdp__cart-hint:empty { display: none; }

.th-pdp__cart-hint-icon {
  color: var(--th-color-accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   CTA ENGINE — Cart Buttons
   ═══════════════════════════════════════════════ */
.th-pdp__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 — compact pill */
.th-pdp__qty {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--th-space-3);
  border: 1.5px solid var(--th-color-border);
  border-radius: var(--th-radius-full);
  overflow: hidden;
  width: fit-content;
  background: var(--th-color-bg);
}
.th-pdp__qty-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 40px;
  background: transparent; border: none;
  font: inherit; font-size: 16px; font-weight: 600;
  color: var(--th-color-text); cursor: pointer;
  transition: var(--th-transition-default); user-select: none;
}
.th-pdp__qty-btn:hover { background: var(--th-color-bg-hover); }
.th-pdp__qty-btn:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: -2px; }
.th-pdp__qty-input {
  width: 44px; height: 40px; 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: 14px;
  font-weight: 600; color: var(--th-color-text); background: var(--th-color-bg);
  -moz-appearance: textfield;
}
.th-pdp__qty-input::-webkit-inner-spin-button,
.th-pdp__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Primary + Secondary CTA row */
.th-pdp__cart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.th-pdp__btn-buynow {
  flex: 1;
  padding: var(--th-space-3, 12px) var(--th-space-4, 16px);
  background: var(--th-color-bg-secondary);
  color: var(--th-color-text-default);
  border: 1px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-lg, 12px);
  font-size: var(--th-text-base, 15px);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--th-space-2, 8px);
}

.th-pdp__btn-buynow:hover {
  background: var(--th-color-bg-hover);
  transform: translateY(-1px);
}

.th-pdp__btn-buynow:active { transform: translateY(0); }

.th-pdp__btn-fav {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-lg, 12px);
  background: var(--th-color-bg-primary);
  color: var(--th-color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.th-pdp__btn-fav:hover,
.th-pdp__btn-fav.is-fav {
  color: var(--th-color-danger);
  border-color: var(--th-color-danger);
  background: color-mix(in srgb, var(--th-color-danger) 8%, transparent);
}

.th-pdp__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: var(--th-color-text-inverse);
  font-size: 15px;
  font-weight: 700;
  border: none; border-radius: var(--th-radius-full);
  cursor: pointer;
  transition: background var(--th-transition-default), transform var(--th-transition-default), box-shadow var(--th-transition-default);
  min-height: 52px;
  position: relative;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--th-color-accent) 30%, transparent);
}
.th-pdp__btn-cart:hover {
  background: var(--th-btn-accent-hover, #e06a0a);
  transform: translateY(-2px);
  box-shadow: var(--th-shadow-md);
}
.th-pdp__btn-cart:active { transform: translateY(0); }
.th-pdp__btn-cart:focus-visible { outline: 2px solid var(--th-color-text); outline-offset: 2px; }

/* Loading state */
.th-pdp__btn-cart.th-pdp__btn--loading .th-pdp__btn-label { visibility: hidden; }
.th-pdp__btn-cart.th-pdp__btn--loading .th-pdp__btn-spinner { display: block; }
.th-pdp__btn-spinner {
  display: none;
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: var(--th-neutral-0);
  border-radius: 50%;
  animation: pdp2Spin .6s linear infinite;
}
@keyframes pdp2Spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .th-pdp__btn-spinner { animation-duration: 1.5s; } }

/* Disabled state */
.th-pdp__btn-cart:disabled,
.th-pdp__btn-buy:disabled {
  opacity: .5; cursor: not-allowed; pointer-events: none;
}

/* Buy Now button */
.th-pdp__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: var(--th-color-text-inverse);
  font-size: 15px;
  font-weight: 700;
  border: none; border-radius: var(--th-radius-full);
  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;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--th-color-primary) 25%, transparent);
}
.th-pdp__btn-buy:hover {
  background: var(--th-btn-primary-hover, #0f4d2e);
  transform: translateY(-2px);
  box-shadow: var(--th-shadow-md);
}
.th-pdp__btn-buy:active { transform: translateY(0); }
.th-pdp__btn-buy:focus-visible { outline: 2px solid var(--th-color-text); outline-offset: 2px; }

/* WhatsApp button */
.th-pdp__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: var(--th-color-text-inverse);
  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);
}
.th-pdp__btn-wp:hover { background: var(--th-whatsapp-hover, #1ebe5d); color: var(--th-color-text-inverse); }
.th-pdp__btn-wp:focus-visible { outline: 2px solid var(--th-whatsapp-bg); outline-offset: 2px; }

/* Support row (WhatsApp + Soru Sor) */
.th-pdp__support-row {
  display: flex;
  gap: var(--th-space-2);
  margin-top: var(--th-space-2);
}
.th-pdp__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: var(--th-color-bg); color: var(--th-color-text);
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
  flex: 1; justify-content: center;
}
.th-pdp__btn-support:hover { background: var(--th-color-bg-soft); border-color: var(--th-color-text-muted); }
.th-pdp__btn-support:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }
.th-pdp__btn-support--wp { border-color: var(--th-whatsapp-bg); color: var(--th-whatsapp-bg); }
.th-pdp__btn-support--wp:hover { background: var(--th-whatsapp-bg, #25d366); color: var(--th-color-text-inverse); }
.th-pdp__btn-support--wp i { font-size: 18px; }
.th-pdp__btn-support--ask i { color: var(--th-color-primary); }

/* Delivery Microcopy */
.th-pdp__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);
}
.th-pdp__micro-item { display: flex; align-items: center; gap: 4px; }
.th-pdp__micro-item i { font-size: 12px; }
.th-pdp__micro-item--stock { color: var(--th-color-success); font-weight: 600; }

/* Out of Stock */
.th-pdp__oos { display: flex; flex-direction: column; gap: var(--th-space-3); }
.th-pdp__oos-msg {
  display: flex; align-items: center; gap: var(--th-space-2);
  padding: var(--th-space-3) var(--th-space-4);
  background: var(--th-color-danger-subtle); color: var(--th-color-danger);
  border: 1px solid var(--th-red-200); border-radius: var(--th-radius-md);
  font-size: var(--th-text-sm); font-weight: 600;
}
.th-pdp__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);
}
.th-pdp__btn-stock-alarm:hover { border-color: var(--th-color-primary); color: var(--th-color-primary); }
.th-pdp__btn-stock-alarm:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }

/* Toast */
.th-pdp__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: var(--th-color-text-inverse);
  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;
}
.th-pdp__toast[hidden] { display: flex; }
.th-pdp__toast.th-pdp__toast--visible {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.th-pdp__toast i { color: var(--th-color-success); font-size: 16px; flex-shrink: 0; }
.th-pdp__toast-link { color: var(--th-color-primary); font-weight: 700; text-decoration: none; margin-left: var(--th-space-1); }
.th-pdp__toast-link:hover { text-decoration: underline; }
.th-pdp__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;
}
.th-pdp__toast-close:hover { color: var(--th-color-text-inverse); }
@media (prefers-reduced-motion: reduce) { .th-pdp__toast { transition: none; } }

/* ═══════════════════════════════════════════════
   DELIVERY SECTION
   ═══════════════════════════════════════════════ */
.th-pdp__delivery {
  margin-bottom: var(--th-space-5);
}

.th-pdp__del-estimate {
  display: flex;
  flex-direction: column;
  gap: var(--th-space-1, 4px);
  margin-top: var(--th-space-2, 8px);
}

.th-pdp__del-estimate-text {
  font-size: var(--th-text-sm, 13px);
  color: var(--th-color-text-default);
}

.th-pdp__del-estimate-title {
  font-weight: 600;
  color: var(--th-color-text-muted);
  font-size: var(--th-text-xs, 11px);
  margin-bottom: 2px;
}

.th-pdp__del-estimate-date {
  font-weight: 700;
  color: var(--th-color-primary);
  font-size: var(--th-text-sm, 13px);
}

.th-pdp__del-carriers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--th-space-1, 4px) var(--th-space-2, 8px);
  margin-top: var(--th-space-2, 8px);
}

.th-pdp__del-carrier {
  font-size: 11px;
  color: var(--th-color-text-muted);
  padding: 1px 6px;
  border: 1px solid var(--th-color-border-subtle);
  border-radius: 99px;
}

.th-pdp__del-carrier.on {
  color: var(--th-color-primary);
  border-color: var(--th-color-primary);
  font-weight: 600;
}

/* Delivery bar */
.th-pdp__del-bar {
  width: 100%;
  background: var(--th-color-bg);
  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;
}
.th-pdp__del-bar .th-pdp__del-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);
}
.th-pdp__del-bar .th-pdp__del-text {
  color: var(--th-color-text); font-size: var(--th-text-sm); line-height: 1.25; font-weight: 600;
}
.th-pdp__del-bar .th-pdp__del-text strong { font-weight: 800; color: var(--th-pdp-delivery-icon); }
.th-pdp__del-bar .th-pdp__del-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;
}
.th-pdp__del-bar .th-pdp__del-countdown span { font-size: 18px; font-weight: 700; color: var(--th-color-text-muted); min-width: 22px; text-align: center; }
.th-pdp__del-bar .th-pdp__del-countdown em { font-style: normal; color: var(--th-color-text-light); font-weight: 800; }
.th-pdp__del-bar .th-pdp__del-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);
}
.th-pdp__del-bar .th-pdp__del-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);
}
.th-pdp__del-bar .th-pdp__del-meta i { color: var(--th-pdp-delivery-icon); }
.th-pdp__del-bar .th-pdp__del-meta strong { color: var(--th-color-text); font-weight: 700; }
.th-pdp__del-bar.alert { border-color: rgba(249, 115, 22, .45); box-shadow: 0 10px 28px rgba(249, 115, 22, .15); }
.th-pdp__del-bar.alert .delivery-countdown { border-color: rgba(249, 115, 22, .45); background: rgba(249, 115, 22, .08); }
.th-pdp__del-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) { .th-pdp__del-bar.pulse { animation: none; } }

/* Static delivery info */
.th-pdp__delivery-info {
  display: flex; flex-direction: column; gap: var(--th-space-2); margin-top: var(--th-space-3);
}
.th-pdp__delivery-info:empty { display: none; }
.th-pdp__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;
}
.th-pdp__del-row > i { font-size: 14px; color: var(--th-pdp-delivery-icon); flex-shrink: 0; margin-top: 2px; }
.th-pdp__del-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.th-pdp__del-body strong { font-size: var(--th-text-sm); font-weight: 700; color: var(--th-color-text); }
.th-pdp__del-body span { font-size: var(--th-text-xs); color: var(--th-color-text-muted); }

/* ═══════════════════════════════════════════════
   CAMPAIGNS — Gift + Coupon Cards
   ═══════════════════════════════════════════════ */
.th-pdp__campaigns {
  display: flex; flex-direction: column; gap: var(--th-space-3); margin-bottom: var(--th-space-5);
}
.th-pdp__campaign-item {
  display: flex; align-items: center; gap: var(--th-space-3);
  padding: var(--th-space-4);
  background: var(--th-color-bg-secondary);
  border: 1px solid var(--th-color-border-light, #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);
}
.th-pdp__campaign-item--coupon {
  background: var(--th-color-accent-bg);
  border-color: var(--th-color-accent-border);
}
.th-pdp__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: var(--th-color-text-inverse);
}
.th-pdp__campaign-ico--gift { background: var(--th-campaign-gift-bg, #16a34a); }
.th-pdp__campaign-ico--coupon { background: var(--th-color-primary); }
.th-pdp__campaign-ico--doc { background: var(--th-campaign-doc-bg, #2563eb); }
.th-pdp__campaign-body { flex: 1; line-height: 1.4; }
.th-pdp__campaign-body strong { display: block; font-size: var(--th-text-sm); color: var(--th-color-text); font-weight: 600; }
.th-pdp__campaign-body a { color: var(--th-color-primary); text-decoration: none; font-weight: 600; }
.th-pdp__campaign-body a:hover { text-decoration: underline; }
.th-pdp__coupon-btn {
  padding: var(--th-space-2) var(--th-space-4);
  background: var(--th-color-primary); color: var(--th-color-text-inverse);
  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);
}
.th-pdp__coupon-btn:hover { background: var(--th-color-primary-hover); transform: translateY(-1px); }
.th-pdp__coupon-btn.th-pdp__coupon-copied { background: var(--th-color-success) !important; color: var(--th-color-text-inverse) !important; pointer-events: none; }

/* ═══════════════════════════════════════════════
   TRUST STRIP — 4-Column Grid
   ═══════════════════════════════════════════════ */
.th-pdp__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);
}
.th-pdp__trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--th-space-2); text-align: center;
  transition: transform var(--th-transition-default);
}
.th-pdp__trust-item:hover { transform: translateY(-2px); }
.th-pdp__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;
}
.th-pdp__trust-ico--wp { color: var(--th-whatsapp-bg); }
.th-pdp__trust-body {
  display: flex; flex-direction: column; gap: 1px; min-width: 0;
}
.th-pdp__trust-body strong { font-size: var(--th-text-xs); font-weight: 600; color: var(--th-color-text); }
.th-pdp__trust-body span { font-size: var(--th-text-xs); color: var(--th-color-text-muted); line-height: 1.3; }

/* Proof Row (ETBİS / KVKK) */
.th-pdp__proof {
  display: flex; align-items: center; gap: var(--th-space-3);
  margin-bottom: var(--th-space-4); flex-wrap: wrap;
}
.th-pdp__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);
}
.th-pdp__proof-badge:hover { color: var(--th-color-primary); border-color: var(--th-color-primary); }
.th-pdp__proof-badge i { font-size: 11px; }

/* ═══════════════════════════════════════════════
   PRODUCT HIGHLIGHTS
   ═══════════════════════════════════════════════ */
.th-pdp__highlights {
  margin-bottom: var(--th-space-5);
  contain: layout;
}
.th-pdp__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);
}
.th-pdp__highlights-item { display: flex; align-items: flex-start; gap: var(--th-space-2); line-height: 1.3; min-width: 0; }
.th-pdp__highlights-ico { color: var(--th-color-success); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.th-pdp__highlights-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.th-pdp__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; }
.th-pdp__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
   ═══════════════════════════════════════════════ */
.th-pdp__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;
}
.th-pdp__desc-section { border-bottom: 1px solid var(--th-color-border-light); }
.th-pdp__desc-section:last-child { border-bottom: none; }
.th-pdp__desc-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--th-space-4) var(--th-space-5);
  background: var(--th-color-bg); 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;
}
.th-pdp__desc-header:hover { background: var(--th-color-bg-soft); }
.th-pdp__desc-header:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: -2px; }
.th-pdp__desc-header-text { display: flex; align-items: center; gap: var(--th-space-2); }
.th-pdp__desc-header-text i { font-size: var(--th-text-base); color: var(--th-pdp-tab-text-active); }
.th-pdp__desc-arrow {
  font-size: 12px; color: var(--th-color-text-muted);
  transition: transform .25s ease; flex-shrink: 0;
}
.th-pdp__desc-section--open > .th-pdp__desc-header .th-pdp__desc-arrow { transform: rotate(180deg); }
.th-pdp__desc-panel { padding: 0 var(--th-space-5) var(--th-space-5); overflow: hidden; }
.th-pdp__desc-panel[hidden] { display: none; }
.th-pdp__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; }
.th-pdp__desc-content img { max-width: 100%; height: auto; border-radius: var(--th-radius-sm); }
.th-pdp__desc-content table { width: 100%; border-collapse: collapse; }
.th-pdp__desc-content table td,
.th-pdp__desc-content table th { padding: var(--th-space-2) var(--th-space-3); border: 1px solid var(--th-color-border-light); }

/* Spec table */
.th-pdp__spec-table { width: 100%; border-collapse: collapse; font-size: var(--th-text-sm); }
.th-pdp__spec-table th,
.th-pdp__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; }
.th-pdp__spec-table th { width: 40%; font-weight: 600; color: var(--th-color-text-muted); background: var(--th-color-bg-soft); }
.th-pdp__spec-table td { color: var(--th-color-text); }
.th-pdp__spec-table td a { color: var(--th-color-text); text-decoration: none; }
.th-pdp__spec-table td a:hover { color: var(--th-color-primary); }
.th-pdp__spec-table tr:last-child th,
.th-pdp__spec-table tr:last-child td { border-bottom: none; }

/* Returns list */
.th-pdp__returns-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--th-space-3); }
.th-pdp__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; }
.th-pdp__returns-list li i { color: var(--th-color-success); margin-top: 3px; flex-shrink: 0; font-size: 12px; }
.th-pdp__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; }
.th-pdp__returns-link:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) { .th-pdp__desc-arrow { transition: none; } }

/* ═══════════════════════════════════════════════
   STICKY BUY BAR
   ═══════════════════════════════════════════════ */
.th-pdp__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);
}
.th-pdp__sticky-cta.visible { transform: translateY(0); }

.th-pdp__toast-notif {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: var(--th-space-3, 12px);
  background: var(--th-color-bg-primary);
  border: 1px solid var(--th-color-border-subtle);
  border-radius: var(--th-radius-lg, 12px);
  box-shadow: var(--th-shadow-lg);
  padding: var(--th-space-3, 12px) var(--th-space-4, 16px);
  min-width: 260px;
  max-width: 360px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.th-pdp__toast-notif--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.th-pdp__tn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--th-color-accent) 12%, transparent);
  color: var(--th-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.th-pdp__tn-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.th-pdp__tn-title {
  font-size: var(--th-text-sm, 13px);
  font-weight: 700;
  color: var(--th-color-text-default);
}

.th-pdp__tn-text {
  font-size: var(--th-text-xs, 11px);
  color: var(--th-color-text-muted);
  line-height: 1.4;
}

.th-pdp__tn-close {
  background: none;
  border: none;
  color: var(--th-color-text-muted);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.th-pdp__sticky-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; gap: var(--th-space-6);
}
.th-pdp__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;
}
.th-pdp__sticky-info { flex: 1; min-width: 0; }
.th-pdp__sticky-name {
  font-size: 14px; font-weight: 600; color: var(--th-color-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.th-pdp__sticky-brand { font-weight: 700; color: var(--th-color-primary); margin-right: 4px; }
.th-pdp__sticky-prices { display: flex; align-items: center; gap: var(--th-space-2); }
.th-pdp__sticky-price { font-size: 22px; font-weight: 700; color: var(--th-color-text); }
.th-pdp__sticky-old { font-size: var(--th-text-sm); color: var(--th-color-text-muted); text-decoration: line-through; }
.th-pdp__sticky-btn {
  padding: 12px 32px;
  background: var(--th-color-primary); color: var(--th-color-text-inverse);
  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);
}
.th-pdp__sticky-btn:hover {
  background: var(--th-color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--th-shadow-md);
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.th-pdp__faq { margin-top: 16px; }
.th-pdp__faq-title { font-size: 14px; font-weight: 700; color: var(--th-color-text); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.th-pdp__faq-title i { color: var(--th-color-primary); font-size: 16px; }
.th-pdp__faq-item { border: 1px solid var(--th-color-border-light); border-radius: 10px; margin-bottom: 6px; overflow: hidden; transition: box-shadow 0.2s; }
.th-pdp__faq-item[open] { box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-color: var(--th-color-border); }
.th-pdp__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; }
.th-pdp__faq-q:hover { background: var(--th-color-bg-soft); }
.th-pdp__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; }
.th-pdp__faq-item[open] .th-pdp__faq-q::after { transform: rotate(180deg); }
.th-pdp__faq-q::-webkit-details-marker { display: none; }
.th-pdp__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: var(--th-color-text-inverse); }
.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: var(--th-color-text-inverse); 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: var(--th-color-primary-hover); 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; }
.th-pdp__qv-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; }
.th-pdp__qv-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
   ═══════════════════════════════════════════════ */
.th-pdp__bundle { margin-top: var(--th-space-6); border: 1px solid var(--th-color-border-light); border-radius: var(--th-radius-md); overflow: hidden; background: var(--th-color-bg); contain: layout; }
.th-pdp__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); }
.th-pdp__bundle-header i { color: var(--th-color-primary); font-size: var(--th-text-md); }
.th-pdp__bundle-list { display: flex; flex-direction: column; }
.th-pdp__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); }
.th-pdp__bundle-card:last-child { border-bottom: none; }
.th-pdp__bundle-card:hover { background: var(--th-color-bg-soft); }
.th-pdp__bundle-card--main { background: var(--th-color-accent-subtle); cursor: default; }
.th-pdp__bundle-check { flex-shrink: 0; }
.th-pdp__bundle-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--th-color-primary); cursor: pointer; }
.th-pdp__bundle-check input[disabled] { cursor: default; opacity: .6; }
.th-pdp__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); }
.th-pdp__bundle-img img { width: 100%; height: 100%; object-fit: cover; }
.th-pdp__bundle-badge { position: absolute; top: 2px; left: 2px; padding: 1px 4px; background: var(--th-color-danger); color: var(--th-color-text-inverse); font-size: 10px; font-weight: 700; border-radius: 3px; line-height: 1.3; }
.th-pdp__bundle-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.th-pdp__bundle-tag { display: inline-block; padding: 1px 6px; background: var(--th-color-primary); color: var(--th-color-text-inverse); font-size: 10px; font-weight: 700; border-radius: 3px; width: fit-content; line-height: 1.4; }
.th-pdp__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; }
.th-pdp__bundle-link { text-decoration: none; }
.th-pdp__bundle-link:hover { color: var(--th-color-primary); text-decoration: underline; }
.th-pdp__bundle-prices { display: flex; align-items: center; gap: var(--th-space-2); }
.th-pdp__bundle-price { font-size: var(--th-text-sm); font-weight: 700; color: var(--th-color-primary); }
.th-pdp__bundle-old { font-size: var(--th-text-xs); color: var(--th-color-text-muted); text-decoration: line-through; }
.th-pdp__bundle-card.th-pdp__bundle--unchecked { opacity: .5; }
.th-pdp__bundle-card.th-pdp__bundle--unchecked .th-pdp__bundle-img { filter: grayscale(.6); }
.th-pdp__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); }
.th-pdp__bundle-total { display: flex; flex-direction: column; gap: 2px; }
.th-pdp__bundle-total-label { font-size: var(--th-text-xs); color: var(--th-color-text-muted); }
.th-pdp__bundle-total-price { font-size: var(--th-text-lg); color: var(--th-color-text); }
.th-pdp__bundle-total-count { font-size: var(--th-text-xs); color: var(--th-color-text-muted); }
.th-pdp__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: var(--th-color-text-inverse); 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; }
.th-pdp__bundle-add:hover { background: var(--th-color-primary-hover); }
.th-pdp__bundle-add:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }
.th-pdp__bundle-add:disabled { opacity: .5; cursor: not-allowed; }

/* Fav button */
.th-pdp__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); }
.th-pdp__fav-btn:hover { transform: scale(1.1); color: var(--th-color-danger); }
.th-pdp__fav-btn:focus-visible { outline: 2px solid var(--th-color-primary); outline-offset: 2px; }
.th-pdp__fav-btn--active { color: var(--th-color-danger); }
@keyframes th-pdp__heart-pop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
.th-pdp__fav-btn--pop { animation: th-pdp__heart-pop .4s ease; }

/* Recently Viewed */
.th-pdp__recently {  margin: var(--th-space-8) auto var(--th-space-4); padding: 0 var(--th-space-4); }
.th-pdp__recently .th-recently-viewed__title { font-size: var(--th-text-lg); font-weight: 600; margin-bottom: var(--th-space-4); color: var(--th-color-text); }
.th-pdp__recently .th-recently-viewed__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); }
.th-pdp__recently .th-recently-viewed__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; }
.th-pdp__recently .th-recently-viewed__item:hover { box-shadow: var(--th-shadow-md); }
.th-pdp__recently .th-recently-viewed__item img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }
.th-pdp__recently .th-recently-viewed__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; }
.th-pdp__recently .th-recently-viewed__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) {
  .th-pdp__hero {
    grid-template-columns: 1fr;
    gap: var(--th-space-4);
    padding: var(--th-space-4);
    border-radius: var(--th-radius-md);
  }
  .th-pdp__gallery {
    position: relative;
    top: 0;
    align-self: auto;
  }
  .th-pdp__gallery-figure {
    flex-direction: column;
  }
  .th-pdp__thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    width: 100%;
    scrollbar-width: none;
  }
  .th-pdp__thumbs::-webkit-scrollbar { display: none; }
  .th-pdp__thumb { width: 56px; height: 72px; }
  .th-pdp__gallery-counter { display: flex; }
  .th-pdp__payment-methods { grid-template-columns: repeat(2, 1fr); }
  .th-pdp__trust { grid-template-columns: repeat(2, 1fr); }
  .th-pdp__qty-pack .bundle-options { grid-template-columns: repeat(2, 1fr); }

  /* Price stacked on tablet */
  .th-pdp__price-block { flex-direction: column; gap: 10px; }
  .th-pdp__price-right { padding-left: 0; border-left: none; padding-top: 12px; border-top: 1px solid var(--th-color-border-light); width: 100%; }

  /* Sticky bar mobile */
  .th-pdp__sticky-cta { height: 64px; padding: 0; }
  .th-pdp__sticky-inner { height: 100%; padding: 0 var(--th-space-3); gap: var(--th-space-3); }
  .th-pdp__sticky-img { display: none; }
  .th-pdp__sticky-name { display: none; }
  .th-pdp__sticky-price { font-size: var(--th-text-lg); font-weight: 800; color: var(--th-color-primary); }
  .th-pdp__sticky-old { font-size: var(--th-text-xs); }
  .th-pdp__sticky-btn { padding: var(--th-space-3) var(--th-space-6); font-size: var(--th-text-base); min-height: 44px; }
  .th-pdp__root { padding-bottom: 80px; }
  .th-pdp__toast { bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
  .th-pdp__qty-btn { width: 44px; height: 44px; }
  .th-pdp__qty-input { width: 48px; height: 44px; }

  /* Mobile flow reorder */
  .th-pdp__info { display: flex; flex-direction: column; }
  .th-pdp__badge-strip   { order: -1; }
  .th-pdp__breadcrumb-row{ order: 0; }
  .th-pdp__title         { order: 1; }
  .th-pdp__meta-row      { order: 2; }
  .th-pdp__stats         { order: 3; }
  .th-pdp__tagline       { order: 4; display: none; }
  .th-pdp__price-block   { order: 5; }
  .th-pdp__sp-ticker     { order: 6; }
  .th-pdp__low-stock     { order: 7; }
  .th-pdp__payment-methods { order: 8; }
  .th-pdp__variants      { order: 9; }
  .variant-box        { order: 9; }
  .th-pdp__qty-pack      { order: 10; }
  .th-pdp__cta           { order: 11; }
  .th-pdp__delivery      { order: 12; }
  .th-pdp__trust         { order: 13; }
  .th-pdp__highlights    { order: 14; }
  .th-pdp__campaigns     { order: 15; }
  .th-pdp__info > [class*="special_fields"] { order: 16; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (<=991px) — grid collapse
   ═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .th-pdp__hero {
    grid-template-columns: 1fr;
    gap: var(--th-space-4);
    padding: var(--th-space-4);
  }
  .th-pdp__gallery { max-width: 100%; overflow: hidden; position: static; align-self: auto; }
  .th-pdp__gallery-figure { flex-direction: column; }
  .th-pdp__thumbs { flex-direction: row; overflow-x: auto; overflow-y: hidden; max-height: none; width: 100%; scrollbar-width: none; }
  .th-pdp__thumbs::-webkit-scrollbar { display: none; }
  .th-pdp__info { max-width: 100%; overflow: hidden; }
  .th-pdp__cart-row { grid-template-columns: 1fr 1fr; }
  .th-pdp__trust { grid-template-columns: repeat(2, 1fr); }
  .th-pdp__payment-methods { border-radius: var(--th-radius-md); }
  .th-pdp__qty-pack .bundle-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .th-pdp__root { padding: var(--th-space-3); }
  .th-pdp__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 */
  .th-pdp__gallery { margin: 0 calc(-1 * var(--th-space-3)); border-radius: 0; position: relative; top: 0; }
  .th-pdp__gallery-figure { flex-direction: column; gap: 8px; }
  .th-pdp__thumbs { flex-direction: row; overflow-x: auto; overflow-y: hidden; max-height: none; width: 100%; gap: 6px; margin: 0 var(--th-space-3); padding-bottom: 2px; scrollbar-width: none; }
  .th-pdp__thumbs::-webkit-scrollbar { display: none; }
  .th-pdp__thumb { width: 52px; height: 68px; }
  .th-pdp__carousel { border-radius: 0; }
  .th-pdp__carousel .carousel-inner { border-radius: 0; }
  .th-pdp__carousel .pp-main-img { border-radius: 0; }
  .th-pdp__carousel .pp-image-link:hover .pp-main-img { transform: none; }
  .th-pdp__gallery-prev,
  .th-pdp__gallery-next { opacity: .8; width: 36px; height: 36px; font-size: 12px; }

  /* Gallery actions/badges compact */
  .th-pdp__gallery-actions a,
  .th-pdp__gallery-actions button { width: 32px; height: 32px; font-size: 13px; }
  .th-pdp__gbadge { font-size: 10px; padding: 4px 8px; }

  /* Badge strip: horizontal scroll on mobile */
  .th-pdp__badge-strip { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .th-pdp__badge-strip::-webkit-scrollbar { display: none; }
  .th-pdp__bs { flex-shrink: 0; }

  /* SP ticker — dikey, mobilde aynı davranış */
  .th-pdp__spt-sep { display: none; }

  /* Info panel spacing */
  .th-pdp__info { gap: 0; }

  /* Breadcrumb */
  .th-pdp__breadcrumb-row { gap: var(--th-space-1); }
  .th-pdp__breadcrumb ol { flex-wrap: nowrap; overflow: hidden; }
  .th-pdp__breadcrumb a { max-width: 80px; }
  .th-pdp__breadcrumb li:last-child a,
  .th-pdp__breadcrumb li:last-child span { max-width: 180px; }
  .th-pdp__copy-link span { display: none; }
  .th-pdp__copy-link { padding: 4px 8px; }

  /* Title & Brand */
  .th-pdp__title { font-size: 16px; max-width: none; }
  .th-pdp__brand-row {
    gap: var(--th-space-2);
    flex-wrap: wrap;
    margin-bottom: var(--th-space-3);
    overflow: hidden;
  }
  .th-pdp__sku {
    flex-wrap: wrap;
    gap: 3px;
    max-width: 100%;
    overflow: hidden;
    font-size: 10px;
  }
  .th-pdp__sku-value { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
  .th-pdp__badges {
    gap: 3px;
    margin-bottom: var(--th-space-3);
    margin-top: var(--th-space-1);
    row-gap: 4px;
  }
  .th-pdp__badge { font-size: 9px; padding: 2px 6px; }

  /* Stats */
  .th-pdp__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);
  }
  .th-pdp__stats-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    width: 100%;
  }
  .th-pdp__stats-btn {
    padding: 5px 8px;
    font-size: 12px;
    min-height: 36px;
    min-width: unset;
    flex: 0 0 auto;
  }
  .th-pdp__sp-item { font-size: 12px; }
  /* Viewer satırı tam genişlik */
  .th-pdp__viewers {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--th-space-1);
  }
  .th-pdp__rating-score { font-size: var(--th-text-sm); }
  .th-pdp__stars { font-size: 12px; }
  .th-pdp__rating-link { font-size: var(--th-text-xs); }
  .th-pdp__rating-popup { left: -8px; min-width: 220px; padding: var(--th-space-3); }

  /* Price mobile */
  .th-pdp__price-now { font-size: 26px; }
  .th-pdp__discount-badge { padding: 3px 8px; }
  .th-pdp__discount-pct { font-size: 12px; }

  /* Fiyat bloğu mobil tam düzen */
  .th-pdp__price-block {
    flex-direction: column;
    gap: 8px;
  }
  .th-pdp__price-right {
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    border-top: 1px solid var(--th-color-border-light);
    width: 100%;
  }
  .th-pdp__taksit-line {
    width: 100%;
    justify-content: flex-start;
  }

  /* Payment mobile */
  .th-pdp__payment-methods { border-radius: var(--th-radius-md); }
  .th-pdp__pm-icon { width: 32px; height: 32px; font-size: 14px; }
  .th-pdp__pm-card { padding: 10px 12px; gap: 10px; }
  .th-pdp__pm-body strong { font-size: 12px; }
  .th-pdp__pm-price { font-size: 13px; }

  /* Trust 2x2 */
  .th-pdp__trust { grid-template-columns: 1fr 1fr; padding: var(--th-space-3); }
  .th-pdp__trust-body strong { font-size: var(--th-text-xs); }
  .th-pdp__trust-body span { font-size: 10px; }

  /* Highlights 2-col */
  .th-pdp__highlights-list { grid-template-columns: repeat(2, 1fr); padding: var(--th-space-3); gap: var(--th-space-2); }

  /* CTA container tam genişlik */
  .th-pdp__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ı */
  .th-pdp__qty {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--th-space-3);
    border-radius: var(--th-radius-md);
  }
  .th-pdp__qty-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    flex-shrink: 0;
  }
  .th-pdp__qty-input {
    flex: 1;
    width: auto;
    height: 48px;
    font-size: var(--th-text-base);
  }

  /* Cart buttons */
  .th-pdp__cart-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--th-space-2);
    width: 100%;
  }
  .th-pdp__btn-cart,
  .th-pdp__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);
  }
  .th-pdp__btn-cart i,
  .th-pdp__btn-buy i {
    font-size: 14px;
    flex-shrink: 0;
  }
  /* Whatsapp butonu tam genişlik */
  .th-pdp__btn-wp {
    width: 100%;
    margin-top: var(--th-space-2);
    grid-column: 1 / -1;
  }

  /* Variant chips scroll */
  .th-pdp__variant-chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .th-pdp__variant-chips::-webkit-scrollbar { display: none; }
  .th-pdp__chip { flex-shrink: 0; min-height: 44px; padding: var(--th-space-2) var(--th-space-3); }

  /* Topbar scroll */
  .th-pdp__topbar { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
  .th-pdp__topbar::-webkit-scrollbar { display: none; }
  .th-pdp__topbadge { flex-shrink: 0; }

  /* Bundle 2x2 */
  .th-pdp__qty-pack .bundle-options {
    grid-template-columns: 1fr 1fr;
    gap: var(--th-space-2);
    padding: 0 var(--th-space-2) var(--th-space-2);
  }
  .th-pdp__qty-pack .bundle-summary {
    flex-direction: column;
    gap: var(--th-space-2);
    text-align: left;
    padding: var(--th-space-2) var(--th-space-3);
  }
  .th-pdp__qty-pack .bundle-summary .summary-right {
    align-self: flex-end;
  }
  .th-pdp__qty-pack {
    margin-bottom: var(--th-space-4);
    overflow: hidden;
  }

  /* Campaigns compact */
  .th-pdp__campaign-item { padding: var(--th-space-3); font-size: var(--th-text-xs); }
  .th-pdp__campaign-ico { width: 36px; height: 36px; font-size: 16px; }

  /* Delivery compact */
  .th-pdp__del-bar .th-pdp__del-main { flex-direction: column; gap: 8px; padding: var(--th-space-3); }
  .th-pdp__del-bar .th-pdp__del-countdown { align-self: flex-start; padding: 8px 10px; border-radius: var(--th-radius-sm); }
  .th-pdp__del-bar .th-pdp__del-countdown span { font-size: 15px; min-width: 18px; }
  .th-pdp__del-bar .th-pdp__del-meta { flex-direction: column; gap: var(--th-space-2); }

  /* Accordion */
  .th-pdp__desc-header { padding: var(--th-space-3) var(--th-space-4); font-size: var(--th-text-base); min-height: 48px; }
  .th-pdp__desc-panel { padding: 0 var(--th-space-4) var(--th-space-4); }
  .th-pdp__spec-table th { width: 45%; font-size: var(--th-text-xs); padding: var(--th-space-2) var(--th-space-3); }
  .th-pdp__spec-table td { font-size: var(--th-text-xs); padding: var(--th-space-2) var(--th-space-3); }

  /* Support row */
  .th-pdp__support-row { flex-direction: column; }
  .th-pdp__recently .th-recently-viewed__item { flex: 0 0 120px; }
  .th-pdp__fav-btn { width: 36px; height: 36px; font-size: 16px; }

  /* Cross-sell bundle mobile */
  .th-pdp__bundle-card { gap: var(--th-space-2); padding: var(--th-space-2) var(--th-space-3); }
  .th-pdp__bundle-img { width: 52px; height: 52px; }
  .th-pdp__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ı */
  .th-pdp__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);
  }
  .th-pdp__wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--th-whatsapp-bg);
    font-size: var(--th-text-sm);
    font-weight: 600;
    text-decoration: none;
  }
  .th-pdp__wa-link i {
    font-size: 16px;
  }

  /* Mikro bilgi (Hızlı Teslimat / Ücretsiz Kargo) */
  .th-pdp__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);
  }
  .th-pdp__micro-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }
  .th-pdp__micro-item i {
    font-size: 11px;
    color: var(--th-color-primary);
  }

  /* Sticky bar mobile */
  .th-pdp__sticky-cta.visible { padding-bottom: calc(var(--th-space-2) + env(safe-area-inset-bottom, 0px)); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤500px)
   ═══════════════════════════════════════════════ */
@media (max-width: 500px) {
  .th-pdp__root { padding: var(--th-space-2) var(--th-space-3) 80px; }
  .th-pdp__title { font-size: 15px; -webkit-line-clamp: 2; }
  .th-pdp__price-now { font-size: 24px; }
  .th-pdp__cart-row { grid-template-columns: 1fr; gap: 6px; }
  .th-pdp__btn-cart, .th-pdp__btn-buy { min-height: 48px; }

  /* Breadcrumb tighter */
  .th-pdp__breadcrumb ol { font-size: 10px; }
  .th-pdp__breadcrumb a { max-width: 80px; }
  .th-pdp__breadcrumb li + li::before { margin: 0 4px; }

  /* Badges smaller */
  .th-pdp__badge { font-size: 8px; padding: 2px 5px; }
  .th-pdp__badge i { font-size: 8px; }

  /* Stats compact */
  .th-pdp__stats { gap: var(--th-space-1); }
  .th-pdp__stats-actions { gap: 0; }

  /* Payment tighter */
  .th-pdp__pm-icon { width: 28px; height: 28px; font-size: 12px; }
  .th-pdp__pm-body strong { font-size: 11px; }
  .th-pdp__pm-best-tag { font-size: 8px; padding: 1px 5px; }

  /* Bundle compact */
  .th-pdp__qty-pack .bundle-option { padding: var(--th-space-2); min-height: 56px; }
  .th-pdp__qty-pack .bundle-badge { font-size: 8px; top: -6px; }

  /* CTA buttons smaller */
  .th-pdp__btn-cart,
  .th-pdp__btn-buy {
    font-size: 13px;
    min-height: 48px;
    padding: var(--th-space-2) var(--th-space-1);
  }
  .th-pdp__delivery-micro {
    font-size: 11px;
    gap: var(--th-space-1) var(--th-space-2);
  }

  /* Sticky bar */
  .th-pdp__sticky-cta { height: 56px; }
  .th-pdp__sticky-btn { padding: var(--th-space-2) var(--th-space-4); font-size: var(--th-text-sm); min-height: 40px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — VERY SMALL MOBILE (≤400px)
   ═══════════════════════════════════════════════ */
@media (max-width: 400px) {
  .th-pdp__hero { padding: 8px; }
  .th-pdp__thumb { width: 46px; height: 60px; }
  .th-pdp__price-now { font-size: 24px; }
  .th-pdp__cart-row { grid-template-columns: 1fr; gap: 6px; }
  .th-pdp__btn-cart, .th-pdp__btn-buy { min-height: 48px; }
}

/* ═══════════════════════════════════════════════
   CLS SAFETY
   ═══════════════════════════════════════════════ */
.th-pdp__payment-methods { min-height: 60px; }
.th-pdp__trust { min-height: 64px; }
.th-pdp__cta { min-height: 52px; }
.th-pdp__sticky-cta { contain: layout; }

@media (max-width: 1024px) {
  .th-pdp__payment-methods { min-height: 80px; }
  .th-pdp__trust { min-height: 120px; }
  .th-pdp__highlights { min-height: 80px; }
  .th-pdp__delivery { min-height: 48px; }
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .th-pdp__fav-btn { transition: none; }
  .th-pdp__fav-btn--pop { animation: none; }
  .th-pdp__btn-support { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 22 — PDP LIGHTBOX
   Full-screen image gallery with zoom, swipe, keyboard nav
   ═══════════════════════════════════════════════════════════════════ */

.th-pdp__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;
}
.th-pdp__lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.th-pdp__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;
}
.th-pdp__lightbox__counter {
  font-size: var(--th-text-sm, 14px);
  color: rgba(255, 255, 255, .8);
  font-weight: var(--th-font-medium, 500);
}
.th-pdp__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: var(--th-color-text-inverse);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease;
}
.th-pdp__lightbox__close:hover {
  background: rgba(255, 255, 255, .3);
}
.th-pdp__lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  touch-action: pinch-zoom;
}
.th-pdp__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;
}
.th-pdp__lightbox__img.is-zoomed {
  cursor: zoom-out;
  transform: scale(2);
}
.th-pdp__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: var(--th-color-text-inverse);
  font-size: 20px;
  cursor: pointer;
  transition: background .2s ease;
  z-index: 2;
}
.th-pdp__lightbox__nav:hover { background: rgba(255, 255, 255, .3); }
.th-pdp__lightbox__nav--prev { left: 16px; }
.th-pdp__lightbox__nav--next { right: 16px; }
.th-pdp__lightbox__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 24px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100vw;
}
.th-pdp__lightbox__thumbs::-webkit-scrollbar { display: none; }
.th-pdp__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;
}
.th-pdp__lightbox__thumb.is-active {
  border-color: var(--th-neutral-0);
  opacity: 1;
}
.th-pdp__lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .th-pdp__lightbox__nav { width: 36px; height: 36px; font-size: 16px; }
  .th-pdp__lightbox__nav--prev { left: 8px; }
  .th-pdp__lightbox__nav--next { right: 8px; }
  .th-pdp__lightbox__thumbs { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 23 — PDP BOTTOM SHEET (Mobile)
   Taksit, ölçü rehberi, soru-cevap için bottom sheet
   ═══════════════════════════════════════════════════════════════════ */

.th-pdp__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;
}
.th-pdp__bottom-sheet-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
.th-pdp__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);
}
.th-pdp__bottom-sheet.is-open {
  transform: translateY(0);
}
.th-pdp__bottom-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--th-neutral-300);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}
.th-pdp__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;
}
.th-pdp__bottom-sheet__title {
  font-size: var(--th-text-lg, 18px);
  font-weight: var(--th-font-bold, 700);
  color: var(--th-color-text);
  margin: 0;
}
.th-pdp__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;
}
.th-pdp__bottom-sheet__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
  .th-pdp__bottom-sheet,
  .th-pdp__bottom-sheet-backdrop { display: none !important; }
}

/* ── Toast Enhancements ── */
.th-pdp__toast--fav { background: var(--th-color-primary); }
.th-pdp__toast--copy { background: var(--th-neutral-700); }
.th-pdp__toast--warn { background: var(--th-color-warning, #f59e0b); }

/* Copy toast */
.th-pdp__copy-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--th-color-text);
  color: var(--th-color-text-inverse);
  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;
}
.th-pdp__copy-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Gallery: desktop left-thumb layout already set in base rules */

/* Bookmark / Collection button */
.th-pdp__action-bookmark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--th-color-bg);
  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;
}
.th-pdp__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 */
.th-pdp__cart-row:has(.th-pdp__btn-cart:only-child) {
  grid-template-columns: 1fr;
}

/* WhatsApp minimal link */
.th-pdp__wa-row {
  text-align: center;
  margin-top: var(--th-space-2);
}
.th-pdp__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);
}
.th-pdp__wa-link:hover {
  color: var(--th-color-success, #25d366);
}
.th-pdp__wa-link i {
  font-size: 14px;
}

/* Social Proof */
.th-pdp__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;
}
.th-pdp__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); }
}

.th-pdp__social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--th-space-3);
  margin-bottom: var(--th-space-3);
}
.th-pdp__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);
}
.th-pdp__sp-item i {
  font-size: 11px;
}
.th-pdp__sp-item--sale i {
  color: var(--th-color-warning);
}
.th-pdp__sp-item--weekly i {
  color: var(--th-color-primary);
}
.th-pdp__sp-item--fav i {
  color: var(--th-color-danger, #ef4444);
}

/* Social toast (bottom-right) */
.th-pdp__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: var(--th-color-bg);
  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;
}
.th-pdp__social-toast--show {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.th-pdp__social-toast i {
  color: var(--th-color-success);
  font-size: 16px;
}

/* Extra badge variants */
.th-pdp__badge--info { background: var(--th-color-bg-soft); color: var(--th-color-text-muted); border-color: var(--th-color-border-light); }
.th-pdp__badge--new { background: var(--th-indigo-50); color: var(--th-indigo-700, #4338ca); border-color: var(--th-indigo-200); }
.th-pdp__badge--secure { background: var(--th-color-success-bg); color: var(--th-color-success-dark); border-color: var(--th-color-success-border); }
.th-pdp__badge--original { background: var(--th-color-warning-subtle); color: var(--th-amber-800); border-color: var(--th-amber-200); }
.th-pdp__badge--turkey { background: var(--th-color-danger-subtle); color: var(--th-red-800, #991b1b); border-color: var(--th-red-200); }

/* Platform customer-actions block — gizle (th-pdp__stats-actions ile duplicate) */
.th-pdp__customer-actions {
  display: none !important;
}


/* === legacy.css'ten tasindi: 3E — Variant Box === */
/* ======================================================
   SECTION: Variant Box (404 styles moved to components.css)
   ====================================================== */

.variant-box {
    background: var(--th-color-bg);
    border: 1px solid rgba(0,0,0,.05);
    border-radius: var(--th-radius-md);
    font-size: 14px;
    padding: 0 10px
}

/* e404-page-type-1/2 rules removed — replaced by .e404 in components.css */

@media (max-width: 767px) {
}

@media (max-width: 768px) {
    .gizlenecek-alan199 {
        display: none
    }

    
}

.th-card .th-card__inner .buttons .btn-cart:hover,.th-card .down-to-top .btn-cart:hover,.modal-content .buttons .btn-cart:hover {
    background: var(--th-btn-accent-bg-hover);
    border-color: var(--th-btn-accent-bg-hover);
    color: var(--th-btn-accent-text)
}

.th-card .down-to-top .btn-cart {
    background: var(--th-btn-accent-bg);
    border-color: var(--th-btn-accent-bg);
    color: var(--th-btn-accent-text);
    transition: var(--th-transition-normal);
    font-size: 13px
}

.th-pdp__payment-btns .btn-complete,.th-pdp__payment-btns .btn-complete:hover {
    color: var(--th-color-text-inverse);
    display: block;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    height: 50px;
    align-content: center;
    margin: 0 auto;
    text-align: center
}

.th-pdp__payment-btns .btn-complete:hover {
    background: var(--th-neutral-900);
    border-color: var(--th-neutral-900);
    padding: 10px 5px
}

.th-pdp__payment-btns .btn-complete {
    background: var(--th-color-success);
    border-color: var(--th-color-success)
}

.th-pdp__fav-kart {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--th-color-bg);
    border-radius: 100px;
    width: 25px;
    height: 25px;
    z-index: 2;
    border: 1px solid var(--th-color-border);
    transition: box-shadow .3s;
    cursor: pointer
}

.th-pdp__fav-kart a:hover i {
    color: var(--th-color-accent)
}

.th-pdp__fav-kart a {
    font-size: 16px;
    margin-top: 2px;
    margin-right: 6px;
    padding-left: 4px;
    color: var(--th-neutral-800)
}



/* === legacy.css'ten taşındı — 3B Smart Purchase / Conversion === */
/* ANA */

/* FİYAT + TAKSİT SATIRI */

/* SOL BLOK */

/* İNDİRİM */
.th-pdp__discount-badge-legacy {
    background: var(--th-orange-50);
    color: var(--th-color-accent);
    border-radius: var(--th-radius-md);
    padding: 7px 9px;
    min-width: 48px;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
}

/* FİYATLAR */

/* TAKSİT KARTI – SAĞDA */

/* HAVALE */

/* MOBİL */

/* ===============================
   SMART PURCHASE – FINAL CSS
   =============================== */

.th-pdp__smart-purchase{
  margin:14px 0;
  background:var(--th-color-bg);
}

/* OPTIONS */

/* CARD */

/* BADGES */

/* CONTENT */

/* META */

/* 📱 MOBİL */

/* =========================
   ÜRÜN ROZETLERİ
   ========================= */

/* =========================
   AVANTAJ BLOĞU
   ========================= */

/* ===============================
   CONVERSION BLOCK – FINAL STYLE
   =============================== */

.th-pdp__conv-block {
    padding: 1px 12px 12px 12px;

}

/* --- BAR --- */
.th-pdp__conv-bar {
    height: 6px;
    background: var(--th-color-border-muted); /* nötr gri */
    border-radius: var(--th-radius-md);
    overflow: hidden;
}

.th-pdp__conv-bar-fill {
    height: 100%;
    display: block;
    background: #ff6f00; /* Trendyol'a yakın turuncu */ /* TODO: legacy-color */
    border-radius: var(--th-radius-md);
    transition: width 0.6s ease;
}

/* --- TEXT --- */
.th-pdp__conv-text {
    font-size: 11px;
    font-weight: 400;
    color: var(--th-neutral-900); /* Trendyol siyahı */
    white-space: nowrap;
    transition: opacity 0.35s ease;
}

/* SADECE RAKAMLAR */
.th-pdp__conv-text strong {
    color: var(--th-color-danger-hover); /* kırmızı vurgu */
    font-weight: 600;
}

/* STOK DURUMLARI */
.th-pdp__conv-text.warning {
    color: var(--th-neutral-900);
}

.th-pdp__conv-text.warning strong {
    color: var(--th-orange-600);
}

.th-pdp__conv-text.danger {
    color: var(--th-red-700);
    font-weight: 500;
}

/* MOBİL */
@media (max-width: 768px) {
    .th-pdp__conv-text {
        font-size: 12.5px;
    }
}

/* === legacy.css'ten taşındı — 3C Carousel Indicators === */
@media (max-width: 1200px) {
    .product-profile-1 .carousel .carousel-indicators {
        max-height: 480px
    }
}

@media (max-width: 992px) {
    .product-profile-1 .carousel .carousel-indicators {
        max-height: 400px
    }
}

.product-profile-1 .carousel .carousel-indicators {
    position: absolute;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    max-height: 700px;
    overflow-y: auto;
    margin: 0;

}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar {
    width: 4px
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 3px
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.15);
    border-radius: 3px;
    transition: background-color .3s ease
}

.product-profile-1 .carousel .carousel-indicators::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.25)
}

.product-profile-1 .carousel .carousel-indicators li {
    flex: 0 0 auto;
    width: 100%;
    max-width: 120px;
    height: auto;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: var(--th-radius-xl);
    padding: 2px;
    margin-bottom: 6px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .2s ease,box-shadow .2s ease
}

.product-profile-1 .carousel .carousel-indicators li:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 6px rgba(0,0,0,.08)
}

.product-profile-1 .carousel .carousel-indicators li img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--th-radius-xl)
}

.carousel-indicators li {
    opacity: 1
}

#kargoTimerPro,.payment-trust-pro1 h3 {
    display: flex;
    align-items: center;
    gap: 8px
}

#kargoTimerPro {
    justify-content: space-between;
    box-sizing: border-box
}

#kargoTimerLeft {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0
}

#kargoTimerRight {
    background: var(--th-orange-300);
    color: var(--th-color-text-inverse);
    font-size: .9rem;
    padding: 12px 14px;
    line-height: 1.2em;
    min-width: 90px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.08)
}

@media (max-width: 768px) {
    #kargoTimerPro {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 12px
    }

    #kargoTimerLeft {
        gap: 8px
    }

    

    #kargoTimerRight {
        font-size: .85rem;
        padding: 8px 12px;
        min-width: 85px
    }

    
}

.th-pdp__delivery-tooltip {
    position: relative;
    cursor: help;
    display: inline-block;
    font-weight: 500;
    font-size: 14px
}

@media (max-width: 600px) {
}

.th-pdp__delivery-tooltip .th-pdp__tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0,0,0,.75);
    color: var(--th-color-text-inverse);
    text-align: left;
    border-radius: var(--th-radius-sm);
    padding: 4px 8px;
    font-size: .7rem;
    line-height: 1.2em;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity .2s;
    word-wrap: break-word
}

.th-pdp__delivery-tooltip:hover .tooltipText {
    visibility: visible;
    opacity: 1
}

.payment-form-methods .nav-tabs .nav-item {
    margin: 0 4px
}

/* === legacy.css'ten taşındı — 3H Free Cargo & Swiper === */
/* ======================================================
   SECTION: Free Cargo & Swiper Navigation
   Lines: approx 14100–14364
   Purpose: free-cargo shipping info bar, cargo firma logos,
            odeme-box, swiper navigation buttons, urun-info
            container, unique-info slider
   ====================================================== */

.free-cargo .cargo-firma .logo img,.yonkasoft-product-detail .p-for-wrap .p-for-detail .p-for-detail-wrap .p-for-item.product-evaluation .d-flex a img {
    width: 20px
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper.swiper-sepet-kargo .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center
}

@media (min-width: 992px) and (max-width: 1200px) {
}

.product-profile-1 .product-reviews .rating {
    font-size: 24px;
    color: var(--th-color-text);
    margin-right: 5px
}

.product-profile-1 .product-reviews .rating-text {
    font-size: 18px;
    color: var(--th-color-text)
}

.product-reviews .stars .star.fill {
    color: var(--th-color-rating-star)
}

.product-profile-1 .product-reviews .count {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    font-size: 14px;
    color: var(--th-color-text-secondary);
    font-weight: 500
}

.product-profile-1 .product-reviews .count img {
    margin-top: -3px;
    margin-left: 7px
}

.product-profile-1 .product-reviews .review-icon {
    width: 17px;
    height: auto;
    margin-bottom: 3px
}

.product-profile-1 .product-reviews .count a,.product-profile-1 .product-reviews .count b {
    font-size: 14px;
    color: var(--th-neutral-500);
    text-decoration: none;
    font-weight: 500
}

.product-profile-1 .product-reviews .count b {
    color: var(--th-color-text)
}

.shopping-cart-1 .td-price {
    text-align: center
}

.shopping-cart-1 .td-product .product .image {
    margin: 5px
}

/* === legacy.css'ten taşındı — 3I Social Sharing + Product Reviews === */
/* ======================================================
   SECTION: Social Sharing Modal & Product Title
   Lines: approx 14782–14998
   Purpose: social share modal (ana-modal), share buttons,
            copy-to-clipboard, tooltips, product title
            (itlewrtwrts)
   ====================================================== */

.th-card .th-card__inner .buttons {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 5px 0 10px
}

.product-reviews .stars .star.fill .dark {
    color: var(--th-color-bg-wash);
    margin-left: 0
}

.product-reviews .stars .star.fill .fa-star-half {
    position: absolute;
    bottom: 0
}

.th-card .product-reviews {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 7px 12px 1px 12px;
    line-height: 12px;
    gap: 2px;
}

.card-list-product .product-reviews {
    justify-content: center;
    display: flex;
    line-height: 8px;
    margin: 5px 0 10px 10px;
    color: var(--th-neutral-300);
    font-size: 12px
}

.product-profile-1 .product-reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    line-height: 2.5em;
    padding-right: 8px
}

.th-card .th-card__inner .product-label.top-left {
    left: 4px;
    margin-bottom: 5px;
    top: 63px
}

.product-profile-1 .product-label.bottom-left img {
    width: 60px;
    height: 60px;
    top: 5px;
    left: 5px
}

@media (max-width: 768px) {
    

    

    

    .kampanya-wrap-99x {
        border: 0;
        border-radius: 0;
        padding: 0;
        background: var(--th-color-bg)
    }

    
}

.discount-section {
    width: 100%;
    background: var(--th-color-bg);
    border: 1px solid #e7ebf5; /* TODO: legacy-color */
    border-radius: var(--th-radius-xl);
    padding: 10px 5px 1px 20px;
    text-align: center;
    margin: 15px 0 20px
}

.discount-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    line-height: 31px;
    background: var(--th-color-bg);
    border-radius: var(--th-radius-xl);
    transition: background .3s ease;
    gap: 5px;
    letter-spacing: -.03em;
    color: var(--th-color-text-secondary)
}

.plus-icon {
    font-size: 18px;
    font-weight: 700;
    transition: transform .3s ease
}

.discount-header:hover {
    background: var(--th-color-bg)
}

.hidden-summary-box {
    display: none;
    padding: 1px;
    border-top: 1px solid var(--th-color-border)
}

.hidden-summary-box p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -.28px;
    color: var(--th-neutral-400);
    margin: 10px;
    text-align: left
}

#discount-toggle:checked+.discount-header+.hidden-summary-box {
    display: block
}

#discount-toggle:checked+.discount-header .plus-icon {
    transform: rotate(45deg)
}

/* === legacy.css'ten taşındı — S2 Carousel / pp-media === */
/* =========================
   TH Product Carousel Video
========================= */

/* Thumbs */

/* Main image */
.product-profile-carousel .carousel-item img{
  width:100%;
  height:auto;
  display:block;
  border-radius: var(--th-radius-xl);
}

/* Stage */
.pp-media-stage{ position: relative; }

/* Play overlay:
   Sadece ACTIVE slide üzerinde görünsün (kalabalık olmasın) */

/* Inline video */

/* Prev/Next (opsiyonel daha şık) */
.product-profile-carousel .carousel-control-prev,
.product-profile-carousel .carousel-control-next{
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.product-profile-carousel .carousel-control-prev{ left: 12px; }
.product-profile-carousel .carousel-control-next{ right: 12px; }

.product-profile-carousel .carousel-control-prev i,
.product-profile-carousel .carousel-control-next i{
  color: var(--th-color-text);
  font-size: 18px;
}

/* Discount (sende zaten var, garanti olsun) */

/* === legacy.css'ten taşındı — S4 PDP Rating Popup === */
.pdp-rating-box {
  position: relative;
  display: inline-block;
  font-family: Poppins, Arial, sans-serif;
}

/* === ÜST SATIR === */
.pdp-rating-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pdp-rating-average {
  font-size: 14px;
  font-weight: 600;
  color: var(--th-color-text-secondary);
  margin-top: 3px;
}

.pdp-star {
  font-size: 13px;
  color: var(--th-color-border-strong);
}

.pdp-star.is-filled {
  color: var(--th-color-rating-star);
}
/* === Değerlendirme + Soru Sor hizalama === */

/* Nokta ayraç */

/* Soru Sor link */

.pdp-rating-text {
  text-decoration: none;
  color: var(--th-color-text-muted);
  font-size: 13px;
  cursor: pointer;
  margin-left: 4px;
}
.pdp-rating-text:hover {
  color: var(--th-color-text);
  text-decoration: underline;
}

.pdp-photo-icon {
  font-size: 13px;
  color: var(--th-color-text-secondary);
}

/* === POPUP === */
.pdp-rating-popup {
  position: absolute;
  top: 130%;
  left: 0;
  width: 320px;
  background: var(--th-color-bg);
  border: 1px solid var(--th-color-border-light);
  border-radius: var(--th-radius-lg);
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
  z-index: 50;
}

.pdp-rating-box:hover .pdp-rating-popup {
  display: block;
}

/* === BAŞLIK === */
.pdp-popup-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--th-color-text);
  margin-bottom: 10px;
}

.pdp-popup-title span {
  font-weight: 400;
  color: var(--th-color-text-muted);
}

/* === SATIR === */
.pdp-popup-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

/* SOL ORAN */
.pdp-percent {
  width: 26px;
  font-size: 12px;
  color: var(--th-color-text-placeholder);
  text-align: right;
}

/* YILDIZ ETİKET */
.pdp-star-label {
  width: 36px;
  font-size: 12px;
  color: var(--th-color-text-muted);
}

.pdp-star-label i {
  color: var(--th-color-rating-star);
  font-size: 11px;
}

/* BAR */
.pdp-bar {
  flex: 1;
  height: 6px;
  background: var(--th-color-bg-subtle);
  border-radius: 3px;
  overflow: hidden;
}

.pdp-bar span {
  display: block;
  height: 100%;
  background: var(--th-color-rating-star);
  border-radius: 3px;
}

/* SAĞ ADET */
.pdp-count {
  width: 18px;
  font-size: 12px;
  color: var(--th-color-text-secondary);
  text-align: right;
}

/* FOOTER */
.pdp-popup-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--th-color-border-light);
  font-size: 12px;
  color: var(--th-color-text-muted);
}

@keyframes pulse-delivery{
    0%{transform:scale(1);}
    50%{transform:scale(1.01);}
    100%{transform:scale(1);}
}

@media (max-width: 768px) {
    

}

.action-btn{
    pointer-events: auto;
    position: relative;
    z-index: 3;
    width: 55px;
    height: 55px;
    min-width: 40px;
    border-radius: var(--th-radius-full);
    border: 1px solid var(--th-color-border);
    background: var(--th-color-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all .2s ease;
    color: var(--th-color-text-muted);
}

/* Favori ile aynı yuvarlak ikon buton */
/* === legacy.css'ten taşındı — S6 discount-prompt social-proof === */
.discount-prompt.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--th-color-text-secondary);
    background-color: var(--th-color-bg);
    max-width: fit-content
}

.discount-prompt.social-proof i {
    font-size: 12px;
    color: var(--th-color-accent)
}

.discount-prompt.social-proof strong {
    color: var(--th-color-accent);
    font-weight: 600
}

@media (max-width: 480px) {
    .discount-prompt.social-proof {
        font-size: 11px
    }

    .discount-prompt.social-proof i {
        font-size: 12px
    }
}

/* === legacy.css'ten taşındı — S6 product-reviews / rating-count === */
.product-reviews .rating-average {
    color: var(--th-color-text);
    font-size: 14px;
    font-weight: 500
}

.product-reviews .rating-count {
    color: var(--th-color-text);
    font-size: 13px;
    font-weight: 500
}

.product-reviews .rating-count img {
    margin-top: -3px;
    margin-left: 3px
}

.stars .rating-count {
    gap: 5px
}







.fa-star,.fas,.product-reviews .card-list-product .fa {
    font-weight: 600;
    font-size: 12px
}

/* === legacy.css'ten taşındı — S12 farkli-urun / bundle items === */
.liste-farkli-urun-bilgi9 {
    border: 1px solid var(--th-color-danger);
    border-radius: var(--th-radius-xl);
    color: var(--th-color-danger);
    padding: 15px;
    font-size: 12px;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 2px
}

.liste-farkli-vurgulama9 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center
}

.liste-farkli-vurgulama9.highlight {
    color: var(--th-color-danger);
    animation: blink 1.5s ease-in-out infinite
}

.farkli-urun0-progess {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding-top: 5px
}

.farkli-urun9-progess-item {
    flex-grow: 1;
    height: 3px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    background: var(--th-color-bg)
}

.farkli-urun9-progess-item.completed {
    background: var(--th-color-danger)
}

@media (max-width: 768px) {
    .liste-farkli-urun-bilgi {
        flex-direction: row;
        align-items: center;
        padding: 15px 10px 15px 1px;
        margin-bottom: 15px
    }

    

    

    

    

    .liste-farkli-urun-bilgi9 {
        padding: 15px 8px 17px 12px;
        margin-bottom: 12px
    }

    

    

    .liste-farkli-vurgulama9 {
        font-size: 12px;
        font-weight: 500;
        padding-left: 0
    }

    .free-shipping-message,.sepet-indirim-mesaji {
        font-size: 12px
    }
}

footer .bb {
    background: var(--th-slate-700);
    padding: 20px 0;
    border-top: 1px solid var(--th-color-border)
}

.etbis span {
    background: var(--th-slate-800);
    padding: 15px 23px;
    color: var(--th-color-bg-secondary);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

.etbis {
    margin-right: 0;
    display: inline-block;
    text-align: right
}

@media (max-width: 1280px) {
    .etbis img {
        height: 60px;
        width: 60px
    }

    .etbis span {
        padding: 15px 18px;
        font-size: 11px
    }
}

.etbis img {
    height: 60px;
    width: 60px
}



/* ==========================================================
   TilbeHome – CSS Optimization Patch (non-breaking overrides)
   - Scoped fixes for class collisions
   - Accessibility: prefers-reduced-motion
   - Safer defaults: global box-sizing
========================================================== */

*,*::before,*::after{box-sizing:border-box;}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* PDP: keep the action buttons layout stable even if .product-buttons is redefined later */
.product-profile-1 .product-buttons{
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:flex-start;
  flex-wrap:wrap;
}

/* PDP rating row: keep alignment stable */
/* Bundle old price stays slightly lighter, without leaking globally */

/* === legacy.css'ten taşındı — B5 action-btn sub-rules === */
/* İkon boyutu */
.product-buttons .action-btn i{
    font-size:22px;
    line-height:1;
}

/* Hover – favori davranışı */
.product-buttons .action-btn:hover{
    border-color:var(--th-color-accent);
    color:var(--th-color-accent);
    background:var(--th-orange-50);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    transition: box-shadow .3s ease;
}

/* Sepete ekle ile hizalama */
.product-buttons{
    display:flex;
    align-items:center;
    gap:8px;
}

/* === legacy.css'ten taşındı — B11 Product Buttons PDP === */

.product-buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-top: 15px
}

.product-buttons .btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--th-color-accent);
    border: 1px solid var(--th-color-accent);
    color: var(--th-btn-accent-text);
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    flex-grow: 1;
    transition: all .3s ease;
    cursor: pointer;
    border-radius: var(--th-radius-md);
    margin: 0
}

.product-buttons .btn-cart:hover {
    background-color: var(--th-orange-400);
    border-color: var(--th-orange-400);
    color: var(--th-btn-accent-text);
    filter: brightness(1.1)
}

@media (max-width: 768px) {
    .product-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .product-buttons .btn-cart {
        width: 48%;
        margin-bottom: 0;
        margin-top: 0
    }
}

.product-buttons .product-favourite {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 53px;
    height: 53px;
    font-size: 20px;
    border: 1px solid var(--th-color-border);
    border-radius: 50px;
    cursor: pointer;
    transition: background .3s,border-color .3s;
    margin-top: 0;
    padding-top: 4px;
    margin-left: 0
}

.product-buttons .product-favourite:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    transition: box-shadow .3s ease;
    border-color: var(--th-color-accent)
}

.product-favourite i:hover {
    color: var(--th-color-accent);

    transition: box-shadow .3s ease
}

.product-favourite i {
    font-size: 24px;
    transition: transform .3s ease;
    color: var(--th-color-text-muted);
}

.product-favourite.selected {
    background-color: var(--th-color-accent);
    border-color: var(--th-color-accent)
}

.product-favourite.selected i {
    color: var(--th-color-text-inverse)
}

.product-buttons .product-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--th-color-border-strong);
    border-radius: 7px;
    overflow: hidden
}

.product-quantity .btn {
    background: var(--th-color-bg);
    color: var(--th-neutral-600);
    border: 0;
    font-size: 14px;
    font-weight: 500;
    width: 20px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background .3s
}

.product-quantity input {
    width: 30px;
    height: 50px;
    text-align: center;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    outline: 0;
    -moz-appearance: textfield
}

.alert-info i,.product-buttons-container .btn-custom i {
    margin-right: 8px;
    font-size: 18px
}

.product-buttons .btn-wp {
    width: 100%
}

@media (min-width: 768px) {
    .col-lg-4.left-box {
        position: relative
    }

    

    

    
}

.alert-info {
    color: #4f6d7a; /* TODO: legacy-color */
    background-color: var(--th-color-bg);
    border-color: #a1c6d9; /* TODO: legacy-color */
    font-size: 14px;
    font-weight: 400;
    border-radius: var(--th-radius-xl);
    padding: 15px 25px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    display: flex;
    align-items: center
}

.product-profile-1 .degerlendirme-yazi {
    position: absolute;
    left: 125px;
    top: 77px;
    font-size: 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

.alert-info i {
    margin-right: 15px
}

.alert-info .alert-text {
    color: #4f6d7a; /* TODO: legacy-color */
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5
}

@media (max-width: 768px) {
    .alert-info {
        font-size: 12px;
        padding: 10px 15px;
        margin-top: 10px;
        border-radius: var(--th-radius-md);
        box-shadow: 0 1px 3px rgba(0,0,0,.08)
    }

    .alert-info i {
        font-size: 14px;
        margin-right: 10px
    }

    .alert-info .alert-text {
        font-size: 13px;
        line-height: 1.4
    }
}

.product-profile-1 .degerlendirme-yazi {
    position: absolute;
    left: 125px;
    top: 77px;
    font-size: 10px;
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

/* === misc.css'ten taşındı — 2F-1 th-recently-viewed === */
.th-recently-viewed { padding: 24px 0 8px; }
.th-recently-viewed__title { font-size: 18px; font-weight: 700; color: var(--th-color-text); margin-bottom: 14px; }
.th-recently-viewed__list { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px; }
.th-recently-viewed__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex: 0 0 120px;
  text-decoration: none;
  color: inherit;
}
.th-recently-viewed__item img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--th-radius-lg);
  border: 1px solid var(--th-color-border-light);
}
.th-recently-viewed__name {
  font-size: 12px;
  color: var(--th-color-text-secondary);
  margin-top: 6px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.th-recently-viewed__price { font-size: 13px; font-weight: 700; color: var(--th-color-accent); margin-top: 4px; }

/* === misc.css'ten taşındı — B9 hepsijet-countdown === */
@media (max-width: 991px) {
    .hepsijet-countdown {
        border-radius: 15px;
        border: 1px solid var(--th-color-border);
        background: var(--th-emerald-50);
        padding: 20px 5px;
        margin-bottom: 15px;
        font-size: 12px;
        font-family: "Poppins",sans-serif;
        font-weight: 400
    }
    .ppc-ctype-2 .row:first-of-type,.ppc-ctype-3 .row:first-of-type {
        flex-direction: column-reverse
    }
}
@media (max-width: 768px) {
    .card-category .title {
        font-weight: 500;
        font-size: 11px;
        color: var(--th-neutral-900);
        width: 55px;
        margin-top: -5px
    }
}
