/*
Theme Name:   Panocolor 2026
Theme URI:    https://www.panocolor.fr
Description:  Thème Panocolor 2026 — Refonte charte graphique. Block theme WordPress FSE.
Author:       Panocolor
Author URI:   https://www.panocolor.fr
Version:      2.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain:  panocolor-2026
*/

/* ============================================================
   VARIABLES CSS - Charte graphique Panocolor 2026
   ============================================================ */
:root {
  /* Couleurs principales */
  --pc-navy:       #060D38;
  --pc-cyan:       #78E3FE;
  --pc-blue:       #5FA9FD;
  --pc-yellow:     #F28C00;
  --pc-red:        #E63946;
  --pc-grey-light: #F5F5F5;

  /* Couleurs fonctionnelles */
  --pc-white:      #FFFFFF;
  --pc-text:       #1A1A2E;
  --pc-text-light: #5A5A7A;
  --pc-border:     #D8DCE0;

  /* Typographies */
  --font-title:    'Poppins', sans-serif;
  --font-body:     'Poppins', sans-serif;

  /* Tailles de police */
  --fs-h1:   clamp(2rem, 4vw, 3.5rem);
  --fs-h2:   clamp(1.6rem, 3vw, 2.5rem);
  --fs-h3:   clamp(1.2rem, 2vw, 1.75rem);
  --fs-body: 1rem;
  --fs-sm:   0.875rem;

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Conteneur */
  --container-max: 1280px;
  --container-pad: 1.5rem;

  /* Rayons */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   15px;
  --radius-pill: 999px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(6, 13, 56, 0.08);
  --shadow-md: 0 4px 24px rgba(6, 13, 56, 0.12);
  --shadow-lg: 0 8px 48px rgba(6, 13, 56, 0.18);

  /* Transitions */
  --transition: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* Empêche le scroll horizontal sans casser position:sticky */
}

body {
  font-family: var(--font-body);
  font-size: 0;
  font-weight: 300;
  color: var(--pc-text);
  background-color: var(--pc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body > * {
  font-size: var(--fs-body);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pc-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--pc-navy);
}

/* ============================================================
   TYPOGRAPHIES
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--pc-navy);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  margin-bottom: var(--space-sm);
  color: var(--pc-text-light);
}

/* ============================================================
   CONTENEUR
   ============================================================ */
.pc-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  width: 100%;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 0 14px 0 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.pc-btn--primary {
  background-color: var(--pc-cyan);
  color: var(--pc-navy);
  border-color: var(--pc-cyan);
}

.pc-btn--primary:hover {
  background-color: var(--pc-blue);
  border-color: var(--pc-blue);
  color: var(--pc-white);
}

.pc-btn--navy {
  background-color: var(--pc-navy);
  color: #fff;
  border-color: var(--pc-navy);
}
.pc-btn--navy:hover {
  background-color: var(--pc-blue);
  border-color: var(--pc-blue);
  color: #fff;
}


.pc-btn--outline:hover {
  background-color: var(--pc-navy);
  color: var(--pc-white);
}

.pc-btn--white {
  background-color: var(--pc-white);
  color: var(--pc-navy);
  border-color: var(--pc-white);
}

.pc-btn--white:hover {
  background-color: var(--pc-cyan);
  border-color: var(--pc-cyan);
}

/* ============================================================
   HEADER
   ============================================================ */

/*
 * Le header template part est enveloppé par WP dans
 * <header class="wp-block-template-part">.
 * C'est CE wrapper qu'il faut rendre sticky — pas l'élément interne.
 * L'offset gère la barre d'admin WP quand on est connecté.
 */
.wp-site-blocks > header.wp-block-template-part {
  position: sticky;
  top: 0;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 1000;
}

/*
 * Header sticky également sur les templates classiques (header.php),
 * utilisés par les fiches produits, les catégories et les pages.
 */
.pc-header {
  position: sticky;
  top: 0;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 1000;
}

.pc-header {
  background-color: var(--pc-white);
  box-shadow: 0 1px 0 rgba(6,13,56,0.08);
  transition: box-shadow 0.2s ease;
}

.pc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-md);
}

.pc-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.pc-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Navigation principale */
.pc-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Liens et boutons-liens du nav */
.pc-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--pc-navy);
  white-space: nowrap;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.pc-nav__link:hover,
.pc-nav__item.is-open > .pc-nav__link {
  color: var(--pc-blue);
}

.pc-nav__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.pc-nav__item.is-open > .pc-nav__link .pc-nav__chevron {
  transform: rotate(180deg);
}

/* Contact = pill navy, 2 coins arrondis haut-gauche / bas-droite */
.pc-nav__link--contact {
  background-color: var(--pc-navy);
  color: var(--pc-white) !important;
  border-radius: 12px 0 12px 0;
  padding: 0.5rem 1.1rem;
  margin-left: 0.25rem;
}
.pc-nav__link--contact:hover {
  background-color: var(--pc-blue);
  color: var(--pc-white) !important;
}

/* ---- MEGA-MENU ---- */
.pc-mega {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--pc-white);
  border-top: 3px solid var(--pc-cyan);
  box-shadow: 0 8px 30px rgba(6,13,56,0.12);
  z-index: 999;
  padding: 2rem 0 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.pc-nav__item--mega.is-open .pc-mega,
.pc-nav__item--mega:hover .pc-mega,
.pc-mega:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Étend la zone de survol du LI pour couvrir l'espace entre le trigger et le mega-menu / dropdown */
@media (min-width: 1025px) {
  .pc-nav__item--mega,
  .pc-nav__item--has-sub {
    padding-bottom: 40px;
    margin-bottom: -40px;
  }
  /* Aligne le haut du dropdown avec le bas du header (72px),
     comme le mega-menu (position fixed top:72px) */
  .pc-nav__item--has-sub .pc-dropdown {
    top: calc(100% - 19px);
  }
}

.pc-mega__grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 300px)) !important;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.pc-mega__col-title {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-navy);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--pc-cyan);
  text-decoration: none;
  display: block;
}
.pc-mega__col-title:hover {
  color: var(--pc-blue);
}

.pc-mega__sub-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pc-blue);
  margin: 0.75rem 0 0.4rem;
}

.pc-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-mega__link {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: #444;
  transition: color 0.15s, padding-left 0.15s;
  text-decoration: none;
}

.pc-mega__link:hover {
  color: var(--pc-navy);
  padding-left: 6px;
}

.pc-mega__cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pc-grey-light);
}

.pc-mega__cta-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-blue);
  text-decoration: none;
}
.pc-mega__cta-link:hover { color: var(--pc-navy); }

/* ---- DROPDOWN SIMPLE (sous-menu) ---- */
.pc-nav__item--has-sub {
  position: relative;
}

.pc-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 260px;
  background: var(--pc-white);
  border-top: 3px solid var(--pc-cyan);
  box-shadow: 0 8px 30px rgba(6,13,56,0.12);
  border-radius: 0 0 8px 8px;
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 999;
}

.pc-nav__item--has-sub.is-open .pc-dropdown,
.pc-nav__item--has-sub:hover .pc-dropdown,
.pc-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.pc-dropdown__link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: #333;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.pc-dropdown__link:hover {
  background: var(--pc-grey-light);
  color: var(--pc-navy);
}

/* Numéro de téléphone dans header */
.pc-header__phone {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--pc-navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  flex-shrink: 0;
}
.pc-header__phone:hover { color: var(--pc-blue); }

/* Burger toggle */
.pc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.pc-nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pc-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pc-nav-toggle[aria-expanded="true"] .pc-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-nav-toggle[aria-expanded="true"] .pc-nav-toggle__bar:nth-child(2) { opacity: 0; }
.pc-nav-toggle[aria-expanded="true"] .pc-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header avec ombre au scroll */
.pc-header--scrolled {
  box-shadow: 0 4px 20px rgba(6,13,56,0.14);
  transition: box-shadow 0.2s ease;
}

/* Overlay fond sombre quand menu mobile ouvert */
.pc-nav-overlay {
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(6,13,56,0.45);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.pc-nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE HEADER (mobile ≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .pc-nav-toggle { display: flex; }
  .pc-header__phone { display: none; }

  .pc-nav-wrapper {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pc-white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 998;
  }

  .pc-nav-wrapper.is-open {
    transform: translateX(0);
  }

  .pc-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
  }

  .pc-nav__item {
    border-bottom: 1px solid var(--pc-grey-light);
  }

  .pc-nav__link {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    justify-content: space-between;
  }

  /* Mega et dropdown : affichage statique sur mobile */
  .pc-mega,
  .pc-dropdown {
    position: static;
    opacity: 1 !important;
    visibility: hidden;
    transform: none !important;
    box-shadow: none;
    border-top: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }

  .pc-nav__item.is-open .pc-mega,
  .pc-nav__item.is-open .pc-dropdown {
    visibility: visible;
    max-height: 1000px;
    pointer-events: auto;
  }

  .pc-mega { padding: 0; }
  .pc-mega > .pc-container { padding: 0; }

  .pc-mega__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pc-mega__col {
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    border-bottom: 1px solid var(--pc-grey-light);
  }

  .pc-mega__col-title {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .pc-mega__link {
    padding: 0.35rem 0;
    font-size: 0.9rem;
  }

  .pc-mega__cta { display: none; }

  .pc-dropdown { padding: 0; }
  .pc-dropdown__link {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  }

  .pc-nav__link--contact {
    margin: 1rem 1.5rem;
    justify-content: center;
    border-radius: var(--radius-pill);
  }
}


/* ============================================================
   SECTION HERO — VIDÉO EN ARRIÈRE-PLAN
   ============================================================ */

/* Boutons génériques (utilisés dans le hero vidéo) */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 0 14px 0 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
}

.pc-btn--cyan {
  background-color: var(--pc-cyan);
  color: var(--pc-navy);
  border-color: var(--pc-cyan);
}
.pc-btn--cyan:hover {
  background-color: var(--pc-white);
  color: var(--pc-navy);
  border-color: var(--pc-white);
}

.pc-btn--outline-white {
  background-color: transparent;
  color: var(--pc-white);
  border-color: rgba(255,255,255,0.55);
}
.pc-btn--outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--pc-white);
}

/* Hero vidéo */
.pc-hero-video {
  position: relative;
  min-height: clamp(480px, 70vh, 720px);
  display: flex;
  align-items: flex-start;  /* le contenu reste en haut */
  overflow: hidden;
  background-color: var(--pc-grey-light);
}
/* Quand la vidéo est chargée, fond navy en fallback sous la vidéo */
.pc-hero-video--has-video {
  background-color: var(--pc-navy);
}

.pc-hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.pc-hero-video__overlay {
  position: absolute;
  inset: 0;
  background: transparent;   /* pas d'overlay sans vidéo (fond déjà gris) */
  z-index: 1;
}
.pc-hero-video--has-video .pc-hero-video__overlay {
  background: linear-gradient(to left, rgba(6,13,56,0.55) 0%, rgba(6,13,56,0.15) 60%, transparent 100%);
}

.pc-hero-video__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 50%;          /* moitié haute exacte */
  padding-left: 33%;    /* 1/3 gauche = marge vide */
  padding-right: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;  /* centré verticalement dans la moitié haute */
  text-align: left;
  box-sizing: border-box;
}

.pc-hero-video__text {
  max-width: 640px;
}

