.custom-ot-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center; /* centre les colonnes horizontalement */
}

.ot-column {
    display: grid;
    grid-template-rows: auto auto 1fr auto; /* titre / description / items / prix */
    background-color: #F6F4F1; /* fond des colonnes */
    border-radius: 12px;        /* arrondi */
    padding: 20px;
    color: #232950;             /* texte par défaut */
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Titre */
.ot-title {
    grid-row: 1;
    text-align: center;
    font-family: 'RoGSanSrfStd-Bd', sans-serif !important;
    font-size: 2rem;
}

/* Description */
.ot-description {
    margin: 0; /* Supprime toutes les marges */
    padding: 0; /* Optionnel, pour enlever tout padding */    grid-row: 2;
    display: flex;
    justify-content: center; /* centre horizontal */
    align-items: center;     /* centre vertical */
    text-align: center;
    font-family: 'SofiaSans-VariableFont_wght', sans-serif !important;
    font-size: 1.3rem;
}

/* Conteneur des items */
.ot-item-list {
    grid-row: 3;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%; /* prend tout l'espace disponible entre description et prix */
    justify-content: flex-start; /* commence en haut */
    font-family: 'SofiaSans-VariableFont_wght', sans-serif !important;
    font-size: 1.5rem;
}

/* Chaque item */
.ot-item-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon de checklist */
.ot-check-item::before {
    content: "✔ ";
    color: #5D9AD2;
    display: inline-block;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    font-family: 'SofiaSans-VariableFont_wght', sans-serif !important;
}

/* Prix */
.ot-price {
    grid-row: 4;
    text-align: center;
    font-weight: bold;
    color: #5D9AD2;
    font-family: 'RoGSanSrfStd-Bd', sans-serif !important;
    font-size: 1.8rem;
}

.ot-description,
.ot-item-list,
.ot-price {
    display: block;
}

/* Boutons suppression */
.btn-remove {
    margin-left: 5px;
    color: red;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 767px) {
    .custom-ot-columns {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 1024px) {
    .custom-ot-columns {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        justify-content: center; /* centre la dernière colonne */
    }
}

