/* ═══════════════════════════════════════
   PRODUCT DETAIL PAGE  (product.css)
═══════════════════════════════════════ */

/* ── page wrapper ── */
.product-page {
  background: #fff;
  overflow-x: hidden;       /* prevent ANY element from causing horizontal scroll */
  width: 100%;
  box-sizing: border-box;
}
.product-page *,
.product-page *::before,
.product-page *::after {
  box-sizing: border-box;
}
.product-page .container-fluid {
  background: #fff;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  /* Use longhand so vertical padding set on child classes (pdp-breadcrumb-row etc.)
     is NOT overridden by this more-specific shorthand rule */
  padding-left: 32px;
  padding-right: 32px;
}

/* reset any global p font/color overrides inside the info & tabs panels */
.pdp-info p,
.pdp-tabs-wrap p {
  font-size: inherit !important;
  color: inherit !important;
  text-align: left !important;
}

/* ════════════════════════════════
   BREADCRUMB
════════════════════════════════ */
.pdp-breadcrumb-row {
  /* padding-top must use !important because .product-page .container-fluid (2-class
     specificity) would otherwise override this 1-class rule; we use the longhand
     version for sides on container-fluid to avoid the conflict, but keep !important
     here as a safety net */
  padding-top: 120px !important;   /* header ~94px + safe gap */
  padding-bottom: 12px !important;
  border-bottom: 1px solid #f0f0f0;
}
.pdp-breadcrumb-row .breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  color: #aaa;
}
.pdp-breadcrumb-row .breadcrumb li + li::before {
  content: "›";
  margin: 0 6px;
  color: #ddd;
}
.pdp-breadcrumb-row .breadcrumb a { color: #999; text-decoration: none; }
.pdp-breadcrumb-row .breadcrumb a:hover { color: #a51890; }
.pdp-breadcrumb-row .breadcrumb .active { color: #444; }
.mobile-back-button { display: none; }

/* ════════════════════════════════
   TWO-COLUMN MAIN GRID
════════════════════════════════ */
.pdp-main {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 48px;
  padding: 32px 0 40px;
  align-items: start;
}

/* ════════════════════════════════
   GALLERY  — desktop layout
   [thumbs col] [main image]
════════════════════════════════ */
.pdp-gallery {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  position: sticky;
  top: 110px;   /* clear the fixed header (~94px) + small safe gap */
}

/* vertical thumb strip */
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.pdp-thumbs::-webkit-scrollbar { width: 4px; }
.pdp-thumbs::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.pdp-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 2px solid #ececec;
  border-radius: 8px;
  padding: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s;
  overflow: hidden;
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.pdp-thumb:hover   { border-color: #bbb; }
.pdp-thumb.active  { border-color: #a51890; }

/* On desktop grid: image is column 2, thumbs column 1 */
/* DOM order: image first, thumbs second — use grid-area to swap visually */
.pdp-gallery .pdp-main-img-wrap { grid-column: 2; grid-row: 1; }
.pdp-gallery .pdp-thumbs         { grid-column: 1; grid-row: 1; }

/* main image stage */
.pdp-main-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1.5px solid #efefef;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  box-sizing: border-box;
  transition: transform .35s ease;
}
.pdp-main-img-wrap:hover img { transform: scale(1.05); }

.pdp-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: all .15s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.pdp-zoom-btn:hover { background: #fff; color: #a51890; border-color: #a51890; }
.pdp-zoom-btn svg { width: 18px; height: 18px; }

/* ════════════════════════════════
   INFO PANEL
════════════════════════════════ */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

/* ─ title (div, not h1 — avoids main.min.css global h1 overrides) ─ */

/* availability */
.pdp-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.pdp-avail__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pdp-avail--in  { color: #1e8c46; }
.pdp-avail--in  .pdp-avail__dot { background: #1e8c46; box-shadow: 0 0 0 3px #d4f0e0; }
.pdp-avail--out { color: #c62828; }
.pdp-avail--out .pdp-avail__dot { background: #c62828; box-shadow: 0 0 0 3px #fce8e6; }
.pdp-avail__count { color: #aaa; font-weight: 400; font-size: 12px; }

/* title — div element, no h1 rules apply */
.pdp-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin: 0 0 6px;
  text-align: left;
  letter-spacing: -.2px;
}
.pdp-subtitle {
  display: block;
  font-size: 13px;
  color: #999;
  font-weight: 400;
  margin: 0 0 10px;
  text-align: left;
}

/* meta row */
.pdp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
  color: #aaa;
}
.pdp-meta li { display: flex; gap: 4px; align-items: baseline; }
.pdp-meta__val { color: #555; font-weight: 500; text-decoration: none; }
.pdp-meta__val:hover { color: #a51890; }

.pdp-divider {
  height: 1px;
  background: #f2f2f2;
  margin: 12px 0;
}

/* price */
.pdp-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}
.pdp-price {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
  line-height: 1;
}
.pdp-price--sale { color: #d32f2f; }
.pdp-price-old {
  font-size: 18px;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
}
.pdp-discount-badge {
  background: #d32f2f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* colors */
.pdp-colors { margin: 12px 0; }
.pdp-colors__label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}
.pdp-color-list { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1.5px #ccc;
  cursor: pointer;
  padding: 0;
  transition: box-shadow .18s, transform .18s;
}
.pdp-swatch:hover { transform: scale(1.1); }
.pdp-swatch.active { box-shadow: 0 0 0 2.5px #a51890; }

/* quick specs grid */
.pdp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #f0f0f0;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin: 12px 0;
}
.pdp-spec-item {
  background: #fff;
  padding: 10px 14px;
}
.pdp-spec-item dt {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
  font-weight: 600;
}
.pdp-spec-item dd {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* short desc */
.pdp-short-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 10px 0 12px;
}
.pdp-short-desc p { margin: 0 0 5px; }
.pdp-short-desc p:last-child { margin: 0; }

/* advantages bullets */
.pdp-advantages {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}
.pdp-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.45;
}
.pdp-advantages li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #a51890
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/11px no-repeat;
  margin-top: 2px;
}

/* CTA buttons */
.pdp-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 14px;
}
.pdp-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #F5A623;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background .18s, transform .12s;
  letter-spacing: .1px;
  text-decoration: none;
}
.pdp-btn-cart:hover { background: #e0941a; transform: translateY(-1px); color: #fff; }
.pdp-btn-cart:active { transform: translateY(0); }
.pdp-btn-cart svg { width: 20px; height: 20px; flex-shrink: 0; }
.pdp-btn-cart--unavail { background: #e5e5e5; color: #999; cursor: not-allowed; }
.pdp-btn-cart--unavail:hover { background: #e5e5e5; transform: none; }

.pdp-btn-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .18s, color .18s;
  box-sizing: border-box;
}
.pdp-btn-compare:hover { border-color: #a51890; color: #a51890; }
.pdp-btn-compare svg { width: 18px; height: 18px; flex-shrink: 0; }
/* Favorite button — active (in favorites) state */
#favorite-button.fav-active {
  border-color: #e53935;
  color: #e53935;
  background: #fff5f5;
}
#favorite-button.fav-active svg {
  stroke: #e53935;
  fill: #e53935;
}
#favorite-button.fav-active:hover {
  border-color: #c62828;
  color: #c62828;
  background: #ffebee;
}

/* trust badges */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #f2f2f2;
  margin-top: 4px;
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
}
.pdp-trust-item svg { color: #a51890; width: 24px; height: 24px; }
.pdp-trust-item span { font-size: 11px; color: #666; line-height: 1.3; font-weight: 500; }

/* ════════════════════════════════
   TABS SECTION
════════════════════════════════ */
.pdp-tabs-wrap {
  border-top: 1px solid #f0f0f0;
  padding-bottom: 56px;
}
.pdp-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #f0f0f0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pdp-tabs-nav::-webkit-scrollbar { display: none; }
.pdp-tab-btn {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s, border-color .18s;
}
.pdp-tab-btn:hover { color: #333; }
.pdp-tab-btn.active { color: #a51890; border-bottom-color: #a51890; }

.pdp-tab-panel { display: none; padding: 36px 0; }
.pdp-tab-panel.active { display: block; }

/* description blocks */
.pdp-descr-block {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.pdp-descr-block--rev { flex-direction: row-reverse; }
.pdp-descr-block__text {
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  min-width: 0;
}
.pdp-descr-block__text h2,
.pdp-descr-block__text h3 { color: #111; margin: 0 0 12px; }
.pdp-descr-block__img { flex: 0 0 45%; max-width: 45%; }
.pdp-descr-block__img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

/* specs table */
.pdp-spec-table-wrap { max-width: 800px; }
.pdp-spec-table-wrap + .pdp-spec-table-wrap { margin-top: 36px; }
.pdp-spec-table-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 14px;
}
.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
}
.pdp-spec-table tr:nth-child(odd) th,
.pdp-spec-table tr:nth-child(odd) td { background: #fafafa; }
.pdp-spec-table th,
.pdp-spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f2f2f2;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}
.pdp-spec-table tr:last-child th,
.pdp-spec-table tr:last-child td { border-bottom: none; }
.pdp-spec-table th { width: 44%; color: #666; font-weight: 500; }
.pdp-spec-table td { color: #1a1a1a; font-weight: 600; }

/* advantages grid */
.pdp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.pdp-feature-card {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.pdp-feature-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.pdp-feature-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.pdp-feature-card p {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* charac rich text */
.pdp-charac-body {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
}
.pdp-charac-body table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ececec;
}
.pdp-charac-body th,
.pdp-charac-body td {
  padding: 10px 14px;
  border-bottom: 1px solid #f2f2f2;
  text-align: left;
  font-size: 14px;
}
.pdp-charac-body th { width: 44%; background: #fafafa; font-weight: 600; color: #555; }
.pdp-charac-body tr:last-child th,
.pdp-charac-body tr:last-child td { border-bottom: none; }

.pdp-reviews-panel { padding-top: 4px; }

/* Desktop: add bottom padding so navbar__bottom (position:fixed; bottom:50px; ~76px tall)
   doesn't cover the last tab panel content */
.pdp-tabs-wrap { padding-bottom: 140px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Large desktop: keep 560px gallery column */
@media (min-width: 1200px) {
  .pdp-main { grid-template-columns: 580px 1fr; }
}

/* Medium – shrink gallery a bit */
@media (max-width: 1100px) {
  .pdp-main { grid-template-columns: 480px 1fr; gap: 32px; }
}

/* Tablet – single column, gallery switches to horizontal thumbs below */
@media (max-width: 900px) {
  .product-page .container-fluid { padding: 0 20px; width: 100%; }

  /* header is still full-height between 640-900px, keep enough offset */
  .pdp-breadcrumb-row { padding-top: 120px !important; }

  .pdp-main {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 16px 0 28px;
    width: 100%;
  }

  /* Gallery: image full-width on top, thumbs row below */
  .pdp-gallery {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    position: static;
    margin: 0;
    width: 100%;
    margin-bottom: 8px;
  }

  .pdp-thumbs {
    order: 2;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    max-height: none;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: thin;
    width: 100%;
  }

  .pdp-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .pdp-main-img-wrap {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }

  .pdp-info { width: 100%; min-width: 0; }

  .pdp-trust { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════
   MOBILE  ≤ 640px
   (header collapses to ~80px under 640px)
══════════════════════════════════════ */
@media (max-width: 640px) {

  /* Container */
  .product-page .container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
    width: 100% !important;
  }

  /* Breadcrumb */
  .pdp-breadcrumb-row {
    padding-top: 125px !important;
    padding-bottom: 8px !important;
  }
  .pdp-breadcrumb-row .breadcrumb {
    font-size: 12px;
  }
  .pdp-breadcrumb-row .breadcrumb li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100vw - 100px);
  }

  /* Back button */
  .mobile-back-button {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    margin: 0 0 6px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
  }
  .mobile-back-button svg { width: 15px; height: 15px; }

  /* ── MAIN GRID → single column ── */
  .pdp-main {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 12px 0 80px !important;
    width: 100% !important;
  }

  /* ── GALLERY ── */
  .pdp-gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Main image: full width square */
  .pdp-main-img-wrap {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 12px !important;
    border: 1px solid #efefef !important;
    touch-action: pan-y; /* allow vertical scroll, horizontal handled by JS */
  }
  .pdp-main-img-wrap img {
    padding: 16px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    user-select: none;
    -webkit-user-drag: none;
  }

  /* swipe dots */
  .pdp-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    order: 2;
  }
  .pdp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    transition: background .2s;
    flex-shrink: 0;
  }
  .pdp-dot.active { background: #a51890; }

  /* Thumbnails: hide on mobile when dots are visible */
  .pdp-thumbs {
    order: 3 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    max-height: none !important;
    gap: 8px !important;
    padding-bottom: 4px !important;
    width: 100% !important;
  }
  .pdp-thumb {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
  }

  /* ── INFO PANEL ── */
  .pdp-info {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Title */
  .pdp-title {
    font-size: 18px !important;
    line-height: 1.35 !important;
    margin: 0 0 4px !important;
    word-break: break-word !important;
  }
  .pdp-subtitle { font-size: 12px !important; }

  /* Meta */
  .pdp-meta {
    font-size: 12px !important;
    gap: 2px 10px !important;
    margin-bottom: 10px !important;
    flex-wrap: wrap !important;
  }

  /* Price */
  .pdp-price { font-size: 26px !important; }
  .pdp-price-old { font-size: 14px !important; }
  .pdp-discount-badge { font-size: 11px !important; padding: 3px 8px !important; }

  /* Quick specs */
  .pdp-specs-grid {
    grid-template-columns: 1fr 1fr !important;
    margin: 10px 0 !important;
    width: 100% !important;
  }
  .pdp-spec-item { padding: 9px 10px !important; }
  .pdp-spec-item dt { font-size: 10px !important; }
  .pdp-spec-item dd { font-size: 13px !important; }

  .pdp-short-desc { font-size: 13px !important; }
  .pdp-advantages li { font-size: 13px !important; }

  /* Trust badges */
  .pdp-trust {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .pdp-trust-item { padding: 10px 4px !important; gap: 4px !important; }
  .pdp-trust-item svg { width: 20px !important; height: 20px !important; }
  .pdp-trust-item span { font-size: 10px !important; line-height: 1.25 !important; }

  /* In-panel CTA (hidden below sticky bar) */
  .pdp-cta { margin: 12px 0 10px !important; gap: 8px !important; }
  .pdp-btn-cart  { padding: 13px 18px !important; font-size: 15px !important; border-radius: 10px !important; }
  .pdp-btn-compare { padding: 10px 18px !important; font-size: 13px !important; border-radius: 10px !important; }

  /* ── TABS ── */
  .pdp-tabs-wrap {
    padding-bottom: 96px !important;  /* space for sticky bar */
    width: 100% !important;
  }
  .pdp-tabs-nav { overflow-x: auto !important; flex-wrap: nowrap !important; }
  .pdp-tab-btn { padding: 12px 14px !important; font-size: 13px !important; white-space: nowrap !important; }
  .pdp-tab-panel { padding: 20px 0 !important; }

  /* Description blocks */
  .pdp-descr-block { flex-direction: column !important; gap: 14px !important; margin-bottom: 24px !important; }
  .pdp-descr-block__img { flex: none !important; max-width: 100% !important; width: 100% !important; }
  .pdp-descr-block__text { font-size: 14px !important; line-height: 1.65 !important; }

  /* Feature cards */
  .pdp-features-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .pdp-feature-card { padding: 14px 10px !important; }
  .pdp-feature-card img { width: 48px !important; height: 48px !important; margin-bottom: 8px !important; }
  .pdp-feature-card p { font-size: 12px !important; }

  /* Specs table */
  .pdp-spec-table-wrap { max-width: 100% !important; overflow-x: auto !important; }
  .pdp-spec-table { min-width: 0 !important; width: 100% !important; }
  .pdp-spec-table th,
  .pdp-spec-table td { padding: 10px 12px !important; font-size: 13px !important; }
  .pdp-spec-table th { width: 50% !important; }

  /* ── STICKY BOTTOM CTA BAR ── */
  .pdp-mobile-bar {
    display: flex !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 200 !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    padding-bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    background: #fff !important;
    border-top: 1px solid #ececec !important;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08) !important;
  }
  .pdp-mobile-bar__price {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    white-space: nowrap;
  }
  .pdp-mobile-bar__price small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #bbb;
    text-decoration: line-through;
    margin-top: 2px;
  }
  .pdp-mobile-bar__cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    background: #F5A623;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
  }
  .pdp-mobile-bar__cta svg { width: 18px; height: 18px; flex-shrink: 0; }
  .pdp-mobile-bar__cta--unavail {
    background: #e0e0e0 !important;
    color: #999 !important;
    cursor: not-allowed !important;
  }
}

/* Hide sticky bar on desktop */
.pdp-mobile-bar { display: none; }

/* Very small phones */
@media (max-width: 380px) {
  .pdp-specs-grid { grid-template-columns: 1fr !important; }
  .pdp-trust { grid-template-columns: 1fr 1fr 1fr !important; }
  .pdp-trust-item span { font-size: 9px !important; }
  .pdp-price { font-size: 22px !important; }
  .pdp-title { font-size: 16px !important; }
  .pdp-mobile-bar__price { font-size: 14px !important; }
  .pdp-mobile-bar__cta { font-size: 13px !important; padding: 11px 10px !important; }
}