.pc-hero-video .pc-hero__label {
  display: inline-block;
  color: var(--pc-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pc-hero-video .pc-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  color: var(--pc-navy);   /* par défaut : fond gris → texte navy */
  line-height: 1.12;
  margin-bottom: 0;
  white-space: nowrap;
  text-shadow: none;
}
/* Avec vidéo : texte blanc avec ombre */
.pc-hero-video--has-video .pc-hero__title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(6,13,56,0.45);
}

.pc-hero-video .pc-hero__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── Animation vidéo pleine largeur ── */
.pc-anim {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--pc-navy); /* fallback */
}
.pc-anim__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.pc-anim__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,13,56,0.5) 0%, rgba(6,13,56,0.1) 100%);
  z-index: 1;
}
.pc-anim__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
}
.pc-anim__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 20px rgba(6,13,56,0.5);
}
/* Quand il n'y a pas de vidéo, fond statique */
.pc-anim:not(.pc-anim--has-video) {
  background-color: var(--pc-blue);
  min-height: auto;
  padding: 3rem 0;
}
.pc-anim:not(.pc-anim--has-video) .pc-anim__title {
  color: #ffffff;
}

.pc-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Badge téléphone en bas à droite du héro */
.pc-hero__phone-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 0.25rem;
  background: rgba(6,13,56,0.35);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.pc-hero__phone-badge:hover {
  color: var(--pc-cyan);
  border-color: var(--pc-cyan);
}
.pc-hero__phone-badge svg {
  flex-shrink: 0;
}

/* Anciens styles hero (2 colonnes) — conservés pour compatibilité */
.pc-hero {
  background-color: var(--pc-white);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.pc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.pc-hero__label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--pc-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.pc-hero__title {
  font-size: var(--fs-h1);
  color: var(--pc-navy);
  margin-bottom: var(--space-md);
}

.pc-hero__subtitle {
  font-size: 1.125rem;
  color: var(--pc-text-light);
  margin-bottom: var(--space-md);
}

.pc-hero__image {
  position: relative;
}

/* ============================================================
   SECTION PRODUITS
   ============================================================ */
.pc-section {
  padding: var(--space-xl) 0;
}

.pc-section--grey {
  background-color: var(--pc-grey-light);
}

.pc-section--navy {
  background-color: var(--pc-navy);
  color: var(--pc-white);
}

.pc-section--navy h2,
.pc-section--navy h3 {
  color: var(--pc-white);
}

.pc-section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.pc-section__header h2 {
  margin-bottom: var(--space-sm);
}

.pc-section__header p {
  font-size: 1.125rem;
  max-width: 640px;
  margin-inline: auto;
}

/* Grille produits */
.pc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.pc-product-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform 0.2s;
}

.pc-product-card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.pc-product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px 0 24px 0;
  display: block;
}

.pc-product-card__body {
  padding: 0.75rem 0 0;
}

.pc-product-card__category {
  font-size: 0.75rem;
  color: var(--pc-blue);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

.pc-product-card__title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--pc-navy);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.pc-product-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.pc-product-card__link::after {
  content: '→';
  transition: transform 0.2s;
}

.pc-product-card:hover .pc-product-card__link::after {
  transform: translateX(4px);
}

/* ============================================================
   BANDEAU CTA (ancien — conservé pour compatibilité)
   ============================================================ */
/* (styles CTA banner déplacés plus bas — section 'CTA BANNER (shared)') */

.pc-cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}

.pc-cta-banner__title {
  font-size: var(--fs-h2);
  color: var(--pc-white);
  margin-bottom: var(--space-xs);
}

.pc-cta-banner__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ============================================================
   CTA "À vos côtés" — grille 6 colonnes
   ============================================================ */
.pc-cta-avos-cotes {
  display: grid;
  grid-template-columns: 15% 2% 15% 2% 60%;
  margin-right: 6%;
  align-items: center;
  min-height: 480px;
  border-radius: 0 0 5rem 0;
  overflow: hidden;
}

/* Image secondaire — colonne 1, en bas */
.pc-cta-avos-cotes__img-secondary {
  grid-column: 1;
  align-self: end;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 15px 0 0 0;
  box-shadow: 0 8px 36px rgba(6,13,56,0.22);
  display: block;
  z-index: 1;
}

/* Image principale — colonne 3, centrée verticalement */
.pc-cta-avos-cotes__img {
  grid-column: 3;
  align-self: center;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0 0 15px 0;
  box-shadow: 0 8px 36px rgba(6,13,56,0.22);
  display: block;
  z-index: 2;
  margin-left: -10%;   /* léger chevauchement sur l'image gauche */
}

/* Contenu texte — colonne 5 */
.pc-cta-avos-cotes__content {
  grid-column: 5;
}

/* Colonnes 2,4,6 = gaps naturels, pas d'éléments */

.pc-cta-avos-cotes__kicker {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0;
  position: relative;
  padding-left: 3.5rem;
  line-height: 1.15;
}
/* Flèche absolue : occupe 3.5rem, texte du kicker aligné avec le reste */
.pc-cta-avos-cotes__kicker .pc-cta-avos-cotes__arrow {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 3rem;
  height: 3rem;
  margin: 0;
  display: block;
}
/* Partie blanche du kicker (après la virgule) */
.pc-cta-avos-cotes__kicker-white {
  color: var(--pc-white);
  font-weight: 700;
}

/* Flèche blog — bleue */
.pc-blog-arrow {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  vertical-align: middle;
  margin-right: 0.35em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%235FA9FD' d='M408 160c0-13.3-10.7-24-24-24s-24 10.7-24 24v150.1L129.9 80.1c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L326.1 344H176c-13.3 0-24 10.7-24 24s10.7 24 24 24h208c13.3 0 24-10.7 24-24V160z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Version générique (hérite couleur texte) */
.pc-arrow-down-right {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  vertical-align: middle;
  margin-right: 0.35em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='currentColor' d='M408 160c0-13.3-10.7-24-24-24s-24 10.7-24 24v150.1L129.9 80.1c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L326.1 344H176c-13.3 0-24 10.7-24 24s10.7 24 24 24h208c13.3 0 24-10.7 24-24V160z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Version forcée blanche (pour fonds foncés) */
.pc-cta-avos-cotes__arrow {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  vertical-align: middle;
  margin-right: 0.35em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M408 160c0-13.3-10.7-24-24-24s-24 10.7-24 24v150.1L129.9 80.1c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L326.1 344H176c-13.3 0-24 10.7-24 24s10.7 24 24 24h208c13.3 0 24-10.7 24-24V160z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pc-cta-avos-cotes__title {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--pc-white);
  margin: 0 0 1.25rem;
  line-height: 1.15;
  white-space: normal;
  padding-left: 3.5rem;   /* arrow 3rem + gap 0.5rem */
}

.pc-cta-avos-cotes__sep {
  width: 56px;
  height: 4px;
  background: var(--pc-white);
  margin-bottom: 1.25rem;
  margin-left: 3.5rem;   /* aligné avec le texte après la flèche */
}

.pc-cta-avos-cotes__desc {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  padding-left: 3.5rem;
}
.pc-cta-avos-cotes__desc p { color: inherit; }

.pc-cta-avos-cotes__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border: none;
  color: var(--pc-navy);
  background: var(--pc-white);
  border-radius: 12px 0 12px 0;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin-left: 3.5rem;    /* aligné avec le texte après la flèche */
}

.pc-cta-avos-cotes__btn:hover {
  background: var(--pc-navy);
  color: var(--pc-white);
  transform: translateY(-2px);
}

.pc-cta-avos-cotes__btn-arrow {
  color: var(--pc-blue);
  transition: color 0.2s;
}

.pc-cta-avos-cotes__btn:hover .pc-cta-avos-cotes__btn-arrow {
  color: var(--pc-white);
}

@media (max-width: 768px) {
  .pc-cta-avos-cotes {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 0 0 2.5rem 0;
    padding: 0;
    gap: 0;
  }
  /* Image 1 : pleine largeur */
  .pc-cta-avos-cotes__img-secondary {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0;
    box-shadow: none;
    z-index: 1;
  }
  /* Image 2 : masquée */
  .pc-cta-avos-cotes__img {
    display: none;
  }
  /* Texte en dessous */
  .pc-cta-avos-cotes__content {
    grid-column: 1;
    grid-row: 2;
    padding: 2rem 1.5rem 3rem;
  }
  .pc-cta-avos-cotes__title {
    white-space: normal;
  }
}
  
/* ============================================================
   ACCENT COULEUR dans les titres
   ============================================================ */
.pc-accent-blue {
  color: var(--pc-blue);
}

/* Double ligne déco sous les h2 de section (tricolore) */
.pc-section__deco {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

.pc-section__deco span {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 0;
}

.pc-section__deco span:nth-child(1) { background: var(--pc-navy); }
.pc-section__deco span:nth-child(2) { background: #ffffff; }
.pc-section__deco span:nth-child(3) { background: var(--pc-red); }

/* Variante simple ligne (section logos "Ils nous font confiance") */
.pc-section__deco--simple span:nth-child(1) { background: var(--pc-navy); width: 56px; }
.pc-section__deco--simple span:nth-child(2),
.pc-section__deco--simple span:nth-child(3) { display: none; }

/* ============================================================
   POPUP FLOTTANT — Widget "Besoin d'information ?"
   ============================================================ */
.pc-contact-widget {
  position: fixed;
  left: 0;
  top: 35%;
  z-index: 9999;
}
.pc-contact-widget__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  background: var(--pc-cyan);
  color: var(--pc-navy);
  padding: 1rem 1.1rem 1rem 0.9rem;
  border-radius: 0 12px 12px 0;
  text-decoration: none;
  box-shadow: 3px 3px 16px rgba(6,13,56,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 140px;
}
.pc-contact-widget__inner:hover {
  transform: translateX(4px);
  box-shadow: 5px 5px 20px rgba(6,13,56,0.28);
  color: var(--pc-navy);
}
.pc-contact-widget__icon {
  background: var(--pc-navy);
  color: var(--pc-cyan);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.pc-contact-widget__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pc-navy);
  line-height: 1.3;
}
.pc-contact-widget__sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--pc-navy);
  opacity: 0.75;
  line-height: 1.3;
}
.pc-contact-widget__phone {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-top: 0.3rem;
}
@media (max-width: 768px) {
  .pc-contact-widget {
    top: auto;
    bottom: 1.5rem;
    transform: none;
    left: auto;
    right: 1rem;
  }
  .pc-contact-widget__inner {
    border-radius: 50%;
    padding: 0.75rem;
    min-width: auto;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
  }
  .pc-contact-widget__label,
  .pc-contact-widget__sub,
  .pc-contact-widget__phone {
    display: none;
  }
  .pc-contact-widget__icon {
    margin: 0;
    width: 28px;
    height: 28px;
  }
}

/* ============================================================
   LOGOS CLIENTS
   ============================================================ */
.pc-clients {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
}

.pc-clients__label {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--pc-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.pc-clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.pc-clients__logos img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--transition), opacity var(--transition);
}

.pc-clients__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pc-footer {
  background-color: var(--pc-navy);
  color: rgba(255,255,255,0.8);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Grille principale : 3 colonnes 45/30/25 */
.pc-footer__main {
  display: grid;
  grid-template-columns: 45fr 30fr 25fr;
  gap: 3rem;
  padding: 3.5rem 0 3rem;
}

/* Sécurité : grid footer FSE sur templates PHP (wp-block-columns sans block styles) */
.pc-footer .pc-footer__grid.wp-block-columns {
  display: flex !important;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3.5rem 0 3rem;
}
.pc-footer .pc-footer__grid > .wp-block-column {
  flex: 1 1 180px;
  min-width: 0;
}
.pc-footer .pc-footer__col-brand.wp-block-column { flex: 0 0 28%; }

/* Fallback sans classes wp-block (templates PHP classiques) */
.pc-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3.5rem 0 3rem;
}
.pc-footer__grid > .pc-footer__col {
  flex: 1 1 180px;
  min-width: 0;
}
.pc-footer__grid > .pc-footer__col:first-child { flex: 0 0 28%; }

