.panier-page {
    background-color: #434343;
    min-height: 500px;
    color: white;
}

.panier-contenu {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: flex-start;
}

.panier-gauche {
    flex: 1;
}

.panier-gauche h1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.panier-vide {
    color: #aaaaaa;
    font-size: 1.1em;
}

.panier-item {
    background-color: #000000;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.panier-item img {
    border-radius: 5px;
    object-fit: cover;
    height: 70px;
}

.panier-item-info {
    flex: 1;
}

.panier-item-info ~ img,
.panier-item > img:first-child {
    border-radius: 5px;
    object-fit: cover;
    height: 70px;
    width: 90px;
}

.panier-supprimer img {
    width: 30px;
    height: 30px;
}

.panier-supprimer {
    margin-left: auto;
}

.panier-item-info h5 {
    margin-bottom: 8px;
}

.panier-separateur {
    width: 3px;
    background-color: #ffffff;
    align-self: stretch;
}

.panier-droite {
    width: 380px;
    flex-shrink: 0;
}

.panier-resume {
    background-color: #000000;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
}

.panier-ligne {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333333;
}

.panier-ligne:last-child {
    border-bottom: none;
}

.panier-total {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 10px;
}

.btn-commande {
    background-color: #ffffff;
    color: black;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    width: 55%;
    font-size: 1em;
}

.btn-commande:hover {
    background-color: #ffffff;
}

.panier-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: white;
    color: black;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.65em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panier-promo {
    margin-bottom: 15px;
}

.panier-promo-form .admin-input-version {
    flex: none;
    width: 60%;
}

.panier-promo-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.panier-promo-form button {
    margin-left: 10px;
    flex-shrink: 0;
}

.panier-promo-actif {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222222;
    border-radius: 5px;
    padding: 8px 15px;
    margin-right: 15px;
    font-size: 0.9em;
}