<style>
/* --------- Grille services --------- */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1200px;
  font-family: "Arial", sans-serif;
}

/* Carte service */
.clientservice-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clientservice-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.clientservice-item h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 15px 0;
  font-weight: 700;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* --------- Bloc dark "leatherbody" --------- */
.brand-intro-leatherbody,
.brand-infos-leatherbody {
  max-width: 940px;
  margin: 2.5rem auto;
  padding: 2rem 2.4rem;
  border-radius: 18px;
  background: #111111;
  color: #f4f4f4;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.8;
  font-size: 0.97rem;
  position: relative;
  overflow: hidden;
}

/* Accent rouge/bordeaux cuir */
.brand-intro-leatherbody::before,
.brand-infos-leatherbody::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8c1f2f, #d04c3c);
}

.brand-intro-leatherbody h1,
.brand-infos-leatherbody h2 {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
}

.brand-intro-leatherbody h1::after,
.brand-infos-leatherbody h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d04c3c, rgba(208, 76, 60, 0.3));
}

.brand-intro-leatherbody p,
.brand-infos-leatherbody p {
  margin: 0 0 0.9rem 0;
  color: #e0e0e0;
}

.brand-intro-leatherbody p:last-of-type,
.brand-infos-leatherbody p:last-of-type {
  margin-top: 1.2rem;
  font-style: italic;
}

.brand-intro-leatherbody strong,
.brand-infos-leatherbody strong {
  color: #ff6b5c;
  font-weight: 600;
}

/* --------- Variables Nussen --------- */
:root {
  --nussen-accent: #b2467a;       /* prune Nussen */
  --nussen-accent-soft: #f9edf3;  /* fond très léger */
  --nussen-text-main: #333333;
  --nussen-text-soft: #555555;
}

/* --------- Bloc commun intro + infos --------- */

.nussen-intro,
.nussen-infos {
  max-width: 940px;
  margin: 2.5rem auto;
  padding: 2rem 2.4rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(178, 70, 122, 0.08);
  line-height: 1.8;
  font-size: 0.97rem;
  color: var(--nussen-text-soft);
  position: relative;
  overflow: hidden;
}

/* Liseré coloré à gauche */
.nussen-intro::before,
.nussen-infos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(178, 70, 122, 0.9),
    rgba(178, 70, 122, 0.35)
  );
  opacity: 0.9;
}

/* Voile rosé très léger */
.nussen-intro::after,
.nussen-infos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(178, 70, 122, 0.09),
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}

/* Contenu au-dessus des pseudo-éléments */
.nussen-intro > *,
.nussen-infos > * {
  position: relative;
  z-index: 1;
}

/* Titres */
.nussen-intro h1,
.nussen-infos h2 {
  font-family: inherit;
  color: var(--nussen-text-main);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

.nussen-intro h1 {
  font-size: 1.9rem;
}

.nussen-infos h2 {
  font-size: 1.4rem;
}

/* Soulignement sous les titres */
.nussen-intro h1::after,
.nussen-infos h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--nussen-accent),
    rgba(178, 70, 122, 0.3)
  );
}

/* Paragraphes */
.nussen-intro p,
.nussen-infos p {
  margin: 0 0 0.9rem 0;
  color: var(--nussen-text-soft);
}

/* Dernier paragraphe mis en avant */
.nussen-intro p:last-of-type,
.nussen-infos p:last-of-type {
  margin-top: 1.2rem;
  font-style: italic;
  color: var(--nussen-text-main);
}

/* Gras coloré */
.nussen-intro strong,
.nussen-infos strong {
  font-weight: 600;
  color: var(--nussen-accent);
}

/* --------- Responsive --------- */
@media (max-width: 768px) {
  .nussen-intro,
  .nussen-infos {
    margin: 1.6rem 1rem;
    padding: 1.5rem 1.4rem;
    border-radius: 14px;
  }

  .nussen-intro::before,
  .nussen-infos::before {
    top: 10%;
    bottom: 10%;
  }

  .nussen-intro h1 {
    font-size: 1.5rem;
  }

  .nussen-infos h2 {
    font-size: 1.25rem;
  }

  .nussen-intro p,
  .nussen-infos p {
    font-size: 0.95rem;
  }
}

/* --------- Bloc "Voir plus" avec <details> --------- */

.nussen-details {
  margin-top: 0.5rem;
}

/* Bouton "Voir plus / Voir moins" */
.nussen-details > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--nussen-accent, #b2467a);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--nussen-accent, #b2467a);
  list-style: none;
}

/* On cache le marqueur natif */
.nussen-details > summary::-webkit-details-marker {
  display: none;
}