.pc-footer__logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.pc-footer__logo-link {
  display: block;
  margin-bottom: 1rem;
}
.pc-footer__logo-link img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.pc-footer__tagline {
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

/* Rangée contact (3 sous-colonnes) */
.pc-footer__contact-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.pc-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pc-footer__contact-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pc-white);
}
.pc-footer__contact-value,
.pc-footer__contact-value a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.pc-footer__contact-value a:hover {
  color: var(--pc-cyan);
}

/* Icônes réseaux sociaux — images client */
.pc-footer__social {
  display: flex;
  gap: 0.6rem;
}
.pc-footer__social-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  line-height: 0;
}
.pc-footer__social-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.pc-footer__social-link img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 8px;
}

/* Titres colonnes */
.pc-footer__col-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pc-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

/* Liens basiques */
.pc-footer__links {
  list-style: none;
}
.pc-footer__links li {
  margin-bottom: 0.5rem;
}

/* Liens avec description (col Nos mobiliers) */
.pc-footer__links--with-desc li {
  margin-bottom: 1.1rem;
}
.pc-footer__links-title {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--pc-blue) !important;
  text-decoration: none;
}
.pc-footer__links-title:hover {
  text-decoration: underline;
}
.pc-footer__links--with-desc li p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50);
  margin: 0.2rem 0 0;
  line-height: 1.45;
}

/* ── Footer responsive ── */
@media (max-width: 768px) {
  .pc-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .pc-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }
  .pc-footer__grid {
    flex-direction: column;
  }
  .pc-footer__grid > .pc-footer__col:first-child {
    flex: 1 1 auto;
  }
}


/* ==============================================================
   PAGE CATÉGORIE (taxonomy-nc_cat_category)
   ============================================================== */

/* Hero — navy + overlay, aligné Figma */
/* ============================================================
   HERO CATÉGORIE
   ============================================================ */
.pc-cat-hero {
  background: #fff;
  padding: 3rem 0 2.5rem;
  text-align: center;
  border-bottom: none;
}

/* Titre principal N1 : "TRANSPORT URBAIN" (Figma) */
.pc-cat-hero__label {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--pc-blue);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
/* Sous-titre N1 : "Mobiliers Panocolor..." (Figma) */
.pc-cat-hero__hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 auto 0.75rem;
  line-height: 1.25;
  white-space: nowrap;
}
.pc-cat-hero__hero-title strong {
  color: var(--pc-blue);
}

.pc-cat-hero__deco {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 0.8rem auto 0;
}
.pc-cat-hero__deco span {
  display: block;
  height: 4px;
  width: 80px;
  border-radius: 0;
}
/* Drapeau tricolore Panocolor sous titre catégorie */
.pc-cat-hero__deco span:nth-child(1) { background: var(--pc-navy); width: 80px; }
.pc-cat-hero__deco span:nth-child(2) { background: #ffffff; width: 80px; }
.pc-cat-hero__deco span:nth-child(3) { background: var(--pc-red); width: 80px; }

/* Navigation par sous-catégorie — pills Figma */
.pc-cat-nav {
  background: #fff;
  border-bottom: 1px solid #E6E8EB;
  padding: 1rem 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}

.pc-cat-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-cat-nav__item {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  border: 1.5px solid #D8DCE0;
  color: var(--pc-navy);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.pc-cat-nav__item:hover,
.pc-cat-nav__item.is-active {
  border-color: var(--pc-navy);
  background: var(--pc-navy);
  color: #fff;
}

/* ── INTRO CATÉGORIE N2 : carte bleue décalée à gauche, coins gauche arrondis ── */
.pc-cat-intro {
  background: #5FA9FD;
  border-radius: 0 0 0 60px;
  overflow: hidden;
  /* Décale la carte : commence après ~1/3 du viewport */
  margin-left: max(var(--container-pad), calc((100vw - 1240px) / 2 + 320px));
}

.pc-cat-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  max-width: 100%;
}

.pc-cat-intro__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
}

.pc-cat-intro__arrow {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.pc-cat-intro__arrow svg {
  width: 28px;
  height: 28px;
}

/* Heading avec flèche en retrait gauche, texte aligné à sa propre gauche */
.pc-cat-intro__heading {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0;
}
.pc-cat-intro__arrow-wrap {
  flex-shrink: 0;
  margin-top: 0.35em; /* aligner verticalement avec la baseline du titre */
}
.pc-cat-intro__arrow-wrap svg {
  width: 22px;
  height: 22px;
  display: block;
}
.pc-cat-intro__titles {
  flex: 1;
  min-width: 0;
}
/* Label "Nos Abribus" en navy */
.pc-cat-intro__label-text {
  font-family: var(--font-title) !important;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: var(--pc-navy) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}
/* Sous-titre blanc — rend le HTML (strong, br) */
.pc-cat-intro__subtitle {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.pc-cat-intro__subtitle strong {
  color: var(--pc-navy);
  font-weight: 800;
}
/* Filet blanc généré automatiquement après le sous-titre */
.pc-cat-intro__subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin-top: 0.75rem;
}
/* Texte descriptif indenté pour aligner avec les titres (après la flèche) */
.pc-cat-intro__text-p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #ffffff;
  margin: 0;
  padding-left: calc(22px + 0.75rem); /* = largeur svg + gap du heading */
}
/* Le filet est g\u00e9r\u00e9 par le <hr class="pc-cat-intro__sep"> dans le HTML */

/* Ancienne d\u00e9co supprim\u00e9e \u2014 plus utilis\u00e9e dans l'intro */

.pc-cat-intro__desc,
.pc-cat-intro__desc p,
.pc-cat-intro__desc * {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #ffffff !important;
  margin-top: 0;
}
.pc-cat-intro__desc p { margin-bottom: 0.6rem; }

.pc-cat-intro__img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 0 0 0 60px;
}
.pc-cat-intro__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .pc-cat-intro {
    border-radius: 0;
    margin-left: 0;
  }
  .pc-cat-intro__inner {
    grid-template-columns: 1fr;
  }
  .pc-cat-intro__img {
    position: static;
    min-height: 240px;
    order: -1;
    border-radius: 0 0 0 40px;
  }
  .pc-cat-intro__img img {
    position: static;
    width: 100%;
    height: 240px;
  }
  .pc-cat-intro__text {
    padding: 2.5rem 2rem;
  }
}

/* Grille produits (3 colonnes) — cartes avec images à 2 coins */
.pc-products-grid--large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .pc-products-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pc-products-grid--large {
    grid-template-columns: 1fr;
  }
  .pc-cat-nav {
    position: static;
  }
}

/* ── Grille group-card 4 colonnes (produits cat) ── */
.pc-groups-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .pc-groups-grid--4col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .pc-groups-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pc-groups-grid--4col { grid-template-columns: 1fr; }
}

/* ── Grille group-card 5 colonnes (accessoires) ── */
.pc-groups-grid--5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .pc-groups-grid--5col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .pc-groups-grid--5col { grid-template-columns: repeat(2, 1fr); }
}

/* ── Titre de section ── */
.pc-section-title {
  font-family: var(--font-title);
  font-size: 2.2rem;  /* 35px Figma */
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 2.5rem;
  line-height: 1.2;
}
.pc-section-title--center { text-align: center; }
.pc-section-title em { color: var(--pc-blue); font-style: italic; }

/* ── Intro cat MAIN : miroir exact de "À vos côtés" ─────────────
   Fond bleu #5FA9FD, texte blanc gauche, image full-bleed droite
   Coin arrondi bas-GAUCHE uniquement (miroir)
   ──────────────────────────────────────────────────────────────── */
.pc-cat-intro--main {
  background: #5FA9FD;
  border-radius: 0 0 0 5rem;
}
.pc-cat-intro--main .pc-cat-intro__inner {
  grid-template-columns: 55% 45%;
  margin-left: 6%;
  min-height: 480px;
}
.pc-cat-intro--main .pc-cat-intro__text {
  padding: 4rem 3rem 4rem 2rem;
}
/* Kicker (arrow + bold text) */
.pc-cat-intro__kicker {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.pc-cat-intro--main .pc-cta-avos-cotes__sep {
  width: 56px;
  height: 4px;
  background: #fff;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.pc-cat-intro--main .pc-cat-intro__desc,
.pc-cat-intro--main .pc-cat-intro__desc p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.pc-cat-intro--main .pc-cat-intro__img {
  position: relative;
  overflow: hidden;
}
.pc-cat-intro--main .pc-cat-intro__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  max-height: none;
}
/* Réutilise le bouton blanc de "À vos côtés" */
.pc-cat-intro--main .pc-cta-avos-cotes__btn {
  margin-top: 1.5rem;
  display: inline-flex;
}
@media (max-width: 900px) {
  .pc-cat-intro--main { border-radius: 0 0 0 2.5rem; }
  .pc-cat-intro--main .pc-cat-intro__inner {
    grid-template-columns: 1fr;
    margin-left: 0;
    min-height: auto;
  }
  .pc-cat-intro--main .pc-cat-intro__img {
    min-height: 260px;
    order: -1;
  }
  .pc-cat-intro--main .pc-cat-intro__img img {
    position: static;
    height: 260px;
  }
  .pc-cat-intro--main .pc-cat-intro__text {
    padding: 2.5rem 2rem 3rem;
  }
}

/* ── Hero subtitle (utilise les règles à partir de la ligne 1559) ── */

/* ── Expertise Française ── */
/* ── Section intro visuelle N1 (grande image + titre + texte) ── */
.pc-intro-vis {
  background: #fff;
  padding-bottom: 3.5rem;
}
.pc-intro-vis__img-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 3rem;
  border-radius: 16px;
  padding: 0 calc(var(--container-pad) * 2);
  box-sizing: border-box;
}
.pc-intro-vis__img {
  width: 100%;
  height: auto;
  display: block;
}
/* Ligne picto + textes (Figma) — largeur alignée sur l'image */
.pc-intro-vis__header {
  text-align: left;
  margin-bottom: 2rem;
  padding: 0 calc(var(--container-pad) * 2);
}
.pc-intro-vis__marque-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.pc-intro-vis__marque {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.pc-intro-vis__titles {
  flex: 1;
}
.pc-intro-vis__title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--pc-navy);
  line-height: 1.2;
  margin: 0;
}
.pc-intro-vis__subtitle {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--pc-navy);
  line-height: 1.2;
  margin: 0;
}
.pc-intro-vis__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 calc(var(--container-pad) * 2);
}
.pc-intro-vis__text {
  color: var(--pc-text-light);
  font-size: 1rem;
  line-height: 1.7;
}
.pc-intro-vis__text p { color: inherit; margin: 0 0 0.75rem; }
.pc-intro-vis__text--single {
  text-align: left;
  padding: 0 calc(var(--container-pad) * 2);
}
@media (max-width: 768px) {
  .pc-intro-vis__img-wrap { height: 220px; margin-bottom: 2rem; }
  .pc-intro-vis__cols { grid-template-columns: 1fr; gap: 1rem; }
}

