/* ===== BREADCRUMB BAR ===== */
.pd-breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: .65rem 0;
  margin-top: var(--header-h);
}
.pd-breadcrumb-bar .breadcrumb {
  color: var(--gray-500);
  font-size: .82rem;
}
.pd-breadcrumb-bar .breadcrumb a { color: var(--gray-600); }
.pd-breadcrumb-bar .breadcrumb a:hover { color: var(--blue); }

/* ===== MAIN GRID ===== */
.pd-main { padding: 3rem 0 4rem; }

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* ===== GALLERY ===== */
.pd-gallery__main {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  /* Fond blanc des photos produits fondu dans le fond gris pâle */
  mix-blend-mode: multiply;
  transition: transform .4s ease;
}
.pd-gallery__main:hover .pd-gallery__img { transform: scale(1.04); }

.pd-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--gray-400);
}
.pd-gallery__placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--gray-300);
}
.pd-gallery__placeholder span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-500);
  max-width: 16rem;
}

.pd-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pd-badge--pop  { background: var(--blue); color: var(--white); }
.pd-badge--new  { background: #0d9488; color: var(--white); }
.pd-badge--promo{ background: #7c3aed; color: var(--white); }

.pd-gallery__thumbs {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
  overflow: hidden;
  padding: .35rem;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pd-thumb:hover { border-color: var(--blue-light); }
.pd-thumb.active { border-color: var(--blue); }

/* ===== PRODUCT INFO ===== */
.pd-category {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: .5rem;
}

.pd-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.pd-description {
  color: var(--gray-600);
  font-size: .975rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.pd-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--blue-xlight);
  border-radius: var(--radius);
  border: 1px solid var(--blue-light);
}
.pd-features li {
  font-size: .9rem;
  color: var(--gray-700);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
}
.pd-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

/* ===== AVAILABILITY ===== */
.pd-availability {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.pd-avail-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--gray-700);
}
.pd-avail-item svg { color: var(--blue); flex-shrink: 0; }

/* ===== ACTIONS ===== */
.pd-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.pd-actions .btn { flex: 1; min-width: 160px; justify-content: center; }

/* ===== CONTACT BOX ===== */
.pd-contact-box {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}
.pd-contact-box svg { color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.pd-contact-box div { display: flex; flex-direction: column; gap: .15rem; }
.pd-contact-box strong { font-size: .83rem; color: var(--gray-700); }
.pd-contact-box a { font-size: 1rem; font-weight: 700; color: var(--blue); }
.pd-contact-box a:hover { color: var(--blue-dark); }
.pd-contact-box span { font-size: .77rem; color: var(--gray-400); }

/* ===== TABS ===== */
.pd-tabs {
  border-top: 1px solid var(--gray-200);
  padding-top: 0;
  margin-bottom: 0;
}

.pd-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.pd-tab-btn {
  padding: 1rem 1.75rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-500);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
  margin-bottom: -1px;
}
.pd-tab-btn:hover { color: var(--blue); }
.pd-tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.pd-tab-panel { display: none; padding-bottom: 3rem; }
.pd-tab-panel.active { display: block; }

/* Specs table */
/* Rappel de la fiche technique PDF dans l'onglet Spécifications */
.pd-specs-pdf {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  max-width: 640px; margin-top: 1.25rem;
  padding: 1rem 1.25rem; border-radius: 12px;
  background: var(--gray-50, #f8fafc); border: 1px solid var(--gray-200);
}
.pd-specs-pdf p { margin: 0; color: var(--gray-600); font-size: .92rem; line-height: 1.55; flex: 1 1 260px; }
.pd-specs-pdf--empty {
  margin-top: 0; margin-bottom: 1rem;
  background: var(--blue-xlight); border: 1.5px solid var(--blue-light);
}
.pd-specs-pdf--empty p { color: var(--navy); font-weight: 600; }
/* Couleurs offertes (sélecteur de couleur / nuancier) */
.pd-colors { margin-top: 1.25rem; padding: 1rem 1.1rem 1.1rem; border: 1.5px solid var(--gray-200); border-radius: 12px; background: var(--white); }
.pd-colors__title { font-size: .95rem; color: var(--navy); margin: 0 0 .25rem; }
.pd-colors__hint { font-size: .8rem; color: var(--gray-500); margin: 0 0 .75rem; }
.pd-colors__list { display: flex; flex-wrap: wrap; gap: .6rem; }
.pd-color { display: flex; flex-direction: column; align-items: center; gap: .3rem; width: 84px; padding: .35rem .25rem; border: 1.5px solid var(--gray-200); border-radius: 10px; background: var(--white); cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.pd-color:hover, .pd-color.active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,.12); }
.pd-color--flat { cursor: default; }
.pd-color--flat:hover { border-color: var(--gray-200); box-shadow: none; }
.pd-color__img { display: block; width: 68px; height: 68px; border-radius: 8px; overflow: hidden; background: #f4f6f8; }
.pd-color__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pd-color__name { font-size: .72rem; line-height: 1.2; color: var(--gray-700, #374151); text-align: center; }
.pd-colors__strip img { display: block; max-width: 100%; height: auto; border-radius: 8px; }
.pd-colors__note { font-size: .78rem; color: var(--gray-500); margin: .75rem 0 0; }
.pd-full-desc .pd-detail { margin: 0 0 1rem; color: var(--gray-700, #374151); line-height: 1.7; }
.pd-detail-block { margin: 1.25rem 0; }
.pd-detail-block h4 { font-size: 1rem; color: var(--navy); margin: 0 0 .45rem; }
.pd-detail-block p { margin: 0 0 .5rem; color: var(--gray-700, #374151); line-height: 1.7; }
.pd-detail-block ul { margin: .25rem 0 0; padding-left: 1.2rem; color: var(--gray-700, #374151); line-height: 1.75; }
.pd-specs-pdf p.pd-specs-pdf__alt {
  flex: 1 1 100%; font-size: .85rem; font-weight: 400; color: var(--gray-600);
}
.pd-specs-pdf__alt a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.pd-specs-pdf__alt a:hover { color: var(--navy); }
.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  max-width: 640px;
}
.pd-specs-table tr { border-bottom: 1px solid var(--gray-100); }
.pd-specs-table tr:last-child { border-bottom: none; }
.pd-specs-table th {
  text-align: left;
  padding: .8rem 1.25rem .8rem 0;
  color: var(--gray-500);
  font-weight: 600;
  width: 200px;
  vertical-align: top;
}
.pd-specs-table td {
  padding: .8rem 0;
  color: var(--gray-800);
  font-weight: 500;
}

/* Full description tab */
.pd-full-desc p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; }
.pd-full-desc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.pd-full-desc ul li {
  font-size: .9rem;
  color: var(--gray-700);
  padding-left: 1.5rem;
  position: relative;
}
.pd-full-desc ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.pd-expert-note {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: var(--blue-xlight);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
}
.pd-expert-note svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.pd-expert-note p { margin: 0; font-size: .875rem; color: var(--gray-700); line-height: 1.65; }

/* ===== CONTENT SECTIONS (role / besoin / avantages / faq) ===== */
.pd-section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--gray-200);
}
.pd-section--alt {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-top: 2.75rem;
  border-top: none;
}
.pd-section__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.pd-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-xlight);
  color: var(--blue);
  flex-shrink: 0;
}
.pd-section__title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.pd-section__lead {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 760px;
}
.pd-role-text {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 820px;
}

/* Besoin checklist */
.pd-besoin-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: .9rem 2rem;
  max-width: 920px;
}
.pd-besoin-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.pd-besoin-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--blue-xlight) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Avantages cards */
.pd-avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.pd-avantages-card {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pd-avantages-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 6px 18px rgba(37, 99, 235, .08);
}
.pd-avantages-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  flex-shrink: 0;
}
.pd-avantages-card p {
  margin: 0;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* FAQ accordion */
.pd-faq {
  max-width: 820px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.pd-faq__item {
  border-bottom: 1px solid var(--gray-200);
}
.pd-faq__item:last-child { border-bottom: none; }
.pd-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}
.pd-faq__q:hover { background: var(--gray-50); }
.pd-faq__chevron {
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.pd-faq__item.open .pd-faq__chevron { transform: rotate(180deg); }
.pd-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.pd-faq__item.open .pd-faq__a {
  max-height: 600px;
  padding: 0 1.35rem 1.2rem;
}
.pd-faq__a p {
  margin: 0;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== RELATED PRODUCTS ===== */
.pd-related {
  background: var(--gray-50);
  padding: 5rem 0;
}
.pd-related .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ===== CLICKABLE CARD ===== */
.product-card--link {
  cursor: pointer;
}
.product-card--link:hover {
  transform: translateY(-6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pd-gallery__main { max-height: 400px; }
}
@media (max-width: 600px) {
  .pd-actions .btn { min-width: 100%; }
  .pd-tabs__nav { overflow-x: auto; }
  .pd-tab-btn { padding: .75rem 1.1rem; font-size: .84rem; }
}

/* ===== SAVIEZ-VOUS QUE (couverture des assureurs, produits CPAP) ===== */
.pd-didyouknow {
  margin-top: 1.25rem;
  background: var(--blue-xlight);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.pd-didyouknow strong {
  display: block;
  color: var(--blue-dark);
  font-size: .95rem;
  margin-bottom: .4rem;
}
.pd-didyouknow p {
  color: var(--gray-600);
  font-size: .86rem;
  line-height: 1.6;
  margin: 0 0 .6rem;
}
.pd-didyouknow ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.pd-didyouknow li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--gray-700);
  font-size: .86rem;
  line-height: 1.5;
}
.pd-didyouknow li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* =====================================================================
   MOBILE — REFONTE DE L'APPARENCE (août 2026) : fiche produit
   ===================================================================== */
/* Vignettes : inutile d'afficher une vignette unique (tous écrans) */
.pd-gallery__thumbs:has(> .pd-thumb:only-child) { display: none; }
/* Le clic sur une couleur ramène la photo sous l'en-tête, pas derrière */
.pd-gallery__main { scroll-margin-top: calc(var(--header-h) + 12px); }
/* Lien vers l'autre langue du PDF : cible tactile confortable */
.pd-specs-pdf__alt a { display: inline-block; padding: .5rem 0; line-height: 1.4; }
/* Boîte contact : liens cliquables confortables */
.pd-contact-box a { display: inline-flex; align-items: center; min-height: 40px; }

@media (max-width: 900px) {
  /* Une seule colonne et ordre de lecture mobile :
     photo → titre/description/caractéristiques/disponibilité/boutons → couleurs → encadrés */
  .pd-grid { display: flex; flex-direction: column; grid-template-columns: minmax(0, 1fr); gap: .35rem; }
  .pd-grid > *, .pd-info > * { min-width: 0; }
  .pd-gallery, .pd-info { display: contents; }
  /* Ordre mobile : nom du modèle en tête, puis la photo, les couleurs et le reste */
  .pd-info > * { order: 6; }
  .pd-category { order: 1; }
  .pd-title { order: 2; margin-bottom: 0; }
  .pd-gallery__main { order: 3; margin-top: .9rem; }
  .pd-gallery__thumbs { order: 4; margin-top: .5rem; }
  .pd-colors { order: 5; margin: .9rem 0; }
  .pd-didyouknow { order: 7; margin-top: .9rem; }
}

@media (max-width: 768px) {
  /* Fil d'Ariane compact : seulement « ‹ Catégorie parente » */
  .pd-breadcrumb-bar { padding: .35rem 0; }
  .pd-breadcrumb-bar .breadcrumb { margin-bottom: 0; }
  .pd-breadcrumb-bar .breadcrumb > a:not(#bc-subcat-link):not(#bc-subsub-link),
  .pd-breadcrumb-bar .breadcrumb > .breadcrumb__sep,
  .pd-breadcrumb-bar #bc-name { display: none; }
  .pd-breadcrumb-bar .breadcrumb:has(#bc-subsub-link:not([style*="display:none"]):not([style*="display: none"])) #bc-subcat-link { display: none; }
  .pd-breadcrumb-bar #bc-subcat-link, .pd-breadcrumb-bar #bc-subsub-link { display: inline-flex; align-items: center; min-height: 44px; font-size: .95rem; font-weight: 600; color: var(--blue); }
  .pd-breadcrumb-bar #bc-subcat-link::before, .pd-breadcrumb-bar #bc-subsub-link::before { content: '‹'; font-size: 1.3rem; line-height: 1; margin-right: .4rem; }

  .pd-main { padding: 1.25rem 0 2.25rem; }
  .pd-grid { margin-bottom: 2rem; }
  .pd-gallery__main { aspect-ratio: 4 / 3; max-height: 320px; border-radius: 14px; }
  .pd-gallery__img { padding: 1rem; }
  .pd-gallery__thumbs { gap: .5rem; }
  .pd-thumb { width: 64px; height: 64px; }
  .pd-category { font-size: .82rem; }
  .pd-title { font-size: 1.55rem; margin-bottom: .8rem; }
  .pd-description { font-size: .98rem; margin-bottom: 1.1rem; }
  .pd-features { padding: 1rem 1.1rem; }
  .pd-features li { font-size: .95rem; }
  .pd-availability { padding: .95rem 1rem; gap: .55rem; margin-bottom: 1.25rem; }
  .pd-avail-item { font-size: .92rem; }
  .pd-actions { flex-direction: column; gap: .65rem; margin-bottom: 1.1rem; }
  .pd-actions .btn { width: 100%; min-width: 0; min-height: 48px; white-space: normal; }
  .pd-contact-box strong { font-size: .92rem; }
  .pd-contact-box span { font-size: .85rem; }

  /* Couleurs : grille de 3 pastilles, libellés lisibles */
  .pd-colors { padding: .9rem .9rem 1rem; }
  .pd-colors__title { font-size: 1rem; }
  .pd-colors__hint { font-size: .9rem; }
  .pd-colors__note { font-size: .85rem; line-height: 1.5; }
  .pd-colors__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .pd-color { width: auto; }
  .pd-color__name { font-size: .82rem; }

  /* Onglets : pleine largeur, défilables sans barre visible ; tableau de specs empilé */
  .pd-tabs__nav { margin-bottom: 1.25rem; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pd-tabs__nav::-webkit-scrollbar { display: none; }
  .pd-tab-btn { flex: 1 0 auto; padding: .85rem .9rem; font-size: .92rem; white-space: nowrap; min-height: 46px; }
  .pd-tabs__nav:has(.pd-tab-btn:only-child) .pd-tab-btn { pointer-events: none; border-bottom-color: transparent; padding-left: 0; font-size: 1.1rem; color: var(--navy); }
  .pd-tab-panel { padding-bottom: 1.25rem; }
  .pd-specs-table, .pd-specs-table tbody, .pd-specs-table tr, .pd-specs-table th, .pd-specs-table td { display: block; width: 100%; }
  .pd-specs-table tr { padding: .55rem 0; }
  .pd-specs-table th { padding: 0 0 .1rem; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); }
  .pd-specs-table td { padding: 0; font-size: .96rem; }
  .pd-specs-pdf { padding: .9rem 1rem; gap: .75rem; }
  .pd-specs-pdf .btn { width: 100%; }
  .pd-section { padding: 1.75rem 0; }
  .pd-section--alt { margin-top: 1.25rem; padding: 1.6rem 1rem; border-radius: var(--radius); }
  .pd-section__head { margin-bottom: .9rem; }
  .pd-faq__q { padding: .95rem .85rem; font-size: 1rem; }
  .pd-faq__a p { font-size: .95rem; }

  /* Produits liés : cartes verticales compactes dans le carrousel */
  .pd-related { padding: 2.5rem 0 2.75rem; }
  #pd-related-grid.pd-rel-track { gap: .85rem; }
  #pd-related-grid.pd-rel-track > .product-card { flex: 0 0 84%; max-width: 84%; flex-direction: column; }
  #pd-related-grid .product-card__img { width: 100%; min-width: 0; height: 170px; min-height: 0; }
  #pd-related-grid .product-card__body > p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  #pd-related-grid .product-card--link .product-card__body::after { content: none; }
  #pd-related-grid .product-card--link .product-card__footer { display: flex; }
  #pd-related-grid .product-card--link .product-card__footer .btn { width: 100%; }
}