.nussen-details > summary:hover {
  background: var(--nussen-accent, #b2467a);
  color: #ffffff;
}

/* Contenu déroulé */
.nussen-details[open] p {
  margin-top: 0.8rem;
}

/* Fonction : styles premium pour les descriptions longues produit Nussen */
.nussen-product-description {
  max-width: 100%;
  margin: 0 auto 0px auto;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: #ffffff;
  padding: 22px 24px 10px 24px;
  color: #5a4a56;
}

.nussen-product-description .nussen-product-header {
  max-width: 100%;
  margin: 0 auto 28px auto;
  text-align: center;
}

.nussen-product-description .nussen-product-title {
  font-size: 28px;
  color: #3d2c3a;
  text-align: center;
  margin: 0 0 8px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.nussen-product-description .nussen-product-subtitle {
  text-align: center;
  color: #b2467a;
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
}

.nussen-product-description .nussen-editorial-block {
  max-width: 100%;
  margin: 0 auto 30px auto;
  padding: 30px 34px;
  border-radius: 18px;
  background: #fdf8fb;
  border: 1px solid #f0e0ed;
  border-left: 4px solid #b2467a;
  box-shadow: 0 8px 24px rgba(61, 44, 58, 0.06);
  font-size: 15px;
  line-height: 1.9;
  color: #5a4a56;
}

.nussen-product-description .nussen-benefits-table {
  width: 100%;
  max-width: 960px;
  border-collapse: separate;
  border-spacing: 14px;
  margin: 0 auto 30px auto;
  table-layout: fixed;
}

.nussen-product-description .nussen-benefit-card {
  background: #ffffff;
  padding: 26px 24px;
  text-align: center;
  border-radius: 16px;
  height: 100%;
  border: 1px solid #f0e0ed;
  box-shadow: 0 8px 22px rgba(61, 44, 58, 0.05);
  transition: all 0.3s ease;
}

.nussen-product-description .nussen-benefit-card h3 {
  font-size: 17px;
  color: #3d2c3a;
  margin: 0 0 10px 0;
  font-weight: 600;
  line-height: 1.4;
}

.nussen-product-description .nussen-benefit-card p {
  font-size: 14px;
  color: #7a6e77;
  margin: 0;
  line-height: 1.75;
}

.nussen-product-description .nussen-choice-block {
  max-width: 940px;
  margin: 0 auto 30px auto;
  padding: 26px 30px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #f0e0ed;
  box-shadow: 0 8px 24px rgba(61, 44, 58, 0.05);
}

.nussen-product-description .nussen-choice-block h3,
.nussen-product-description .nussen-section-title {
  font-size: 21px;
  color: #3d2c3a;
  margin: 0 0 16px 0;
  font-weight: 600;
  line-height: 1.4;
}

.nussen-product-description .nussen-choice-block p {
  font-size: 15px;
  color: #5a4a56;
  margin: 0;
  line-height: 1.9;
}

.nussen-product-description .nussen-table-wrapper {
  max-width: 940px;
  margin: 0 auto 30px auto;
}

.nussen-product-description .nussen-table-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0e0ed;
  box-shadow: 0 8px 24px rgba(61, 44, 58, 0.05);
  background: #ffffff;
}

.nussen-product-description .nussen-table-box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #5a4a56;
}

.nussen-product-description .nussen-faq-block {
  background: #fdf8fb;
  border: 1px solid #f0e0ed;
  border-radius: 14px;
  padding: 20px 22px;
  margin: 0 0 14px 0;
  box-shadow: 0 4px 14px rgba(61, 44, 58, 0.04);
}

.nussen-product-description .nussen-faq-block p:first-child {
  font-size: 15px;
  color: #3d2c3a;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.nussen-product-description .nussen-faq-block p:last-child {
  font-size: 14px;
  color: #7a6e77;
  margin: 0;
  line-height: 1.75;
}

/* Fonction : corriger les dimensions des cartes avantages produit */
.nussen-product-description .nussen-benefits-table {
  max-width: 940px;
  border-collapse: collapse;
  border-spacing: 0;
}

.nussen-product-description .nussen-benefits-table td {
  padding: 8px;
  box-sizing: border-box;
}

.nussen-product-description .nussen-benefit-card {
  min-height: 128px;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .nussen-product-description .nussen-benefits-table,
  .nussen-product-description .nussen-benefits-table tbody,
  .nussen-product-description .nussen-benefits-table tr,
  .nussen-product-description .nussen-benefits-table td {
    display: block;
    width: 100% !important;
  }
}