.pc-cat-expertise { padding: 4rem 0; }
.pc-cat-expertise .pc-section-title { margin-bottom: 0.5rem; }
.pc-cat-expertise .pc-section-deco { margin-bottom: 2.5rem; } /* espace entre filet et icônes */
.pc-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) { .pc-expertise-grid { grid-template-columns: 1fr; gap: 2rem; } }
.pc-expertise-card { text-align: center; }
.pc-expertise-card__icon { width: 72px; height: 72px; margin: 0 auto 1.25rem; }
.pc-expertise-card__icon svg { width: 100%; height: 100%; }
.pc-expertise-card h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.5rem;
}
.pc-expertise-card p { font-size: 0.9rem; color: #555; line-height: 1.65; margin: 0; }

/* ── Section accessoires ── */
.pc-cat-accessories .pc-section-title { margin-bottom: 2rem; }
.pc-cat-accessories__cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Section garanties ── */
.pc-cat-guarantees { padding: 4rem 0 3rem; }

/* Barre tricolore sous le titre garanties (Figma) */
.pc-guarantees-title-bar {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 0.75rem auto 2rem;
}
.pc-guarantees-title-bar span {
  display: block;
  height: 4px;
  width: 80px;
}
.pc-guarantees-title-bar span:nth-child(1) { background: var(--pc-navy); }
.pc-guarantees-title-bar span:nth-child(2) { background: #fff; }
.pc-guarantees-title-bar span:nth-child(3) { background: var(--pc-red); }

.pc-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* Footer social icons avec images (client assets) */
.pc-footer__social-link img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 8px;
}
@media (max-width: 900px) {
  .pc-guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pc-guarantees-grid { grid-template-columns: 1fr; }
}
.pc-guarantee-card { text-align: center; }
.pc-guarantee-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}
.pc-guarantee-card__icon svg,
.pc-guarantee-card__icon img { width: 100%; height: 100%; }
.pc-guarantee-card__title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.5rem;
}
.pc-guarantee-card__text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* (ancien .pc-cat-deco-line supprimé — unifié avec .pc-section-deco) */

/* ── Section catalogue ── */
.pc-cat-catalogue__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: center;
}
/* Bouton Découvrir catalogue - Poppins Light 24px, flèche bleue, 420px Figma */
.pc-cat-catalogue .pc-btn--navy {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 420px;
  max-width: 100%;
  margin: 0 auto;
}
.pc-cat-catalogue .pc-btn--navy span[aria-hidden] {
  color: var(--pc-blue);
  font-weight: 400;
}
.pc-cat-catalogue__img {
  position: relative;
}
.pc-cat-catalogue__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: absolute;
  top: -14px;
  left: auto;
  right: -30px;
  background: var(--pc-cyan);
  color: var(--pc-navy);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  padding: 0.4rem 1rem;
  border-radius: 0 10px 0 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(120,227,254,.35);
  z-index: 2;
}
.pc-cat-catalogue__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px 0 12px 0;
  box-shadow: 0 8px 32px rgba(6,13,56,0.18);
}
.pc-cat-catalogue__placeholder {
  max-width: 200px;
  margin: 0 auto;
}
.pc-cat-catalogue__placeholder svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(6,13,56,0.2));
}
.pc-cat-catalogue__text h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 1rem;
  line-height: 1.25;
  text-align: center;
}
/* Première ligne en light (Figma : "Visualisez et téléchargez,") */
.pc-cat-catalogue__text h2::first-line {
  font-weight: 300;
}
.pc-cat-catalogue__text h2 strong,
.pc-cat-catalogue__text h2 b {
  font-weight: 700;
  display: block;
}
.pc-cat-catalogue__text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  text-align: left;
}
@media (max-width: 768px) {
  .pc-cat-catalogue__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .pc-cat-catalogue__img { max-width: 180px; margin: 0 auto; }
}

/* ── Logos sur pages catégorie ── */
.pc-logos-section--cat { padding: 3rem 0; }
.pc-logos-section--cat .pc-section-title { margin-bottom: 0.75rem; }
.pc-logos-section--cat .pc-section-deco { margin-bottom: 2rem; }

/* ==============================================================
   FICHE PRODUIT (single-nc_produit)
   ============================================================== */

/* Breadcrumb bar — fond transparent (Figma) */
.pc-breadcrumb-bar {
  background: transparent;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef0f3;
}

/* Breadcrumb sur fond blanc (au-dessus du hero N1 catégorie) */
.pc-breadcrumb-bar--light {
  background: #ffffff;
  border-bottom: 1px solid #eef0f3;
}

/* Nav breadcrumb commune */
.pc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  font-size: 0.8rem;
  color: #666;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pc-breadcrumb a {
  color: var(--pc-navy);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.pc-breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.pc-breadcrumb__sep { color: #bbb; }
.pc-breadcrumb span[aria-current] { color: #999; }

/* Breadcrumb dans le hero navy N2 (texte blanc) */
.pc-cat-hero .pc-breadcrumb,
.pc-cat-hero .pc-breadcrumb a,
.pc-cat-hero .pc-breadcrumb__sep {
  color: rgba(255,255,255,0.6);
}
.pc-cat-hero .pc-breadcrumb a:hover { color: #fff; opacity: 1; }
.pc-cat-hero .pc-breadcrumb span[aria-current] { color: rgba(255,255,255,0.45); }

/* Hero N1 catégorie — fond bleu (#5FA9FD), texte navy */
.pc-cta-avos-cotes__kicker--cat {
  white-space: normal;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  color: var(--pc-navy);
}
.pc-cta-avos-cotes__title--cat {
  font-family: var(--font-body);
  font-size: 2.2rem;  /* 35px Figma */
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 1.25rem;
  line-height: 1.15;
  white-space: normal;
}
/* Arrow blanche sur fond bleu (#5FA9FD) */
.pc-cta-avos-cotes--cat .pc-cta-avos-cotes__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M408 160c0-13.3-10.7-24-24-24s-24 10.7-24 24v150.1L129.9 80.1c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L326.1 344H176c-13.3 0-24 10.7-24 24s10.7 24 24 24h208c13.3 0 24-10.7 24-24V160z'/%3E%3C/svg%3E");
}
/* Titre blanc sur fond bleu */
.pc-cta-avos-cotes--cat .pc-cta-avos-cotes__title {
  color: #ffffff;
}
/* Texte descriptif blanc */
.pc-cta-avos-cotes--cat .pc-cta-avos-cotes__desc {
  color: rgba(255,255,255,0.85);
}
.pc-cta-avos-cotes--cat .pc-cta-avos-cotes__desc p { color: inherit; }
/* Bouton navy sur fond bleu */
.pc-cta-avos-cotes--cat .pc-cta-avos-cotes__btn {
  background: var(--pc-navy);
  color: #ffffff;
}
.pc-cta-avos-cotes--cat .pc-cta-avos-cotes__btn .pc-cta-avos-cotes__btn-arrow {
  color: var(--pc-cyan);
}
.pc-cta-avos-cotes--cat .pc-cta-avos-cotes__btn:hover {
  background: #ffffff;
  color: var(--pc-navy);
}
.pc-cta-avos-cotes__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Layout fiche produit 2 colonnes */
.pc-product-sheet {
  padding: 3rem 0;
}

.pc-product-sheet__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .pc-product-sheet__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Galerie gauche */
.pc-product-sheet__main-img {
  border-radius: 0 0 40px 0;
  overflow: hidden;
  background: var(--pc-grey-light);
  aspect-ratio: 4/3;
  box-shadow: 8px 8px 20px rgba(6,13,56,0.18);
}

.pc-product-sheet__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.pc-product-sheet__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--pc-grey-light);
}

/* Thumbnails */
.pc-product-sheet__thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pc-product-sheet__thumb {
  flex: 0 0 80px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 0 0 10px 0;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 3px 3px 8px rgba(6,13,56,0.12);
}

.pc-product-sheet__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-product-sheet__thumb.is-active,
.pc-product-sheet__thumb:hover {
  border-color: var(--pc-cyan);
  box-shadow: 4px 4px 10px rgba(95,169,253,0.4);
}

/* Colonne droite infos */
.pc-product-sheet__cat {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pc-blue);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.pc-product-sheet__cat:hover {
  color: var(--pc-cyan);
}

.pc-product-sheet__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--pc-navy);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.pc-product-sheet__desc {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Liste de points forts */
.pc-product-sheet__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pc-product-sheet__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #333;
}

.pc-product-sheet__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA principal */
.pc-product-sheet__cta {
  margin-bottom: 2rem;
}

/* Accordion caractéristiques */
.pc-product-sheet__specs {
  border-top: 1px solid var(--pc-grey-light);
}

.pc-spec-accordion {
  border-bottom: 1px solid var(--pc-grey-light);
}

.pc-spec-accordion summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pc-navy);
  list-style: none;
  user-select: none;
}

.pc-spec-accordion summary::-webkit-details-marker {
  display: none;
}

.pc-spec-accordion[open] summary svg {
  transform: rotate(180deg);
}

.pc-spec-accordion summary svg {
  transition: transform 0.2s;
}

.pc-spec-accordion__body {
  padding: 0 0 1.25rem 1.6rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
}

.pc-spec-accordion__body ul {
  list-style: disc;
  padding-left: 1.2em;
}

/* Section contenu complet */
.pc-product-content {
  max-width: 780px;
  line-height: 1.8;
}

/* Buttons variante */
.pc-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.pc-btn--primary {
  background: var(--pc-cyan);
  color: var(--pc-navy);
  font-weight: 700;
}

.pc-btn--primary:hover {
  background: var(--pc-blue);
  color: var(--pc-white);
}

.pc-btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.6rem;
  border: 2px solid var(--pc-navy);
  color: var(--pc-navy);
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.pc-btn--outline:hover {
  background: var(--pc-navy);
  color: var(--pc-white);
}

/* ---- Ref + Eco ---- */
.pc-product-sheet__ref-eco {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pc-product-sheet__ref {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-navy);
  opacity: 0.7;
}

.pc-product-sheet__eco {
  height: 28px;
  width: auto;
}

/* ---- Détails techniques (colonne droite) ---- */
.pc-product-sheet__details {
  margin-bottom: 1.75rem;
}

.pc-detail-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--pc-grey-light);
  font-size: 0.9rem;
}

.pc-detail-row dt {
  font-weight: 600;
  color: var(--pc-navy);
  min-width: 140px;
  flex-shrink: 0;
}

.pc-detail-row dd {
  color: #444;
  margin: 0;
}

/* ---- CTA 2 boutons ---- */
.pc-product-sheet__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   BANDEAU BLEU — Fabrication & Vidéo
   ═══════════════════════════════════════════════════════════════ */
.pc-product-band-bleu {
  background: var(--pc-navy);
  color: var(--pc-white);
  padding: 3.5rem 0;
}

.pc-product-band-bleu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .pc-product-band-bleu__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pc-product-band-bleu__title {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
  color: var(--pc-cyan);
}

.pc-product-band-bleu__fab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pc-product-band-bleu__fab-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pc-product-band-bleu__fab-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pc-product-band-bleu__media {
  border-radius: 8px;
  overflow: hidden;
}

.pc-product-band-bleu__media iframe,
.pc-product-band-bleu__media video,
.pc-product-band-bleu__media img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   BLOC VARIANTES MATÉRIAUX ET POSES
   ═══════════════════════════════════════════════════════════════ */
.pc-product-variantes {
  padding: 3.5rem 0;
}

