/* --- 1. DESIGN : TOP ORANGE ET TEXTE BLANC --- */
#order-standard_cart .product header {
    background-color: #ff6600 !important;
    border: none !important;
    border-radius: 4px 4px 0 0 !important;
    padding: 15px !important;
}

#order-standard_cart .product header *,
#order-standard_cart .product header span {
    color: #ffffff !important;
    font-weight: bold !important;
    margin: 0 !important;
}

/* --- 2. DESIGN : FOND GRIS ANTHRACITE ET BORDURE --- */
#order-standard_cart .product {
    background-color: #1e1e1e !important; 
    border: 1px solid #333333 !important; 
    border-radius: 5px !important;
    padding: 0 !important;
    overflow: hidden !important; /* Garde tout bien à l'intérieur des coins ronds */
}

/* NOUVEAU : On rend les boîtes de texte internes invisibles pour voir le gris de la boîte principale ! */
#order-standard_cart .product .product-desc,
#order-standard_cart .product footer,
#order-standard_cart .product .product-pricing {
    background-color: transparent !important;
    border: none !important;
}

/* On force le texte à rester blanc pour un contraste parfait */
#order-standard_cart .product .product-desc *,
#order-standard_cart .product footer * {
    color: #ffffff !important;
}