/**
* 2007-2026 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-2026 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.
*/
.concept {
    padding: 4rem 5%;
    background: #fffaf5;
}
.concept-text {
    text-align: center;
}

.concept-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Image */
.concept-image {
    flex: 1;
}

.concept-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}

/* Contenu */
.concept-content {
    flex: 1.2;
}

.concept-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a2e17;
}

.concept-text h3 {
    margin: 1.8rem 0 1rem;
    color: #4a2e17;
}

.concept-text ul {
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

.concept-text li {
    margin-bottom: 0.6rem;
}

/* Tableau */
.concept-table {
    overflow-x: auto;
}

.concept-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.concept-table th,
.concept-table td {
    padding: 0.6rem;
    border: 1px solid #f1d7bb;
    text-align: center;
}

.concept-table th {
    background: #fbcb9a;
    color: #4a2e17;
    font-weight: 600;
}

.concept-table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* =====================
   RESPONSIVE
   ===================== */

/* Tablette */
@media (max-width: 1024px) {
    .concept-container {
        flex-direction: column;
    }

    .concept-image,
    .concept-content {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .concept {
        padding: 3rem 1.5rem;
    }

    .concept-text p,
    .concept-text li {
        font-size: 0.95rem;
    }

    .concept-table table {
        font-size: 0.85rem;
    }
}

.concept-title {
	text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #4a2e17;
    margin-bottom: 1.5rem;
    position: relative;
}

.concept-title::after {
    margin-left: 50%;
    content: "";
    /* text-align: center; */
    display: block;
    width: 200px;
    height: 4px;
    background: #fbcb9a;
    margin-top: 0.6rem;
    border-radius: 2px;
}
/* CTA */
.concept-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Base bouton */
.cta-btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

/* Bouton principal */
.cta-btn.primary {
    background: #fbcb9a;
    color: #4a2e17;
    box-shadow: 0 6px 14px rgba(251, 203, 154, 0.45);
}


/* Bouton secondaire */
.cta-btn.secondary {
    background: #fff;
    color: #4a2e17;
    border: 2px solid #fbcb9a;
}

/* Bouton contour */
.cta-btn.outline {
    background: transparent;
    color: #4a2e17;
    border: 2px dashed #fbcb9a;
}


/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .concept-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }
}
.concept-text strong {
    color: #11676a;
    font-weight: 700;
}
/* Bouton principal */
.cta-btn.primary:hover {
    background: #11676a;
    color: #ffffff;
}

/* Bouton secondaire */
.cta-btn.secondary:hover {
    background: #11676a;
    color: #ffffff;
    border-color: #11676a;
}

/* Bouton outline */
.cta-btn.outline:hover {
    background: rgba(17, 103, 106, 0.12);
    border-color: #11676a;
    color: #11676a;
}

/*tarifs*/
/* =====================
   SECTION TARIF
   ===================== */
.tarif {
    padding: 4rem 5%;
    background: #fffaf5;
}

.tarif-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Titre (reprise de concept-title existant) */
/* .concept-title déjà défini ailleurs */