.pc-product-variantes__img {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.pc-product-variantes__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   BLOC DIMENSIONS + INFORMATIONS TECHNIQUES
   ═══════════════════════════════════════════════════════════════ */
.pc-product-tech {
  padding: 3.5rem 0;
}

.pc-product-tech__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .pc-product-tech__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Si seul le bloc dimensions est présent → centré */
.pc-product-tech__inner:has(.pc-product-tech__dimensions:only-child) {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

/* Si seul le bloc infos est présent → pleine largeur centré */
.pc-product-tech__inner:has(.pc-product-tech__infos:only-child) {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.pc-product-tech__dim-img {
  margin-top: 1.25rem;
  border-radius: 8px;
  overflow: hidden;
}

.pc-product-tech__dim-img img {
  width: 100%;
  height: auto;
  display: block;
}

.pc-product-tech__accordeons {
  margin-top: 1rem;
  border-top: 1px solid #ddd;
}

.pc-footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.pc-footer__links a:hover {
  color: var(--pc-cyan);
}

.pc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.pc-footer__bottom p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.pc-footer__legal {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.pc-footer__legal a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
}

.pc-footer__legal a:hover {
  color: var(--pc-cyan);
}

/* Liens légaux footer */
.pc-footer__legal-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.pc-footer__legal-nav a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.pc-footer__legal-nav a:hover {
  color: var(--pc-cyan);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pc-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-footer__main {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {
  .pc-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pc-hero__actions {
    justify-content: center;
  }

  .pc-blog-grid {
    grid-template-columns: 1fr;
  }

  .pc-cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pc-footer__main {
    grid-template-columns: 1fr;
  }

  .pc-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pc-products-grid {
    grid-template-columns: 1fr;
  }

}

/* ==============================================================
   GRILLE 4 GROUPES — Homepage (style Figma 2026)
   ============================================================== */

.pc-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .pc-groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .pc-groups-grid {
    grid-template-columns: 1fr;
  }
}

/* Carte groupe */
.pc-group-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding-top: 22px;    /* espace pour que le badge déborde au-dessus de l'image */
  padding-left: 8px;    /* espace pour que le badge déborde à gauche de l'image */
  transition: transform 0.22s;
  isolation: isolate;   /* stacking context : contient les z-index enfants */
}

.pc-group-card:hover {
  transform: translateY(-4px);
}

/* Image container */
.pc-group-card__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0 0 24px 0; /* seul coin bas-droite arrondi */
  background: var(--pc-grey-light);
  /* Pas de box-shadow ici : il déborderait dans le padding-top de la carte */
}

/* Ombre portée via filter sur la carte entière (badge inclus),
   mais uniquement visible sous l'image grâce au positionnement */
.pc-group-card::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 0;
  top: 22px;
  bottom: 0;
  border-radius: 0 0 24px 0; /* suit le coin bas-droite de l'image */
  box-shadow: 4px 8px 20px rgba(6,13,56,0.15);
  pointer-events: none;
  z-index: -1; /* derrière img-wrap (contenu dans le stacking context isolation:isolate) */
}

.pc-group-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  font-size: 0;   /* masque le texte alt si l'image est cassée */
  color: transparent;
}

.pc-group-card:hover .pc-group-card__img-wrap img {
  transform: scale(1.04);
}

/* Badge bleu — top:0 = au-dessus de l'image (la carte a padding-top:22px) */
.pc-group-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  max-width: calc(100% - 8px);
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--pc-blue);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 8px 16px;
  border-radius: 8px 0 8px 0;
  z-index: 3;
  white-space: nowrap;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(6,13,56,0.22);
}

/* Bouton Découvrir — overlay bas-droite, coin haut-gauche + bas-droite arrondis */
.pc-group-card__cta {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ffffff;
  color: var(--pc-navy);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 12px 0 24px 0; /* TL arrondi + BR arrondi = révèle le coin de l'image */
  box-shadow: 0 2px 8px rgba(6,13,56,0.14);
  z-index: 2;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.pc-group-card__cta-arrow {
  color: var(--pc-blue);
  transition: color 0.18s;
}

.pc-group-card:hover .pc-group-card__cta {
  background: var(--pc-navy);
  color: #ffffff;
}

.pc-group-card:hover .pc-group-card__cta-arrow {
  color: #ffffff;
}

/* ---- Mode slider (5+ catégories activées) ---- */
.pc-groups-slider {
  position: relative;
}

.pc-groups-grid--slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px; /* évite de clipper l'ombre */
}

.pc-groups-grid--slider::-webkit-scrollbar {
  display: none;
}

.pc-groups-grid--slider .pc-group-card {
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  scroll-snap-align: start;
}

/* Boutons prev / next */
.pc-groups-slider__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  background: var(--pc-navy);
  color: var(--pc-white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(6,13,56,0.2);
  transition: background 0.2s, opacity 0.2s;
  padding: 0;
  line-height: 1;
}

.pc-groups-slider__btn:hover {
  background: var(--pc-cyan);
  color: var(--pc-navy);
}

.pc-groups-slider__btn--prev { left: -22px; }
.pc-groups-slider__btn--next { right: -22px; }

.pc-groups-slider__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Indicateurs (dots) */
.pc-groups-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}

.pc-groups-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pc-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pc-groups-slider__dot.is-active {
  background: var(--pc-navy);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .pc-groups-grid--slider .pc-group-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 640px) {
  .pc-groups-grid--slider .pc-group-card {
    flex: 0 0 100%;
  }
  .pc-groups-slider__btn {
    display: none; /* swipe tactile sur mobile */
  }
}

/* ============================================================
   LOGO — HEADER & FOOTER
   ============================================================ */

/* Logo dans le footer (fond navy → forcer blanc) */
.pc-footer .wp-block-site-logo img,
.pc-footer .pc-footer__logo img {
  filter: brightness(0) invert(1);
  height: 32px;
  width: auto;
}

/* Logo inline dans header (via wp:html) — déjà géré par .pc-header__logo */


/* ============================================================
   HERO — ajustements FSE (alignfull + colonnes WP)
   ============================================================ */
.pc-hero.alignfull {
  background-color: var(--pc-white);
}

/* ============================================================
   PAGE CATÉGORIE — DESIGN FIGMA
   ============================================================ */
.pc-subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pc-subcat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(6, 13, 56, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pc-subcat-card:hover {
  box-shadow: 0 8px 32px rgba(6, 13, 56, 0.14);
  transform: translateY(-2px);
}
.pc-subcat-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pc-grey-light);
  border-radius: 15px 0 15px 0;
}
.pc-subcat-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.pc-subcat-card:hover .pc-subcat-card__img-wrap img {
  transform: scale(1.05);
}
.pc-subcat-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-subcat-card__badge {
  display: inline-block;
  background: var(--pc-cyan);
  color: var(--pc-navy);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.25rem 0.7rem;
  border-radius: 8px 0 8px 0;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}
.pc-subcat-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.5rem;
}
.pc-subcat-card__desc {
  font-size: 0.88rem;
  color: #5a6378;
  margin: 0 0 1rem;
  flex: 1;
}
.pc-subcat-card__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pc-blue);
}
/* Vide si pas de sous-cats → ne rien afficher */
.pc-subcat-grid:empty + * {
  padding-top: 0;
}

@media (max-width: 900px) {
  .pc-subcat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pc-subcat-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUIT — Caractéristiques techniques
   ============================================================ */
.pc-product-specs {
  margin: 0 0 2.5rem;
}
.pc-product-specs__title,
.pc-product-docs__title,
.pc-related-products__title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--pc-grey-light);
}
.pc-product-specs__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--pc-grey-light);
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.pc-product-specs__row {
  display: contents;
}
.pc-product-specs__row dt,
.pc-product-specs__row dd {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--pc-grey-light);
  font-size: 0.92rem;
  margin: 0;
}
.pc-product-specs__row:last-child dt,
.pc-product-specs__row:last-child dd {
  border-bottom: none;
}
.pc-product-specs__row dt {
  font-weight: 600;
  color: var(--pc-navy);
  background: #f6f7fb;
}
.pc-product-specs__row dd {
  color: #3a4260;
}
.pc-product-specs__row--header dt {
  grid-column: 1 / -1;
  background: var(--pc-navy);
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 640px) {
  .pc-product-specs__list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUIT — Documents téléchargeables
   ============================================================ */
.pc-product-docs {
  margin: 0 0 2.5rem;
}
.pc-product-docs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pc-product-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 2px solid var(--pc-navy);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-navy);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.pc-product-doc-btn:hover {
  background: var(--pc-navy);
  color: #fff;
}
.pc-product-doc-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   PRODUITS LIÉS (shortcode pc_related_products)
   ============================================================ */
.pc-related-products {
  padding: 0;
}
.pc-related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.pc-product-card--related {
  text-decoration: none;
  color: inherit;
}
.pc-product-card--related .pc-product-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pc-grey-light);
  margin-bottom: 0.75rem;
}
.pc-product-card--related img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pc-product-card--related:hover img {
  transform: scale(1.04);
}
.pc-product-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--pc-grey-light);
}
.pc-product-card--related .pc-product-card__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.3rem;
}
.pc-product-card--related .pc-product-card__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pc-blue);
}

/* ============================================================
   CARROUSEL LOGOS CLIENTS
   ============================================================ */
.pc-logos-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.pc-logos-section .pc-section__header {
  margin-bottom: 2.5rem;
}
.pc-logos-empty {
  text-align: center;
  color: #999;
  padding: 1rem 0;
  font-style: italic;
}
.pc-logos-carousel {
  overflow: hidden;
  position: relative;
  /* Dégradé de fondu aux bords */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.pc-logos-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: pc-logos-scroll 35s linear infinite;
}
.pc-logos-carousel:hover .pc-logos-track {
  animation-play-state: paused;
}
@keyframes pc-logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pc-logos-track__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.pc-logos-track__img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: opacity 0.25s;
}
.pc-logos-carousel:hover .pc-logos-track__img,
.pc-logos-track__item:hover .pc-logos-track__img {
  opacity: 1;
}

/* ============================================================
   CTA BANNER (shared)
   ============================================================ */
.pc-cta-banner {
  background-color: var(--pc-blue);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  margin-bottom: 0 !important;
}
.pc-cta-banner + .pc-footer,
section.pc-cta-banner + footer.pc-footer {
  margin-top: 0 !important;
}
.pc-cta-banner__inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.pc-cta-banner__title {
  font-size: 1.7rem !important;
  font-weight: 500 !important;
  margin: 0 0 0.4rem !important;
}

.pc-hero .wp-block-columns {
  padding: var(--space-xl) 0;
  gap: var(--space-lg);
  align-items: center;
}

.pc-hero__col-img .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* Boutons hero */
.pc-hero .wp-block-buttons {
  gap: 1rem;
}

/* ============================================================
   SECTIONS FSE — alignfull avec contrainte interne
   ============================================================ */
.pc-section.alignfull,
.pc-section--grey.alignfull,
.pc-cta-banner.alignfull {
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Stats section — fond navy semi-transparent sur image */
.pc-stats-section {
  max-width: 1200px !important;
  width: calc(100% - clamp(2rem, 6vw, 5rem) * 2) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 5rem 0 5rem 0 !important;
  overflow: hidden;
  padding: 3rem clamp(1.5rem, 4vw, 3rem) !important;
  background-color: #060D38;
}

/* ============================================================
   STATS SECTION (shortcode [panocolor_stats]) — fond navy
   ============================================================ */
.pc-stats-section .pc-section__header {
  margin-bottom: 2.5rem;
}

/* Flèche ↘ SVG — au-dessus du premier chiffre, légèrement en chevauchement */
.pc-stat::before {
  display: none;
}

/* Bouton CTA en bas de la section stats */
.pc-stats-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.pc-stats-cta .pc-btn {
  border-radius: 12px 0 12px 0;
}

.pc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: left;
  margin-top: 2rem;
}