/* Fonction : améliorer le rendu du récapitulatif court produit */
.product-information .product-description-short,
.product-information .description-short,
.product-description-short,
#product-description-short {
  background: #fdf8fb;
  border: 1px solid #f0e0ed;
  border-left: 4px solid #b2467a;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 18px 0 22px 0;
  color: #5a4a56;
  font-size: 15px;
  line-height: 1.75;
  box-shadow: 0 6px 18px rgba(61, 44, 58, 0.05);
}

/* Fonction : harmoniser les paragraphes du récapitulatif court */
.product-information .product-description-short p,
.product-information .description-short p,
.product-description-short p,
#product-description-short p {
  margin: 0;
  color: #5a4a56;
  font-size: 15px;
  line-height: 1.75;
}

/* Fonction : mettre les éléments forts du récap en couleur Nussen */
.product-information .product-description-short strong,
.product-information .description-short strong,
.product-description-short strong,
#product-description-short strong {
  color: #b2467a;
  font-weight: 600;
}

/* Fonction : transformer le récapitulatif court PrestaShop en carte arrondie Nussen */
.product-information .product-description-short,
.product-information .description-short,
.product-description-short,
#product-description-short,
.product-short-description,
#product-description-short-1 {
  background: #fdf8fb;
  border: 1px solid #f0e0ed;
  border-left: 4px solid #b2467a;
  border-radius: 16px;
  padding: 18px 22px;
  margin: 18px 0 22px 0;
  color: #5a4a56;
  font-size: 15px;
  line-height: 1.75;
  box-shadow: 0 8px 22px rgba(61, 44, 58, 0.06);
}

/* Fonction : harmoniser le paragraphe interne du récapitulatif */
.product-information .product-description-short p,
.product-information .description-short p,
.product-description-short p,
#product-description-short p,
.product-short-description p,
#product-description-short-1 p {
  margin: 0;
  color: #5a4a56;
  font-size: 15px;
  line-height: 1.75;
}

/* Fonction : mettre les mots importants en couleur Nussen */
.product-information .product-description-short strong,
.product-information .description-short strong,
.product-description-short strong,
#product-description-short strong,
.product-short-description strong,
#product-description-short-1 strong {
  color: #b2467a;
  font-weight: 600;
}
/* Fonction : carte visuelle du récapitulatif court produit */
.nussen-product-summary-card {
  background: #fdf8fb;
  border: 1px solid #f0e0ed;
  border-left: 4px solid #b2467a;
  border-radius: 16px;
  padding: 18px 22px;
  margin: 18px 0 22px 0;
  color: #5a4a56;
  font-size: 15px;
  line-height: 1.75;
  box-shadow: 0 8px 22px rgba(61, 44, 58, 0.06);
}

.nussen-product-summary-card p {
  margin: 0;
  color: #5a4a56;
  font-size: 15px;
  line-height: 1.75;
}

/* Fonction : mettre les mots importants en couleur Nussen */
.nussen-product-summary-card strong {
  color: #b2467a;
  font-weight: 600;
}

/* Fonction : corriger le rendu Avanto Mega Menu pour Nussen */
/* Objectif : garder les titres de blocs forts, mais rendre les catégories enfants plus discrètes */

.an_megamenu .adropdown {
  background: #fbf7ff !important;
  border: 1px solid #f0e0ed;
  box-shadow: 0 14px 34px rgba(61, 44, 58, 0.12);
}

.an_megamenu .dropdown-content {
  background: #ffffff;
  border: 1px solid #f0e0ed;
  border-radius: 16px;
  padding: 16px 18px;
  margin: 10px;
  box-shadow: 0 8px 22px rgba(61, 44, 58, 0.05);
}

.an_megamenu .dropdown-content > p.category-title {
  color: #3d2c3a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 10px 0;
  padding: 0 0 8px 0;
  border-bottom: 1px solid #f0e0ed;
  text-transform: none;
}

.an_megamenu .categories-grid .category-item > p.category-title {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.an_megamenu .categories-grid .category-item.level-1 > p.category-title > a {
  display: block;
  color: #5a4a56;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  padding: 4px 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.an_megamenu .categories-grid .category-item.level-2 > p.category-title > a {
  display: block;
  color: #7a6e77;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  padding: 3px 0 3px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.an_megamenu .categories-grid .category-item.level-2 > p.category-title > a::before {
  content: "– ";
  color: #b2467a;
}

.an_megamenu .categories-grid .category-item > p.category-title > a:hover {
  color: #b2467a;
  padding-left: 4px;
}

.an_megamenu .categories-grid .category-item {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.an_megamenu .categories-grid {
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .an_megamenu .dropdown-content {
    margin: 8px 0;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .an_megamenu .dropdown-content > p.category-title {
    font-size: 15px;
  }

  .an_megamenu .categories-grid .category-item.level-1 > p.category-title > a {
    font-size: 14px;
    padding: 5px 0;
  }
}
</style>
