/* ============================================
   PRODUCT DETAIL PAGE — SHOP.SN
   Ultra Premium · Mobile First · 3-Column Layout
   ============================================ */

/* ── Page wrapper ── */
.pd-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 12px 80px;
}

@media (min-width: 768px) {
  .pd-page { padding: 20px 24px 60px; }
}
@media (min-width: 1025px) {
  .pd-page { padding: 24px 32px 60px; }
}
@media (min-width: 1440px) {
  .pd-page { padding: 24px 48px 60px; }
}

/* ── Breadcrumb ── */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
  flex-wrap: wrap;
  line-height: 1.6;
}
.pd-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.pd-breadcrumb a:hover { color: rgb(253, 98, 5); }
.pd-breadcrumb i { font-size: 10px; color: #bbb; }
.pd-breadcrumb span { color: #333; font-weight: 500; }

@media (min-width: 768px) {
  .pd-breadcrumb { font-size: 13px; margin-bottom: 20px; }
}

/* ── 3-Column Layout ── */
.pd-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1025px) {
  .pd-layout {
    display: grid;
    grid-template-columns: 420px 1fr 320px;
    gap: 28px;
    align-items: start;
  }
}
@media (min-width: 1280px) {
  .pd-layout {
    grid-template-columns: 480px 1fr 340px;
    gap: 32px;
  }
}
@media (min-width: 1440px) {
  .pd-layout {
    grid-template-columns: 520px 1fr 360px;
    gap: 36px;
  }
}

/* ============================================
   GALERIE (Colonne 1)
   ============================================ */
.pd-gallery {
  position: relative;
}

@media (min-width: 1025px) {
  .pd-gallery {
    position: sticky;
    top: 100px;
  }
}

/* Badges galerie */
.pd-gallery__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-gallery__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.pd-gallery__badge--red {
  background: #e63946;
  color: #fff;
}
.pd-gallery__badge--express {
  background: rgb(253, 98, 5);
  color: #fff;
}
.pd-gallery__badge--official {
  background: rgb(0, 139, 255);
  color: #fff;
}

/* Image principale */
.pd-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  cursor: zoom-in;
}
.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.pd-gallery__main.is-zoomed img {
  transform: scale(1.8);
  cursor: zoom-out;
}
.pd-gallery__zoom,
.pd-gallery__fullscreen {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e0e0e0;
  color: #333;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
}
.pd-gallery__zoom { bottom: 12px; right: 12px; }
.pd-gallery__fullscreen { bottom: 12px; right: 56px; }
.pd-gallery__zoom:hover,
.pd-gallery__fullscreen:hover {
  background: rgb(253, 98, 5);
  color: #fff;
  border-color: rgb(253, 98, 5);
}
.pd-gallery__counter {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
}

/* Thumbnails */
.pd-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.pd-gallery__thumbs::-webkit-scrollbar { display: none; }

.pd-gallery__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #fff;
  transition: border-color 0.2s;
}
.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-gallery__thumb.is-active {
  border-color: rgb(253, 98, 5);
}
.pd-gallery__thumb:hover:not(.is-active) {
  border-color: #ccc;
}
.pd-gallery__thumb--video i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

@media (min-width: 768px) {
  .pd-gallery__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }
}

/* Share bar */
.pd-gallery__share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
}
.pd-gallery__share-label {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.pd-gallery__share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #555;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-gallery__share-btn:hover {
  background: rgb(253, 98, 5);
  color: #fff;
  border-color: rgb(253, 98, 5);
}

/* ============================================
   FICHE PRODUIT (Colonne 2)
   ============================================ */

