/* ══════════════════════════════════════════════════
   Location en Fête — Cart page: banner + steps + reminder
   Fichier : astra-child/assets/css/cart-banner.css
   ══════════════════════════════════════════════════ */

/* ── Bandeau nouveau service ── */
.lef-cart-new-service {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #18475B 0%, #2a7a8e 100%);
    border-radius: 10px;
    padding: 14px 22px;
    margin-bottom: 14px;
}
.lef-cart-new-service-badge {
    flex-shrink: 0;
    background: #FFD166;
    color: #18475B;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}
.lef-cart-new-service-text {
    color: rgba(255,255,255,0.92);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}
.lef-cart-new-service-text strong {
    color: #fff;
    font-weight: 600;
}

/* ── Encart info demande de devis ── */
.lef-cart-info {
    display: flex;
    gap: 16px;
    background: #f0fafb;
    border: 1px solid #d1ecf1;
    border-left: 4px solid #3AA6B9;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.lef-cart-info-icon {
    flex-shrink: 0;
    margin-top: 1px;
}
.lef-cart-info-content {
    flex: 1;
}
.lef-cart-info-title {
    font-size: 15px;
    font-weight: 600;
    color: #18475B;
    margin: 0 0 10px;
    line-height: 1.3;
}
.lef-cart-info-list {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: none;
}
.lef-cart-info-list li {
    position: relative;
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 6px;
}
.lef-cart-info-list li:last-child {
    margin-bottom: 0;
}
.lef-cart-info-list li::before {
    content: "✓";
    position: absolute;
    left: -18px;
    color: #3AA6B9;
    font-weight: 700;
    font-size: 13px;
}
.lef-cart-info-list li strong {
    color: #18475B;
    font-weight: 600;
}

/* ── Rappel sous le tableau ── */
.lef-cart-reminder {
    text-align: center;
    padding: 14px 0 4px;
    font-size: 13px;
    color: #7A7A96;
    line-height: 1.5;
}

/* ── Boutons +/- panier ── */
.lef-cart-qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #18475B;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}
.lef-cart-qty-btn:hover {
    background: #3AA6B9;
    color: #fff;
    border-color: #3AA6B9;
}
.woocommerce-cart-form .quantity {
    display: flex !important;
    align-items: center;
    gap: 4px;
}
.woocommerce-cart-form input.qty {
    width: 55px !important;
    text-align: center;
    -moz-appearance: textfield;
}
.woocommerce-cart-form input.qty::-webkit-inner-spin-button,
.woocommerce-cart-form input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .lef-cart-info {
        flex-direction: column;
        gap: 10px;
        padding: 16px 18px;
    }
    .lef-cart-info-title {
        font-size: 14px;
    }
}