.pc-stat {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Wrapper chiffre + suffixe */
.pc-stat__number-wrap {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 2px;
  padding-top: 20px; /* espace vertical pour la flèche */
}

/* Flèche ↘ — au-dessus du compteur, décalée à gauche */
.pc-stat__number-wrap::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -20px;
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' fill-opacity='1' d='M408 160c0-13.3-10.7-24-24-24s-24 10.7-24 24v150.1L129.9 80.1c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L326.1 344H176c-13.3 0-24 10.7-24 24s10.7 24 24 24h208c13.3 0 24-10.7 24-24V160z'/%3E%3C/svg%3E") left/contain no-repeat;
}

.pc-stat__value {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pc-blue);
  line-height: 1;
  display: inline-block;
}

.pc-stat__suffix {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pc-blue);
  line-height: 1;
}

.pc-stat__prefix {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pc-blue);
  line-height: 1;
}

.pc-stat__prefix-img,
.pc-stat__suffix-img {
  display: inline-block;
  vertical-align: middle;
  max-height: 22px;
  width: auto;
}

/* Stat étoiles (Google) */
.pc-stat__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pc-stat__value-static {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pc-blue);
  line-height: 1;
}

.pc-stat__stars {
  display: flex;
  gap: 2px;
}

.pc-stat__star {
  flex-shrink: 0;
}

.pc-stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.6rem;
  font-weight: 300;
  max-width: 160px;
  line-height: 1.4;
}

/* Stats — variante accueil (front-page.php) : fond navy + coins arrondis */
.pc-stats--home {
  margin-top: 0;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  border-radius: 5rem 0 5rem 0;
  background-color: #060D38;
}
.pc-stats--home .pc-stat__number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pc-blue);
  line-height: 1.1;
}
.pc-stats--home .pc-stat__label { color: rgba(255,255,255,0.85); }

/* Responsive stats */
@media (max-width: 768px) {
  .pc-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .pc-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BLOG CARDS (homepage query loop)
   ============================================================ */
.pc-blog-section {
  background: #E6E8EB !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

/* Grille des cartes */
.pc-blog-query ul.wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: 2rem 0 0 !important;
}

.pc-blog-section .pc-blog-card,
.pc-blog-query .pc-blog-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

/* Wrapper image pour contenir le scale au hover */
.pc-blog-card > a:first-child,
.pc-blog-card .wp-block-post-featured-image {
  overflow: hidden;
  border-radius: 48px 0 48px 0;
  display: block;
}

.pc-blog-section .pc-blog-card:hover,
.pc-blog-query .pc-blog-card:hover {
  box-shadow: none;
  transform: none;
}

.pc-blog-card .wp-block-post-featured-image img,
.pc-blog-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 48px 0 48px 0;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.pc-blog-card:hover .pc-blog-card__img,
.pc-blog-card:hover .wp-block-post-featured-image img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.pc-blog-card__body {
  padding: 1rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pc-blog-card .wp-block-post-title a,
.pc-blog-card__title a {
  color: var(--pc-navy);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.pc-blog-card .wp-block-post-title a:hover,
.pc-blog-card__title a:hover {
  color: var(--pc-blue);
}

.pc-blog-card .wp-block-post-terms a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pc-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

/* Lien "En savoir plus" dans les cards blog */
.pc-blog-card__readmore a,
a.pc-blog-card__readmore,
.pc-blog-card .wp-block-read-more {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-navy) !important;
  text-decoration: none;
  border-radius: 12px 0 12px 0;
  padding: 0.4rem 0.9rem;
  background: var(--pc-white);
  border: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.pc-blog-card__readmore a::first-letter,
a.pc-blog-card__readmore::first-letter,
.pc-blog-card .wp-block-read-more::first-letter {
  color: var(--pc-blue);
}
.pc-blog-card__readmore a:hover,
a.pc-blog-card__readmore:hover,
.pc-blog-card .wp-block-read-more:hover {
  background: var(--pc-navy);
  color: var(--pc-white) !important;
}
.pc-blog-card__readmore a:hover::first-letter,
a.pc-blog-card__readmore:hover::first-letter,
.pc-blog-card .wp-block-read-more:hover::first-letter {
  color: var(--pc-white);
}

/* ============================================================
   RESPONSIVE ACCUEIL
   ============================================================ */
@media (max-width: 768px) {
  .pc-hero .wp-block-columns {
    flex-direction: column;
    padding: var(--space-lg) 0;
  }

  .pc-hero__col-img {
    order: -1;
  }

  /* Hero vidéo mobile */
  .pc-hero-video {
    min-height: 480px;
  }

  .pc-hero-video__content {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: left;
  }

  .pc-hero__phone-badge {
    align-self: flex-start;
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  .pc-hero-video .pc-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    white-space: normal;
  }
}

/* ============================================================
   USP — Pourquoi Panocolor
   ============================================================ */
.pc-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.pc-usp-card {
  background: var(--pc-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(6,13,56,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pc-usp-card:hover {
  box-shadow: 0 8px 24px rgba(6,13,56,0.1);
  transform: translateY(-4px);
}

.pc-usp-card__icon {
  width: 72px;
  height: 72px;
  background: var(--pc-grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.pc-usp-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(7%) sepia(60%) saturate(900%) hue-rotate(207deg) brightness(60%) contrast(105%);
  /* Rend les SVG de couleur navy */
}

.pc-usp-card__title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.6rem;
}

.pc-usp-card__desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .pc-usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pc-usp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Hero image — photo réelle (portrait) */
.pc-hero__col-img .wp-block-image img,
.pc-hero__image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   FICHE PRODUIT 2026 — Sections Figma
   ═══════════════════════════════════════════════════════════════ */

/* ── Décorateurs de titres (navy + blanc + rouge) — design unifié ── */
.pc-section-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0.8rem auto 0;
}
/* Variante hero : 3 barres contigües, sans espace */
.pc-section-deco--hero {
  gap: 0;
  justify-content: center;
  margin: 0.8rem auto 0;
}
.pc-section-deco--hero span {
  border-radius: 0;
}
.pc-section-deco__navy {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--pc-navy);
  border-radius: 0;
}
.pc-section-deco__white {
  display: block;
  width: 80px;
  height: 4px;
  background: #ffffff;
  border-radius: 0;
}
.pc-section-deco__red {
  display: block;
  width: 80px;
  height: 4px;
  background: #E63946;
  border-radius: 0;
}

/* ── Arrow icon partagé ── */
.pc-arrow-icon {
  flex-shrink: 0;
  /* couleur fixée directement dans le SVG via stroke="var(--pc-blue)" */
}

/* ── HERO PRODUIT : titre centré ── */
.pc-product-hero {
  background: var(--pc-white);
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.pc-product-hero__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pc-blue);
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.pc-product-hero__cat:hover { color: var(--pc-navy); }
/* ── Hero produit : cat (navy, fin) + nom (bleu, gras) ── */
.pc-product-hero__title {
  font-family: var(--font-title);
  font-weight: 400;
  margin: 0 auto 0;
  max-width: 860px;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.pc-product-hero__cat-part {
  color: var(--pc-navy);
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
}
.pc-product-hero__name-part {
  color: var(--pc-blue);
  display: block;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ── Section 1 : Galerie + Points forts ── */
.pc-product-sheet {
  padding: 2.5rem 0 3rem;
}
.pc-product-sheet__section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--pc-grey-light);
}
.pc-product-sheet__points {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #333;
}
.pc-product-sheet__points ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pc-product-sheet__points ul li {
  padding-left: 1.5rem;
  position: relative;
}
.pc-product-sheet__points ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pc-blue);
  font-weight: 700;
}
.pc-product-sheet__variants {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pc-grey-light);
}
.pc-product-sheet__variants-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #999;
  margin: 0 0 0.6rem;
}
.pc-product-sheet__variants img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ── Section 2 : Caractéristiques techniques ── */
.pc-product-specs { padding: 3.5rem 0; }

.pc-section__title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.6rem;
}

.pc-product-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.pc-product-specs__grid.pc-product-specs__grid--3col {
  grid-template-columns: 1fr 1.3fr 1fr;
}
@media (max-width: 900px) {
  .pc-product-specs__grid,
  .pc-product-specs__grid.pc-product-specs__grid--3col {
    grid-template-columns: 1fr;
  }
}

/* Layout specs Figma : 2 colonnes — accordéons gauche, pictos droite */
.pc-product-specs__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.pc-product-specs__accordeons {
  border-top: 1px solid #ddd;
}
.pc-product-specs__side {
  position: sticky;
  top: 90px;
}

/* Carte pictos (fond gris, 2 coins arrondis) */
.pc-specs-pictos-card {
  background: var(--pc-grey-light);
  border-radius: 24px 0 24px 0;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  box-shadow: 0 2px 12px rgba(6,13,56,0.06);
}

@media (max-width: 900px) {
  .pc-product-specs__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pc-product-specs__side {
    position: static;
  }
  .pc-specs-pictos-card {
    grid-template-columns: 1fr 1fr;
  }
}

/* Accordéons specs */
.pc-product-specs__accordeons .pc-spec-accordion {
  border-bottom: 1px solid #ddd;
}
.pc-product-specs__accordeons .pc-spec-accordion summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.25rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--pc-navy);
  list-style: none;
  user-select: none;
}
.pc-product-specs__accordeons .pc-spec-accordion summary::-webkit-details-marker { display: none; }
/* Accordion icon via CSS ::before */
.pc-spec-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--pc-blue);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--pc-blue);
  transition: background 0.18s, color 0.18s;
  font-style: normal;
}
.pc-spec-accordion__icon::before {
  content: '+';
}
.pc-spec-accordion[open] .pc-spec-accordion__icon {
  background: var(--pc-blue);
  color: #fff;
}
.pc-spec-accordion[open] .pc-spec-accordion__icon::before {
  content: '−';
}

/* Badges ronds */
.pc-product-specs__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  padding: 1rem 0;
}
.pc-badge-round {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.pc-badge-round__circle {
  width: 64px;
  height: 64px;
  border-radius: 16px 0 16px 0;
  background: var(--pc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(6,13,56,0.08);
}
.pc-badge-round__circle svg,
.pc-badge-round__circle img { width: 56px; height: 56px; }
.pc-badge-round__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pc-navy);
  line-height: 1.35;
  max-width: 120px;
}

/* CTA centré sous specs */
.pc-product-specs__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

/* ── Section 3 : Dimensions ── */
.pc-product-dims { padding: 3rem 0; }
.pc-product-dims__content { text-align: center; }
.pc-product-dims__content img { max-width: 100%; height: auto; }

/* ── Section 4 : Accessoires ── */
/* ── Section Accessoires ── */
.pc-product-acc { padding: 3rem 0; }

.pc-product-acc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.pc-product-acc__header .pc-section__title { margin: 0; }