/* Sous-titre */
.tarif-subtitle {
    font-size: 1rem;
    color: #6b4a2f;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* =====================
   BLOC PRINCIPAL : IMAGE + CONTENU
   ===================== */
.tarif-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bloc image */
.tarif-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.tarif-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Bloc contenu (cartes + CTA) */
.tarif-content {
    flex: 1;
    min-width: 320px;
}

/* =====================
   CARTES TARIFS
   ===================== */
.tarif-cards {
    
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tarif-card {
    margin-bottom: 110px;
    background: #ffffff;
    border: 2px solid #fbcb9a;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    min-width: 220px;
    transition: transform 0.3s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.tarif-card:hover {
    transform: translateY(-6px);
}

/* Mise en avant */
.tarif-card.highlight {
    border-color: #11676a;
    box-shadow: 0 10px 25px rgba(17, 103, 106, 0.25);
}

/* Texte cartes */
.tarif-duration {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a2e17;
    margin-bottom: 0.8rem;
}

.tarif-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #11676a;
}

/* Animation flottement cartes */
@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Décalage animation cartes */
.tarif-card:nth-child(1) { animation-delay: 0s; }
.tarif-card:nth-child(2) { animation-delay: 1.5s; }
.tarif-card:nth-child(3) { animation-delay: 3s; }

/* =====================
   CTA
   ===================== */
.tarif-cta {
    margin-top: 1.5rem;
    text-align: left; /* bouton aligné gauche sur desktop */
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .tarif-block {
        flex-direction: column-reverse; /* image au-dessus sur mobile */
        gap: 2rem;
    }

    .tarif-content {
        text-align: center;
    }

    .tarif-cta {
        text-align: center; /* bouton centré sur mobile */
    }
}

@media (max-width: 768px) {
    .tarif-cards {
        gap: 1.5rem;
    }

    .tarif-card {
        width: 100%;
        max-width: 320px;
    }
}







/*tYPE DE STAND*/
.typedestand {
    width: 100%;
    padding: 4rem 5%;
    background: #fffaf5;
}

.typedestand-container {
    max-width: 1900px;
    margin: 0 auto;
    text-align: center;
}

/* Cartes */
.typedestand-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.stand-card {
    background: #ffffff;
    border: 2px solid #fbcb9a;
    border-radius: 22px;
    padding: 1.8rem 1.6rem 2rem;
    min-width: 300px;
    flex: 1;
    max-width: 420px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stand-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    
}

.stand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Image */
.stand-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin-bottom: 1.4rem;
}

/* Texte */
.stand-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a2e17;
    text-align: left;
}

/* Nom du stand */
.stand-text strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #11676a;
    margin-bottom: 0.6rem;
}

/* Amélioration lecture détails */
.stand-text::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #fbcb9a;
    margin-top: 1rem;
    border-radius: 2px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .typedestand-cards {
        flex-direction: column;
        align-items: center;
    }

    .stand-card {
        width: 100%;
        max-width: 520px;
    }
}
 /*Prix de vente*/
 /* =====================
   SECTION PDV
   ===================== */
.pdv {
    padding: 4rem 5%;
    background: #fffaf5;
}

.pdv-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Bloc image + texte */
.pdv-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Image */
.pdv-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.pdv-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Contenu texte */
.pdv-content {
    flex: 1;
    min-width: 320px;
    color: #4a2e17;
}

.pdv-intro {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pdv-intro strong {
    color: #11676a;
}

/* Liste prix */
.pdv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdv-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #fbcb9a;
    font-size: 0.95rem;
}

.pdv-list li span {
    font-weight: 500;
}

.pdv-list li strong {
    color: #11676a;
    font-weight: 700;
}

/* Footer */
.pdv-footer {
    margin-top: 1.8rem;
    font-size: 1.1rem;
    color: #11676a;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .pdv-block {
        flex-direction: column;
        gap: 2rem;
    }

    .pdv-content {
        text-align: cent
	}
}

/*FAQ*/
/* =====================
   SECTION FAQ
   ===================== */
.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.faq-header img {
    width: 70px;
    height: auto;
}

.faq {
    padding: 4rem 5%;
    background: #fffaf5;
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Bulle image */
.faq-bubble {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.faq-bubble img {
    width: 100%;
    height: auto;
}

/* Liste FAQ */
.faq-list {
    margin-top: 2.5rem;
}

/* Item FAQ */
.faq-item {
    background: #ffffff;
    border: 2px solid #fbcb9a;
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
}

/* Question */
.faq-item summary {
    cursor: pointer;
    padding: 1rem 1.4rem;
    font-weight: 600;
    color: #4a2e17;
    list-style: none;
    position: relative;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.4rem;
    font-size: 1.4rem;
    color: #11676a;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: "−";
}

/* Contenu */
.faq-content {
    padding: 1rem 1.4rem 1.4rem;
    color: #4a2e17;
    line-height: 1.6;
}

.faq-content ul {
    padding-left: 1.2rem;
}

.faq-content li {
    margin-bottom: 0.4rem;
}

.faq-content strong {
    color: #11676a;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .faq-bubble {
        position: static;
        margin: 0 auto 1.5rem;
    }
}

.titre-image {
	
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;	
}
.titre-image img {
	    width: 70px;
    height: auto;
}