.pcard-meta{
flex-direction:column;
}

/* Spécifique LCV */
.product-add-to-cart .product-quantity {
    display: flex;
    gap: 14px;
}
.product-quantity .add { width: 100%; }
.product-add-to-cart .product-quantity .input-group-btn-vertical {display:none;}
.trust-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.mrd-logo img {
    height: 55px;
}
@media (max-width:768px){ 
.mrd-logo img {
    height: 35px;
}
}
.cat-head {display:none;}
.no-account { display:none;}
.delivery-estimation-product { display:none;}
.auth-grid {
    grid-template-columns: unset;
}
/* Spécifique LCV */


/* style personnalisation */
.product-customization .card-block {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    font-size: 11px;
}

.product-customization .product-customization-item {
    display: flex;
    flex-direction: column;
}

.product-customization .product-customization-item label {
    font-weight: bold;
    font-size: 13px;
}

.product-customization .product-customization-item .product-message {
    font-size: 13px;
    margin: 0;
    width: 100%;
}

.product-customization .card-title {
    font-size: 14px;
    font-weight: bold;
}
.product-customization div.clearfix {
    display: flex;
    justify-content: space-around;
}
.product-customization .btn {
    width: 100% !important;
    font-size: 14px !important;
}
/* style personnalisation */

/* ==========================
   FAQ - PrestaShop CMS
========================== */

.page-cms .container {
    max-width: 1100px;
    margin: 50px auto;
}

/* Titre */

.page-cms h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
}

/* Bloc FAQ */

.page-cms .q-block {
    background: #fff;
    border: 1px solid var(--ink);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: all .3s ease;
}

.page-cms .q-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* Question */

.page-cms .q-block h2 {
    margin: 0;
    padding: 22px 70px 22px 25px;
    background: #fafafa;
    color: #222;
    font-size: 20px;
    font-weight: 600;
    border-left: 5px solid var(--ink);
    position: relative;
    transition: .3s;
}

/* Icône */

.page-cms .q-block h2::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--ink);
    font-weight: 300;
}

/* Réponse */

.page-cms .q-block > div {
    padding: 25px;
    background: #fff;
}

.page-cms .q-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--ink);
    font-size: 16px;
}

.page-cms .q-block p:last-child {
    margin-bottom: 0;
}

/* Liens */

.page-cms .q-block a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}

.page-cms .q-block a:hover {
    text-decoration: underline;
}

/* Listes */

.page-cms .q-block ul,
.page-cms .q-block ol {
    padding-left: 20px;
}

.page-cms .q-block li {
    margin-bottom: 8px;
}

/* Responsive */

@media (max-width:768px){

    .page-cms h1{
        font-size:32px;
    }

    .page-cms .q-block h2{
        font-size:17px;
        padding:18px 55px 18px 18px;
    }

    .page-cms .q-block > div{
        padding:18px;
    }

    .page-cms .q-block h2::after{
        right:18px;
        font-size:28px;
    }

}
/* Réponse fermée par défaut */
.page-cms .q-block > div {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all .35s ease;
}

/* Réponse ouverte */
.page-cms .q-block.active > div {
    max-height: 1000px;
    padding: 0 25px 25px;
}

/* Curseur */
.page-cms .q-block h2 {
    cursor: pointer;
    user-select: none;
}

/* Icône + */
.page-cms .q-block h2::after {
    content: "+";
    transition: transform .3s ease;
}

/* Icône - */
.page-cms .q-block.active h2::after {
    content: "−";
}