/* Boutons prev/next */
.pc-product-acc__nav {
  display: flex;
  gap: 0.5rem;
}
.pc-product-acc__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--pc-navy);
  background: #fff;
  color: var(--pc-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.pc-product-acc__btn:hover {
  background: var(--pc-navy);
  color: #fff;
}
.pc-product-acc__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pc-product-acc__btn:disabled:hover {
  background: #fff;
  color: var(--pc-navy);
}

/* Piste de défilement */
.pc-product-acc__track-wrap {
  overflow: hidden;
  padding-bottom: 28px; /* espace pour l'ombre basse (blur 20 + offset 8) */
  margin-bottom: -28px; /* annule l'espace layout */
}
.pc-product-acc__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.35s ease;
  will-change: transform;
  padding-top: 26px;
  padding-bottom: 4px;
  margin-top: -26px;
  background: transparent;
}

/* Item : largeur fixée par JS (1/5 du wrapper visible) — même design que pc-group-card */
.pc-product-acc__item {
  flex: none;
  min-width: 0;
  /* Toutes les autres propriétés visuelles sont héritées de .pc-group-card */
  overflow: visible;         /* indispensable : le badge déborde au-dessus */
  background: transparent;   /* l'ombre vient du ::after de pc-group-card */
  box-shadow: none;
  border-radius: 0;
}
.pc-product-acc__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pc-product-acc__img img { width: 100%; height: 100%; object-fit: cover; }
.pc-product-acc__img-placeholder { width: 100%; height: 100%; background: var(--pc-grey-light); }
.pc-product-acc__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--pc-blue);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
}
.pc-product-acc__body {
  padding: 0.7rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.pc-product-acc__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pc-navy);
  line-height: 1.3;
  flex: 1;
}
.pc-product-acc__cta {
  font-size: 0.75rem;
  color: var(--pc-blue);
  font-weight: 600;
}
/* Responsive : réservé aux corrections spécifiques mobile */
@media (max-width: 768px) {
  .pc-product-acc__track { gap: 0.75rem; }
}

/* ── Section 5 : Vous aimerez aussi (fond navy) ── */
.pc-product-similar { padding: 3.5rem 0; background: var(--pc-navy); }
.pc-product-similar .pc-section__title { color: var(--pc-white); }
.pc-product-similar .pc-section__title .pc-arrow-icon { color: var(--pc-cyan); }
.pc-product-similar .pc-section-deco__navy { background: var(--pc-cyan); }
.pc-product-similar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .pc-product-similar__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .pc-product-similar__grid { grid-template-columns: 1fr; }
}

/* Réutilisation du design pc-group-card pour les cartes similaires */
.pc-product-similar__card {
  background: transparent !important;
  border: none !important;
}
/* Cacher le bouton Découvrir dans cette section */
.pc-product-similar .pc-group-card__cta { display: none; }
/* Supprimer la bande blanche sous l'image */
.pc-product-similar__name { display: none; }
/* Cacher le bouton Découvrir dans cette section */
.pc-product-similar .pc-group-card__cta { display: none; }
/* Nom du produit sous l'image */
.pc-product-similar__name {
  display: block;
  padding: 0.8rem 1rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pc-navy);
  background: #fff;
  border-radius: 0 0 24px 0;
  line-height: 1.3;
}

/* ── Section 6 : Ils nous font confiance ── */
.pc-product-trust { padding: 3rem 0; }

/* ── Styles Gravity Forms (Contact + Blog) ── */
.gform_wrapper .gform_body { margin-top: 2rem; }
.gform_wrapper .gform_title { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.25rem; }
.gform_wrapper .gform_description { margin-bottom: 0; color: var(--pc-text-light); font-size: 0.95rem; }
.gform_wrapper .gfield_label { font-weight: 500; font-size: 0.88rem; }
.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper select {
  font-size: 0.9rem !important;
  font-weight: 300 !important;
}
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer { margin-top: 1.5rem; }
/* Bouton "Demander un devis" articles → 2 coins droits + 2 arrondis */
.entry-content .wp-block-button .wp-block-button__link,
.entry-content .pc-btn,
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
  border-radius: 15px 0 15px 0 !important;
}

/* Bouton Envoyer du formulaire de contact — taille + couleurs du thème */
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  background-color: var(--pc-cyan);
  color: var(--pc-navy);
  border: 2px solid var(--pc-cyan);
  cursor: pointer;
  transition: all var(--transition);
}
.gform_wrapper .gform_button:hover,
.gform_wrapper .gform_button:focus,
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper input[type="submit"]:focus {
  background-color: var(--pc-blue);
  border-color: var(--pc-blue);
  color: var(--pc-white);
}

/* ═══════════════════════════════════════════════════════════════
   FICHE PRODUIT — Ajouts Figma v2
   ═══════════════════════════════════════════════════════════════ */

/* ── Deco gauche (expert section) ── */
.pc-section-deco--left {
  justify-content: flex-start;
  margin: 0.5rem 0 1.25rem;
}

/* ── Couleur cyan pour section navy ── */
.pc-section-deco__cyan {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--pc-cyan);
  border-radius: 2px;
}

/* ── Hero : cat uppercase in navy font style ── */
.pc-product-hero__cat {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pc-blue);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.6rem;
}

/* ── Déclinaisons (pleine largeur sous les 2 colonnes) ── */
.pc-product-sheet__variants-block {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--pc-grey-light);
}
.pc-product-sheet__variants-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 1.25rem;
}
.pc-product-sheet__variants-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.pc-product-sheet__variants-imgs img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ── Specs : dimensions column ── */
.pc-product-specs__dims-title {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--pc-navy);
  margin: 0 0 0.75rem;
}
.pc-product-specs__dims-img img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
/* Texte dimensions (strong, p, etc.) : petit et compact */
.pc-product-specs__dims-img p,
.pc-product-specs__dims-img li {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 0.2rem;
}
.pc-product-specs__dims-img strong {
  font-weight: 600;
  color: var(--pc-navy);
}

/* ── Section Expert ── */
.pc-product-expert {
  padding: 4rem 0;
  background: #fff;
}
.pc-product-expert__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .pc-product-expert__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.pc-product-expert__media {
  position: relative;
  width: 260px;
  flex-shrink: 0;
}
.pc-product-expert__img {
  width: 260px;
  height: 300px;
  /* coin bas-droite arrondi uniquement */
  border-radius: 0 0 60px 0;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Picto marque : coin haut-droit de l'image, débordement réel */
.pc-product-expert__marque {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
/* Flèche bleue ↘ spécifique au titre expert */
.pc-expert-arrow {
  flex-shrink: 0;
}
.pc-product-expert__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.pc-product-expert__quote {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #444;
  margin: 1rem 0;
  padding: 0.25rem 0;
  border-left: none;
  font-style: italic;
  background: var(--pc-grey-light);
  border-radius: 0 6px 6px 0;
}
.pc-product-expert__quote p { margin: 0; }
.pc-product-expert__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin: 0.75rem 0 0.35rem;
}
.pc-product-expert__stars {
  color: #F0A500;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

/* ── Produits similaires sur fond navy ── */
.pc-product-similar__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.pc-product-similar__card:hover {
  background: rgba(255,255,255,0.15);
}
.pc-product-similar__title { color: var(--pc-white); }

/* ── Accent bleu inline ── */
.pc-accent-blue { color: var(--pc-blue); }

/* ── Slider variantes (2 images visibles) ── */
.pc-product-sheet__variants-wrap {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pc-grey-light);
}
.pc-product-sheet__variants-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #999;
  margin: 0 0 0.75rem;
}
.pc-product-sheet__variants-slider {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  /* scrollbar fine */
  scrollbar-width: thin;
  scrollbar-color: var(--pc-blue) transparent;
}
/* chaque figure / p / div direct enfant = 1 slide */
.pc-product-sheet__variants-slider > figure,
.pc-product-sheet__variants-slider > p,
.pc-product-sheet__variants-slider > div {
  flex: 0 0 calc(50% - 0.375rem);
  scroll-snap-align: start;
  min-width: 0;
}
/* les img dans le slider */
.pc-product-sheet__variants-slider img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
/* figcaption centré sous l'image */
.pc-product-sheet__variants-slider figcaption {
  font-size: 0.72rem;
  text-align: center;
  color: #666;
  margin-top: 0.35rem;
}
/* si le rich-text produit des <p><img></p> isolés, les forcer en flex item */
.pc-product-sheet__variants-slider p {
  margin: 0;
}

/* ── Grille variantes (format Figma : images + légende) ── */
.pc-product-sheet__variants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.pc-variant-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.pc-variant-card:hover {
  transform: translateY(-1px);
}
.pc-variant-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px 0 12px 0;
  margin-bottom: 0.4rem;
}
.pc-variant-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-variant-card__body {
  text-align: center;
}
.pc-variant-card__name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--pc-navy);
}
.pc-variant-card__desc {
  display: none; /* Figma : pas de description dans la colonne droite */
}

/* ═══════════════════════════════════════════════════════════════
   EFFETS PROFONDEUR / OMBRES IMAGES (Figma)
   ═══════════════════════════════════════════════════════════════ */
.pc-product-card__img-wrap img,
.pc-product-sheet__gallery img,
.pc-group-card__img-wrap img {
  transition: transform 0.35s ease, filter 0.35s ease;
}
.pc-product-card:hover .pc-product-card__img-wrap img,
.pc-group-card:hover .pc-group-card__img-wrap img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   LISTES ORDONNÉES — Carrés 2 angles arrondis (charte Panocolor)
   ═══════════════════════════════════════════════════════════════ */
.pc-page-content ol,
.entry-content ol,
.wp-block-post-content ol {
  list-style: none;
  counter-reset: pc-ol;
  padding-left: 0;
}
.pc-page-content ol li,
.entry-content ol li,
.wp-block-post-content ol li {
  counter-increment: pc-ol;
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.pc-page-content ol li::before,
.entry-content ol li::before,
.wp-block-post-content ol li::before {
  content: counter(pc-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--pc-blue);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.8rem;
  text-align: center;
  border-radius: 8px 0 8px 0;
}

/* ── Slider accessoires : items de type pc-group-card ── */
/* (pas de surcharge nécessaire : pc-group-card + isolation:isolate gèrent tout) */

/* ═══════════════════════════════════════════════════════════════
   PAGE ARCHIVE — Actualités
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.pc-archive-hero {
  background: transparent;
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.pc-archive-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.75rem;
}

/* ── Filtres ── */
.pc-archive-filters {
  background: var(--pc-white);
  border-bottom: 1px solid var(--pc-grey-light);
  padding: 1.5rem 0 0;
}
.pc-archive-filters__label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-navy);
  margin-bottom: 1rem;
}
.pc-archive-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--pc-grey-light);
}
.pc-archive-filter {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.pc-archive-filter:hover {
  color: var(--pc-navy);
}
.pc-archive-filter.is-active {
  color: var(--pc-navy);
  border-bottom-color: var(--pc-navy);
}

/* ── Grille articles ── */
.pc-archive-grid-section { padding: 3rem 0 4rem; }

.pc-blog-grid--archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .pc-blog-grid--archive { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .pc-blog-grid--archive { grid-template-columns: 1fr; }
}

/* ── Carte article ── */
.pc-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 20px 0;
  overflow: hidden;
  box-shadow: 4px 6px 18px rgba(6,13,56,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pc-blog-card:hover {
  transform: translateY(-3px) translateX(-2px);
  box-shadow: 8px 10px 26px rgba(6,13,56,0.14);
}
.pc-blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pc-grey-light);
}
.pc-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.pc-blog-card:hover .pc-blog-card__img img {
  transform: scale(1.04);
}
.pc-blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--pc-grey-light);
}
.pc-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
  gap: 0.5rem;
}
.pc-blog-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pc-blue);
}
.pc-blog-card__title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--pc-navy);
  line-height: 1.3;
  margin: 0;
}
.pc-blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.pc-blog-card__title a:hover { color: var(--pc-blue); }
.pc-blog-card__excerpt {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.pc-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--pc-grey-light);
}
.pc-blog-card__date {
  font-size: 0.75rem;
  color: #999;
}
.pc-blog-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pc-blue);
  text-decoration: none;
}
.pc-blog-card__link:hover { color: var(--pc-navy); }

