.breadcrumb-hero{
  background: linear-gradient(180deg,#ffffff,#fff3ea,#f5f7fa);
  padding: 80px 0 40px;
}

.container{
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.content h1{
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.breadcrumb{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb a{
  text-decoration: none;
  color: #666;
  transition: 0.3s;
}

.breadcrumb a:hover{
  color: #ec1944;
}

.breadcrumb .sep{
  color: #aaa;
}

.breadcrumb .active{
  color: #111;
  font-weight: 600;
}

.hero-section{
  padding: 80px 0;
  background: linear-gradient(180deg,#ffffff,#fff7f0,#f3f5f7);
}

.container{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content h1{
  font-size: 44px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.content p{
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.price-block{
  margin-bottom: 25px;
}

.price{
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ec1944;
}

.sub{
  font-size: 14px;
  color: #777;
}

.cta{
  background: #ec1944;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 20px;
}

.cta:hover{
  background: #ec1944;
}

.features{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

.feature{
  background: rgba(255,106,0,0.08);
  padding: 8px 12px;
  border-radius: 8px;
}

.image-box img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .grid{
    grid-template-columns: 1fr;

  }

  .features{
    justify-content: center;
  }
}


  .section-padding { padding: 80px 0; }

  .section-gray {
    background: linear-gradient(180deg, #ffffff, #fff7f0, #f3f5f7);
  }

  .max-w-7xl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  /* GRID RESPONSIVE */
  .grid-3 {
    display: grid;
    grid-template-columns: 1fr; /* MOBILE par défaut */
    gap: 24px;
    align-items: stretch;
  }

  /* TABLET */
  @media (min-width: 768px) {
    .grid-3 {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* DESKTOP */
  @media (min-width: 1024px) {
    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* CARTES ÉGALES */
  .card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;

    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .card h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }

  li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .icon { color: #ec1944; }
  .icon-muted { color: #999; }

  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }

  th, td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .use-section {
    padding: 80px 0;
  }

  .use-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .use-section .text-center {
    text-align: center;
    margin-bottom: 48px;
  }

  .use-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
  }

  /* GRID */
  .use-section .grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  @media (min-width: 768px) {
    .use-section .grid-4 {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 1024px) {
    .use-section .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* CARD */
  .use-section .card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    transition: 0.2s ease;
    height: 100%;
  }

  .use-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .use-section .icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .use-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
  }

  .use-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }

  .section-padding{
  padding: 80px 200px;
}

@media (max-width: 1024px){
  .section-padding{
    padding: 60px 40px;
  }
}

@media (max-width: 768px){
  .section-padding{
    padding: 50px 20px;
  }
}

/* limite le tableau pour éviter full width */
.container-table{
  max-width: 1100px;
  margin: 0 auto;
}

/* sécurité responsive */
.table-wrapper{
  width: 100%;
}



/* LISTE FAQ */
.faq-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.faq-item{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px 20px;
}

/* TITRE CLICKABLE */
.faq-item summary{
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
}

/* enlever flèche default */
.faq-item summary::-webkit-details-marker{
  display: none;
}

/* ICON + */
.faq-item summary::after{
  content: "+";
  color: #ec1944;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* rotation quand ouvert */
.faq-item[open] summary::after{
  transform: rotate(45deg);
}

/* contenu */
.faq-item p{
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* padding global responsive */
.section-padding{
  padding: 80px 200px;
}

@media (max-width: 1024px){
  .section-padding{
    padding: 60px 40px;
  }
}

@media (max-width: 768px){
  .section-padding{
    padding: 50px 20px;
  }
}


/* GRID PRODUITS */
.products-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* TABLETTE */
@media (max-width: 1024px){
  .products-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px){
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PETIT MOBILE */
@media (max-width: 480px){
  .products-grid{
    grid-template-columns: 1fr;
  }
}

/* CARD */
.product-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.product-card:hover{
  transform: translateY(-5px);
}

/* IMAGE */
.product-card img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* TEXTE */
.product-card h3{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.product-card span{
  font-size: 13px;
  color: #ec1944;
  font-weight: 600;
}

/* SECTION BACKGROUND */
.section-gray{
  background: #f7f8fa;
}

/* PADDING GLOBAL */
.section-padding{
  padding: 80px 200px;
}

@media (max-width: 1024px){
  .section-padding{
    padding: 60px 40px;
  }
}

@media (max-width: 768px){
  .section-padding{
    padding: 50px 20px;
  }
}