/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
:root {
  --rouge: #8f2832;
  --jaune: #eba938;
  --brun: #533c30;
  --fond: #f9f6f4;
}

/* --- SECTION PRINCIPALE --- */
.prix-pull {
  width: 100%;
  background-color: var(--fond);
 padding: 20px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: var(--brun);
}

.prix-pull h2 {
  font-size: 2.2rem;
  color: var(--rouge);
  margin-bottom: 10px;
}

.prix-pull h2 strong {
  color: var(--jaune);
}

.prix-pull .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
}

.prix-pull .highlight {
  color: var(--rouge);
  font-weight: 700;
}

/* --- BLOC INTERNE --- */
.bloc-legende {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contenu-legende {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  background-color: #fff;
  padding: 50px 70px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  text-align: left;
}

/* --- IMAGE GAUCHE --- */
.bloc-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  border-radius: 12px;
}

/* --- TEXTE DROITE --- */
.bloc-texte {
  flex: 1;
}

.bloc-texte p {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.liste-couleurs {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.liste-couleurs li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--brun);
}

.pastille {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.pastille.deposant { background-color: var(--jaune); }
.pastille.magasin { background-color: var(--rouge); }
.pastille.tva { background-color: var(--brun); }

.code {
  font-weight: 600;
  color: var(--rouge);
  font-size: 0.95rem;
}

.note {
  font-style: italic;
  color: #6b5549;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .contenu-legende {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .bloc-image img {
    max-width: 380px;
    margin-bottom: 25px;
  }

  .liste-couleurs li {
    justify-content: center;
  }
}
.liste-couleurs li {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--brun);
}

/* Ajuste la pastille */
.pastille {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Le montant à droite */
.montant {
  font-weight: 700;
  font-size: 30px!important;
  color: var(--rouge);
  margin-left: auto; 
}