/* ── Pagination ── */
.page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-numbers li { display: flex; }
.page-numbers a,
.page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--pc-grey-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-navy);
  text-decoration: none;
  transition: all 0.2s;
}
.page-numbers a:hover { border-color: var(--pc-blue); color: var(--pc-blue); }
.page-numbers .current { background: var(--pc-navy); color: #fff; border-color: var(--pc-navy); }
.page-numbers .prev, .page-numbers .next { border-color: transparent; }

/* ── Message vide ── */
.pc-archive-empty {
  text-align: center;
  color: #888;
  padding: 3rem 0;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   ARTICLE UNIQUE — single.php
   ═══════════════════════════════════════════════════════════════ */

.pc-single-article {
  padding: 3rem 0 4rem;
}

/* En-tête */
.pc-single-article__header {
  margin-bottom: 2rem;
}
.pc-single-article__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pc-blue);
  text-decoration: none;
  margin-bottom: 0.6rem;
}
.pc-single-article__cat:hover { color: var(--pc-navy); }
.pc-single-article__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--pc-navy);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.pc-single-article__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #999;
}
.pc-single-article__meta-sep { opacity: 0.4; }

/* Image de couverture */
.pc-single-article__cover {
  border-radius: 0 0 40px 0;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 6px 8px 24px rgba(6,13,56,0.12);
  max-height: 520px;
}
.pc-single-article__cover img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Layout 2 colonnes : contenu + sidebar */
.pc-single-article__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .pc-single-article__layout {
    grid-template-columns: 1fr;
  }
}

/* Corps de l'article */
.pc-single-article__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.pc-single-article__content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 2rem 0 0.75rem;
}
.pc-single-article__content h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 1.5rem 0 0.5rem;
}
.pc-single-article__content p { margin-bottom: 1.2em; }
.pc-single-article__content a { color: var(--pc-blue); }
.pc-single-article__content a:hover { color: var(--pc-navy); }
.pc-single-article__content img {
  max-width: 100%;
  border-radius: 0 0 20px 0;
  margin: 1rem 0;
}
.pc-single-article__content ul,
.pc-single-article__content ol {
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}
.pc-single-article__content blockquote {
  border-left: 4px solid var(--pc-cyan);
  padding: 0.75rem 1.25rem;
  background: var(--pc-grey-light);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  margin: 1.5rem 0;
}

/* Sidebar */
.pc-single-article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}
.pc-single-sidebar-card {
  background: var(--pc-grey-light);
  border-radius: 12px;
  padding: 1.5rem;
}
.pc-single-sidebar-card--cta {
  background: var(--pc-navy);
  color: var(--pc-white);
}
.pc-single-sidebar-card--cta .pc-single-sidebar-card__title {
  color: var(--pc-white);
}
.pc-single-sidebar-card--cta .pc-single-sidebar-card__text {
  color: rgba(255,255,255,0.75);
}
.pc-single-sidebar-card__title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.5rem;
}
.pc-single-sidebar-card__text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.pc-single-sidebar__articles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.pc-single-sidebar__article-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--pc-navy);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.2s;
}
.pc-single-sidebar__article-link:hover { color: var(--pc-blue); }
.pc-single-sidebar__article-link img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 0 0 8px 0;
  flex-shrink: 0;
}

/* Footer article */
.pc-single-article__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--pc-grey-light);
}
.pc-single-article__back {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-navy);
  text-decoration: none;
}
.pc-single-article__back:hover { color: var(--pc-blue); }
.pc-single-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pc-single-article__tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--pc-grey-light);
  color: #666;
  text-decoration: none;
  transition: background 0.2s;
}
.pc-single-article__tag:hover { background: var(--pc-blue); color: #fff; }

/* Articles liés (section bas de page) */
.pc-single-related { padding: 3rem 0; }

/* ── Intro card : typographie Figma ── */
.pc-cat-intro__arrow {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
/* Tout le contenu éditeur : blanc par défaut */
.pc-cat-intro__body,
.pc-cat-intro__body * {
  color: #ffffff;
}
/* h2 dans l'éditeur : Barlow 800, taille large */
.pc-cat-intro__body h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: #ffffff;
}
/* Classe pc-intro-dark : texte navy (premier mot du titre) */
.pc-cat-intro__body .pc-intro-dark {
  color: var(--pc-navy);
}
/* Ligne de séparation blanche après le h2 */
.pc-cat-intro__body h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin-top: 0.75rem;
}
/* Paragraphes : Poppins regular, plus petit */
.pc-cat-intro__body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
/* Anciennes classes legacy supprimées — ne pas cacher les nouvelles */

/* ── Carte intro : SVG flèche et filet ── */
.pc-cat-intro__body .pc-intro-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3em;
}
.pc-cat-intro__body .pc-intro-sep,
.pc-cat-intro__body hr.pc-intro-sep {
  border: none;
  border-top: 2px solid rgba(255,255,255,0.6);
  margin: 0.75rem 0;
  width: 40px;
}

/* ── Carte bleue : 3 champs structurés ── */
/* Le filet blanc est maintenant géré par .pc-cat-intro__subtitle::after */

/* ═══════════════════════════════════════════════════════════════
   PAGE STATIQUE (page.php)
   ═══════════════════════════════════════════════════════════════ */

/* Hero titre */
.pc-page-hero {
  background: transparent;
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.pc-page-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

/* Image de couverture */
.pc-page-cover {
  padding: 2rem 0 0;
}
.pc-page-cover__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 0 0 40px 0;
  display: block;
  box-shadow: 6px 8px 24px rgba(6,13,56,0.12);
}

/* Contenu */
.pc-page-content {
  padding: 3rem 0 4rem;
}
.pc-page-content__inner {
  max-width: 860px;
  margin: 0 auto;
}
.pc-page-content__inner h1,
.pc-page-content__inner h2 {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--pc-grey-light);
}
.pc-page-content__inner h3 {
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 1.5rem 0 0.5rem;
}
.pc-page-content__inner p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.1em;
}
.pc-page-content__inner img {
  max-width: 100%;
  height: auto;
  border-radius: 0 0 20px 0;
  margin: 1.5rem 0;
  border: none;
  outline: none;
}
/* Retirer contours/bords noirs des images SiteOrigin et de l'éditeur */
.pc-page-content__inner figure,
.pc-page-content__inner .wp-block-image,
.so-panel img,
.so-panel figure,
.siteorigin-widget img,
.siteorigin-widget figure {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Compatibilité SiteOrigin : rangées pleine largeur de l'ancienne charte */
.siteorigin-panels-stretch[data-stretch-type="full"] {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.so-widget-sow-editor .siteorigin-widget-tinymce.textwidget {
  color: #333;
}
.pc-page-content__inner ul,
.pc-page-content__inner ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
  line-height: 1.8;
}
.pc-page-content__inner li { margin-bottom: 0.4em; }
.pc-page-content__inner a {
  color: var(--pc-blue);
  text-decoration: underline;
}
.pc-page-content__inner blockquote {
  border-left: 4px solid var(--pc-cyan);
  padding: 0.75rem 1.25rem;
  background: var(--pc-grey-light);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  margin: 1.5rem 0;
}
/* Titres uppercase (style ancien contenu) */
.pc-page-content__inner h2:is([style*="uppercase"]),
.pc-page-content__inner .aligncenter {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE NOS RÉALISATIONS (page-realisations.php)
   ═══════════════════════════════════════════════════════════════ */

/* Sous-titre */
.pc-real-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--pc-text-light);
  max-width: 640px;
  margin: 1.25rem auto 0;
  text-align: center;
  line-height: 1.6;
}

/* ── Section réalisation ── */
.pc-real-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--pc-grey-light);
}
.pc-real-section:last-of-type {
  border-bottom: none;
}

.pc-real-section__title {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--pc-navy);
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--pc-cyan);
  display: inline-block;
}

/* ── Texte ── */
.pc-real-section__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  max-width: 780px;
  margin-top: 2rem;
}
.pc-real-section__text p {
  margin-bottom: 1em;
}

/* ═══════════════════════════════════════════════════════════════
   SLIDER RÉALISATIONS — image plein cadre, contrôles overlay
   ═══════════════════════════════════════════════════════════════ */
.pc-real-slider-wrap {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  box-sizing: border-box;
}

.pc-real-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 0;
  background: var(--pc-grey-light);
  aspect-ratio: 16 / 9;
  box-shadow: 6px 8px 24px rgba(6, 13, 56, 0.12);
}

.pc-real-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.pc-real-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}

.pc-real-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Boutons prev/next ── */
.pc-real-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pc-white);
  color: var(--pc-navy);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 12px rgba(6, 13, 56, 0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-real-slider__btn:hover {
  background: var(--pc-navy);
  color: var(--pc-white);
  transform: translateY(-50%) scale(1.05);
}
.pc-real-slider__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.pc-real-slider__btn:disabled:hover {
  background: var(--pc-white);
  color: var(--pc-navy);
  transform: translateY(-50%);
}

.pc-real-slider__btn--prev {
  left: 1rem;
}
.pc-real-slider__btn--next {
  right: 1rem;
}

/* ── Dots ── */
.pc-real-slider__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.pc-real-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pc-real-slider__dot.is-active {
  background: var(--pc-white);
  border-color: var(--pc-white);
  transform: scale(1.3);
}

/* ── Compteur ── */
.pc-real-slider__counter {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  background: rgba(6, 13, 56, 0.65);
  color: var(--pc-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  z-index: 5;
  font-family: var(--font-body);
  backdrop-filter: blur(4px);
}

/* ── Responsive slider ── */
@media (max-width: 768px) {
  .pc-real-slider {
    aspect-ratio: 4 / 3;
    border-radius: 0 0 24px 0;
  }
  .pc-real-slider-wrap {
    padding: 0;
  }
  .pc-real-slider__btn {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .pc-real-slider__btn--prev { left: 0.5rem; }
  .pc-real-slider__btn--next { right: 0.5rem; }
  .pc-real-slider__counter {
    bottom: 0.5rem;
    right: 0.75rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .pc-real-section {
    padding: 2rem 0;
  }
  .pc-real-section__text {
    margin-top: 1.25rem;
  }
}

/* ============================================================
   LIGHTBOX — zoom photos (galerie, variantes, dimensions)
   ============================================================ */
.pc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(6, 13, 56, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.pc-lightbox.is-open { display: flex; }
.pc-lightbox__img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.pc-lightbox__close,
.pc-lightbox__prev,
.pc-lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.pc-lightbox__close:hover,
.pc-lightbox__prev:hover,
.pc-lightbox__next:hover { background: rgba(255, 255, 255, 0.3); }
.pc-lightbox__close { top: 1.25rem; right: 1.25rem; }
.pc-lightbox__prev  { left: 1rem;   top: 50%; transform: translateY(-50%); }
.pc-lightbox__next  { right: 1rem;  top: 50%; transform: translateY(-50%); }
.pc-no-scroll { overflow: hidden; }
.pc-variant-card__img-wrap img,
.pc-product-dims__img img,
.pc-product-sheet__main-img img { cursor: zoom-in; }
