
/* Le conteneur pour aligner les cartes */
.container-promo {
    display: grid;
    /* 5 colonnes sur PC, 1 ou 2 sur mobile selon l'écran */
    grid-template-columns: repeat(auto-fill, 148px);
    gap: 5px;
    padding: 5px;
}
.couper-en-deux {
    position: relative;
    display: inline-block;
    color: var(--text-color);
    margin-right: 5px;
    font-size:10px;
}

.couper-en-deux::before {
    content: "";
    position: absolute;
    top: 48%;
    left: -2px;
    right: -2px;
    height: 1px;
    background: currentColor;
    transform: rotate(-15deg);
    opacity: 0.8;
}
/* La carte carrée 148x148 */
.gri-promo {
    display: flex;
    /* Aligne IMG à gauche et DETAILS à droite */
    width: 148px;
    height: 148px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

/* Partie Gauche : Image */
.promo-img {
    height: 100%;
    width: 100px;
    border-right: 1px solid #eee;
    object-fit: cover;

}

.promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partie Droite : Détails */
.promo-details {
    width: 40%;
    /* Environ 82px */
    padding: 2px;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Pour positionner le dropdown */
}

/* Dropdown (les 3 points en haut à droite selon ton dessin) */
.dropdown-bottom-trigger {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    cursor: pointer;
    color: #888;
}

/* Titres et textes (très compacts) */
.promo-title {
    font-size: 10px;
    font-weight: bold;
    margin: 10px 0 2px 0;
    /* Marge en haut pour laisser la place au dropdown */
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-price {
    font-size: 10px;
    color: #e44d26;
    font-weight: bold;
}

.promo-reductions ul {
    list-style: none;
    padding: 0;
    margin: 2px 0;
    font-size:9px;
    color: var(--text-color);
}

/* Bouton tout en bas */
.promo-btn {
    margin-top: auto;
    /* Pousse le bouton en bas */
    font-size: 14px;
    color:var(--text-color);
    text-align: center;
    padding: 4px 0;
    text-decoration: none;
    border-radius: 4px;
}
.prix-promo {
    font-size: 9px;
    color: var(--titre-color);
    font-weight: bold;
}

@media screen and (max-width: 728px) {
   
    .prix-promo {
            font-size: 16px;
          
        }
    .container-promo {
        display: block;
    }
        .promo-reductions ul {
            list-style: none;
            padding: 0;
            margin: 2px 0;
            font-size: var(--taille-text-mo);
            color: var(--text-color);
        }
    /* La carte carrée 148x148 */
    .gri-promo {
        width: 100% !important;

    }
    .promo-img {
        width: 218px !important;
    }
        .promo-img img {
            width: 68%;
        }

    .container-promo {
        gap: 20px;
    }

    /* Titres et textes (très compacts) */
    .promo-title {
        font-size: 16px;

    }
    
    
        /* Partie Droite : Détails */
        .promo-details {
            width: 55%;
            /* Environ 82px */
        
            /* Pour positionner le dropdown */
        }
                .prix-promo {
                    font-size: 12px;
                }

.couper-en-deux {

    font-size: var(--taille-text-pc);
}
}