/* Brand */
.pd-info__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.pd-info__brand-name {
  font-size: 12px;
  font-weight: 700;
  color: rgb(0, 139, 255);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pd-info__brand-official {
  font-size: 11px;
  color: rgb(0, 139, 255);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Title */
.pd-info__name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
}
@media (min-width: 768px) {
  .pd-info__name { font-size: 24px; }
}
@media (min-width: 1025px) {
  .pd-info__name { font-size: 22px; }
}

/* Meta row */
.pd-info__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.6;
}
.pd-info__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f5a623;
}
.pd-info__stars i { font-size: 14px; }
.pd-info__rating-score {
  font-weight: 700;
  color: #333;
  margin-left: 4px;
  font-size: 13px;
}
.pd-info__rating-link {
  color: rgb(0, 139, 255);
  text-decoration: none;
  font-weight: 500;
}
.pd-info__rating-link:hover { text-decoration: underline; }
.pd-info__sep { color: #ddd; }
.pd-info__sold i,
.pd-info__views i { margin-right: 2px; }
.pd-info__views { color: #e63946; font-weight: 500; }

/* Price block */
.pd-info__price-block {
  background: #fef9f3;
  border: 1px solid #fde8d0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.pd-info__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.pd-info__price {
  font-size: 28px;
  font-weight: 800;
  color: rgb(253, 98, 5);
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.5px;
}
.pd-info__old-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}
.pd-info__discount-badge {
  background: #e63946;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.pd-info__price-save {
  font-size: 13px;
  color: #2e7d32;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pd-info__price-save i { font-size: 16px; }
.pd-info__price-installment {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pd-info__wave-badge {
  background: #1dc7ea;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* Stock */
.pd-info__stock {
  margin-bottom: 16px;
}
.pd-info__stock-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.pd-info__stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}
.pd-info__stock-badge--instock {
  color: #2e7d32;
}
.pd-info__stock-badge--instock i { font-size: 16px; }
.pd-info__stock-qty {
  font-size: 12px;
  color: #e63946;
  font-weight: 500;
}
.pd-info__stock-bar-wrap { margin-top: 4px; }
.pd-info__stock-track {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.pd-info__stock-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: rgb(253, 98, 5);
  transition: width 1s ease;
}
.pd-info__stock-fill.is-hot {
  background: #e63946;
}
.pd-info__stock-pct {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  display: block;
}

/* Delivery banner */
.pd-info__delivery-banner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f0faf0;
  border: 1px solid #c8e6c9;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.pd-info__delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pd-info__delivery-item > i {
  font-size: 20px;
  color: #2e7d32;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-info__delivery-item strong {
  font-size: 13px;
  color: #1a1a1a;
  display: block;
}
.pd-info__delivery-item span {
  font-size: 12px;
  color: #555;
}

/* Variants */
.pd-variant {
  margin-bottom: 16px;
}
.pd-variant__label {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}
.pd-variant__label strong { color: #1a1a1a; }
.pd-variant__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Color swatches */
.pd-variant__color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  position: relative;
  padding: 3px;
  background: transparent;
  transition: border-color 0.2s;
}
.pd-variant__color span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.pd-variant__color.is-active {
  border-color: rgb(253, 98, 5);
}
.pd-variant__color:hover:not(.is-active) {
  border-color: #ccc;
}

/* Size/storage buttons */
.pd-variant__size {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 90px;
}
.pd-variant__size-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.pd-variant__size-price {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
.pd-variant__size.is-active {
  border-color: rgb(253, 98, 5);
  background: #fff5f0;
}
.pd-variant__size.is-active .pd-variant__size-name {
  color: rgb(253, 98, 5);
}
.pd-variant__size:hover:not(.is-active) {
  border-color: #bbb;
}

/* Quantity */
.pd-actions-row {
  margin-bottom: 12px;
}
.pd-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd-qty__label {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}
.pd-qty__control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.pd-qty__btn {
  width: 38px;
  height: 38px;
  border: none;
  background: #f5f5f5;
  color: #333;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.pd-qty__btn:hover { background: #e0e0e0; }
.pd-qty__input {
  width: 48px;
  height: 38px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}
.pd-qty__input::-webkit-inner-spin-button,
.pd-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Actions */
.pd-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.pd-actions__cart,
.pd-actions__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.pd-actions__cart {
  background: rgb(253, 98, 5);
  color: #fff;
}
.pd-actions__cart:hover { background: rgb(230, 85, 0); }
.pd-actions__buy {
  background: #fff;
  color: rgb(253, 98, 5);
  border: 2px solid rgb(253, 98, 5);
}
.pd-actions__buy:hover {
  background: #fff5f0;
}

.pd-actions-secondary {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pd-actions__wishlist,
.pd-actions__compare,
.pd-actions__alert {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-actions__wishlist:hover { color: #e63946; border-color: #e63946; background: #fef5f5; }
.pd-actions__compare:hover { color: rgb(0,139,255); border-color: rgb(0,139,255); background: #f0f7ff; }
.pd-actions__alert:hover { color: rgb(253,98,5); border-color: rgb(253,98,5); background: #fff5f0; }

/* Guarantees */
.pd-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.pd-guarantees__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}
.pd-guarantees__item > i {
  font-size: 18px;
  color: rgb(253, 98, 5);
  flex-shrink: 0;
  margin-top: 1px;
}
.pd-guarantees__item strong {
  font-size: 12px;
  color: #333;
  display: block;
}
.pd-guarantees__item span {
  font-size: 11px;
  color: #888;
}

/* Highlights */
.pd-highlights {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px 16px;
}
.pd-highlights__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-highlights__title i { color: rgb(253, 98, 5); }
.pd-highlights__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pd-highlights__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.pd-highlights__list li i {
  color: #2e7d32;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   SIDEBAR VENDEUR (Colonne 3)
   ============================================ */
.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1025px) {
  .pd-sidebar {
    position: sticky;
    top: 100px;
  }
}

/* Seller card */
.pd-sidebar__seller-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pd-sidebar__seller-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pd-sidebar__seller-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(0, 139, 255);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-sidebar__seller-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pd-sidebar__seller-name i {
  color: rgb(0, 139, 255);
  font-size: 16px;
}
.pd-sidebar__seller-type {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}
.pd-sidebar__seller-badge-pro {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  color: #c9a84c;
  background: #fef9e7;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}
.pd-sidebar__seller-since {
  font-size: 11px;
  color: #999;
}

/* Seller rating */
.pd-sidebar__seller-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.pd-sidebar__seller-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f5a623;
  font-size: 13px;
}
.pd-sidebar__seller-stars span {
  font-weight: 700;
  color: #333;
  margin-left: 4px;
}
.pd-sidebar__seller-reviews {
  font-size: 12px;
  color: #888;
}

/* Seller stats */
.pd-sidebar__seller-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  text-align: center;
}
.pd-sidebar__stat-circle {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto 4px;
}
.pd-sidebar__stat-circle svg {
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
}
.pd-sidebar__stat-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3;
}
.pd-sidebar__stat-fill {
  fill: none;
  stroke: #2e7d32;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}
.pd-sidebar__stat-circle > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 700;
  color: #2e7d32;
}
.pd-sidebar__stat-value {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  font-family: 'Manrope', sans-serif;
}
.pd-sidebar__stat-label {
  font-size: 10px;
  color: #888;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Performance badges */
.pd-sidebar__seller-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.pd-sidebar__perf-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.pd-sidebar__perf-badge--gold {
  background: #fef9e7;
  color: #c9a84c;
  border: 1px solid #f5e6a3;
}
.pd-sidebar__perf-badge--green {
  background: #f0faf0;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.pd-sidebar__perf-badge--blue {
  background: #f0f7ff;
  color: rgb(0, 139, 255);
  border: 1px solid #b3d9ff;
}

/* Seller actions */
.pd-sidebar__seller-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.pd-sidebar__btn--primary {
  background: rgb(253, 98, 5);
  color: #fff;
}
.pd-sidebar__btn--primary:hover { background: rgb(230, 85, 0); }
.pd-sidebar__btn--outline {
  background: #fff;
  color: rgb(253, 98, 5);
  border: 2px solid rgb(253, 98, 5);
}
.pd-sidebar__btn--outline:hover { background: #fff5f0; }
.pd-sidebar__btn--ghost {
  background: transparent;
  color: #555;
  border: 1px solid #ddd;
}
.pd-sidebar__btn--ghost:hover { background: #f5f5f5; }

/* Location */
.pd-sidebar__location {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pd-sidebar__location-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.pd-sidebar__location-header > i {
  font-size: 20px;
  color: #e63946;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-sidebar__location-header strong {
  font-size: 13px;
  color: #1a1a1a;
  display: block;
}
.pd-sidebar__location-header span {
  font-size: 12px;
  color: #666;
}
.pd-sidebar__map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #eee;
}
.pd-sidebar__map iframe {
  display: block;
}
.pd-sidebar__location-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-sidebar__location-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pd-sidebar__location-row > i {
  font-size: 16px;
  color: #888;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-sidebar__location-row strong {
  font-size: 12px;
  color: #333;
  display: block;
}
.pd-sidebar__location-row span {
  font-size: 12px;
  color: #666;
  display: block;
}
.pd-sidebar__location-row a {
  font-size: 12px;
  color: rgb(0, 139, 255);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pd-sidebar__location-row a:hover { text-decoration: underline; }

.pd-sidebar__open-now {
  color: #2e7d32 !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  display: flex !important;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.pd-sidebar__open-now i { font-size: 8px; }

/* Trust block */
.pd-sidebar__trust {
  background: #f0faf0;
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 16px;
}
.pd-sidebar__trust-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.pd-sidebar__trust-header i {
  font-size: 22px;
  color: #2e7d32;
}
.pd-sidebar__trust-header strong {
  font-size: 14px;
  color: #1a5e1f;
}
.pd-sidebar__trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-sidebar__trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pd-sidebar__trust-list li > i {
  font-size: 16px;
  color: #2e7d32;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-sidebar__trust-list li strong {
  font-size: 12px;
  color: #1a1a1a;
  display: block;
}
.pd-sidebar__trust-list li span {
  font-size: 11px;
  color: #555;
}

/* Warning */
.pd-sidebar__warning {
  display: flex;
  gap: 10px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 12px;
  padding: 14px 16px;
}
.pd-sidebar__warning-icon i {
  font-size: 24px;
  color: #f9a825;
}
.pd-sidebar__warning-content strong {
  font-size: 13px;
  color: #e65100;
  display: block;
  margin-bottom: 4px;
}
.pd-sidebar__warning-content p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* More from seller */
.pd-sidebar__more-from-seller {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pd-sidebar__more-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pd-sidebar__more-header strong {
  font-size: 13px;
  color: #1a1a1a;
}
.pd-sidebar__more-header a {
  font-size: 12px;
  color: rgb(0, 139, 255);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
}
.pd-sidebar__more-header a:hover { text-decoration: underline; }

.pd-sidebar__more-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-sidebar__mini-product {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.pd-sidebar__mini-product:hover { background: #f9f9f9; }
.pd-sidebar__mini-product img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #eee;
}
.pd-sidebar__mini-name {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  display: block;
  line-height: 1.4;
}
.pd-sidebar__mini-price {
  font-size: 13px;
  color: rgb(253, 98, 5);
  font-weight: 700;
  display: block;
  margin-top: 2px;
}
.pd-sidebar__mini-rating {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}
.pd-sidebar__mini-rating i { color: #f5a623; font-size: 12px; }

/* ============================================
   TABS SECTION
   ============================================ */
.pd-tabs-section {
  margin-top: 32px;
}
.pd-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #eee;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pd-tabs__nav::-webkit-scrollbar { display: none; }

.pd-tabs__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.pd-tabs__tab:hover { color: #333; }
.pd-tabs__tab.is-active {
  color: rgb(253, 98, 5);
  border-bottom-color: rgb(253, 98, 5);
}
.pd-tabs__tab i { font-size: 16px; }
.pd-tabs__badge {
  font-size: 10px;
  background: rgb(253, 98, 5);
  color: #fff;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
}

.pd-tabs__panel {
  display: none;
  padding: 24px 0;
}
.pd-tabs__panel.is-active {
  display: block;
}

/* Description */
.pd-description h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  font-family: 'Manrope', sans-serif;
}
.pd-description > p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 24px;
}

/* Feature cards */
.pd-description__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .pd-description__features {
    grid-template-columns: 1fr 1fr;
  }
}
.pd-description__feature {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
}
.pd-description__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-description__feature-icon i {
  font-size: 20px;
  color: rgb(253, 98, 5);
}
.pd-description__feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.pd-description__feature p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* In-box */
.pd-description__inbox {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 16px 18px;
  border: 1px solid #eee;
}
.pd-description__inbox h4 {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-description__inbox h4 i { color: rgb(253, 98, 5); }
.pd-description__inbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pd-description__inbox li {
  font-size: 13px;
  color: #555;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.pd-description__inbox li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgb(253, 98, 5);
  font-weight: 700;
}

/* Specs */
.pd-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pd-specs__group-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.pd-specs__group-title i { color: rgb(253, 98, 5); font-size: 16px; }
.pd-specs__table {
  width: 100%;
  border-collapse: collapse;
}
.pd-specs__table td {
  padding: 8px 12px;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}
.pd-specs__table td:first-child {
  color: #888;
  width: 40%;
  font-weight: 500;
}
.pd-specs__table td:last-child {
  color: #333;
  font-weight: 500;
}
.pd-specs__table tr:last-child td { border-bottom: none; }

/* Reviews */
.pd-reviews__summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .pd-reviews__summary {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}
.pd-reviews__score-block {
  text-align: center;
}
.pd-reviews__score-number {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  font-family: 'Manrope', sans-serif;
  display: block;
  line-height: 1;
}
.pd-reviews__score-stars {
  color: #f5a623;
  font-size: 18px;
  margin: 4px 0;
}
.pd-reviews__score-count {
  font-size: 12px;
  color: #888;
}

.pd-reviews__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-reviews__bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}
.pd-reviews__bar-row span:first-child { width: 24px; text-align: right; }
.pd-reviews__bar-row span:last-child { width: 28px; }
.pd-reviews__bar {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}
.pd-reviews__bar-fill {
  height: 100%;
  background: #f5a623;
  border-radius: 4px;
}

.pd-reviews__recommend {
  text-align: center;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
}
.pd-reviews__recommend-pct {
  font-size: 32px;
  font-weight: 800;
  color: #2e7d32;
  font-family: 'Manrope', sans-serif;
}
.pd-reviews__recommend span {
  font-size: 11px;
  color: #888;
  display: block;
}

/* Review filters */
.pd-reviews__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.pd-reviews__filter {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-reviews__filter.is-active,
.pd-reviews__filter:hover {
  background: rgb(253, 98, 5);
  color: #fff;
  border-color: rgb(253, 98, 5);
}

/* Review items */
.pd-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pd-reviews__item {
  padding: 16px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
}
.pd-reviews__item-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.pd-reviews__item-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  color: #555;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-reviews__item-meta { flex: 1; }
.pd-reviews__item-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.pd-reviews__verified {
  font-size: 11px;
  color: rgb(0, 139, 255);
  font-weight: 500;
}
.pd-reviews__verified i { font-size: 12px; }
.pd-reviews__item-date {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.pd-reviews__item-stars {
  color: #f5a623;
  font-size: 14px;
  flex-shrink: 0;
}
.pd-reviews__item-text {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 10px;
}
.pd-reviews__item-photos {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.pd-reviews__item-photos img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #eee;
  cursor: pointer;
}
.pd-reviews__item-footer {
  display: flex;
  gap: 12px;
}
.pd-reviews__helpful,
.pd-reviews__report {
  font-size: 12px;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.pd-reviews__helpful:hover { color: rgb(0, 139, 255); background: #f0f7ff; }
.pd-reviews__report:hover { color: #e63946; background: #fef5f5; }

.pd-reviews__load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  margin-top: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-reviews__load-more:hover {
  border-color: rgb(253, 98, 5);
  color: rgb(253, 98, 5);
}

/* FAQ */
.pd-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-faq__item {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}
.pd-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.pd-faq__question span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.pd-faq__question i {
  font-size: 18px;
  color: #888;
  transition: transform 0.3s ease;
}
.pd-faq__question.is-open i { transform: rotate(180deg); }
.pd-faq__question:hover { background: #f0f0f0; }

.pd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
}
.pd-faq__answer.is-open {
  max-height: 300px;
  padding: 12px 16px 16px;
}
.pd-faq__answer p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SIMILAR / RECENTLY VIEWED
   ============================================ */
.pd-similar,
.pd-recently-viewed {
  margin-top: 40px;
}
.pd-similar__header,
.pd-recently-viewed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.pd-similar__title,
.pd-recently-viewed__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
}
.pd-similar__title i,
.pd-recently-viewed__title i {
  color: rgb(253, 98, 5);
  font-size: 22px;
}
.pd-similar__link {
  font-size: 13px;
  color: rgb(0, 139, 255);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pd-similar__link:hover { text-decoration: underline; }

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
.pd-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.pd-mobile-bar.is-visible {
  transform: translateY(0);
}
.pd-mobile-bar__current {
  font-size: 18px;
  font-weight: 800;
  color: rgb(253, 98, 5);
  font-family: 'Manrope', sans-serif;
}
.pd-mobile-bar__old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  display: block;
}
.pd-mobile-bar__actions {
  display: flex;
  gap: 8px;
}
.pd-mobile-bar__cart,
.pd-mobile-bar__buy {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.pd-mobile-bar__cart {
  background: rgb(253, 98, 5);
  color: #fff;
}
.pd-mobile-bar__cart:hover { background: rgb(230, 85, 0); }
.pd-mobile-bar__buy {
  background: #1a1a1a;
  color: #fff;
}
.pd-mobile-bar__buy:hover { background: #333; }

@media (min-width: 1025px) {
  .pd-mobile-bar { display: none; }
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 480px) {
  .pd-info__price { font-size: 24px; }
  .pd-actions { grid-template-columns: 1fr; }
  .pd-guarantees { grid-template-columns: 1fr; }
  .pd-info__meta { font-size: 11px; }
  .pd-tabs__tab { padding: 10px 12px; font-size: 12px; }
}

@media (min-width: 481px) and (max-width: 767px) {
  .pd-info__price { font-size: 26px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .pd-sidebar {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
