/**
 * Styles pour l'affichage des informations de précommande
 * Utilisé sur les pages produits et dans le panier
 *
 * Charte graphique : Compatible avec Bootstrap 4 (G comme une idée theme)
 * - Couleur principale : #B12E20 (rouge)
 * - Textes : #721010 (rouge foncé)
 * - Fond : #fbe9ea (rose pâle)
 * - Bordures : #dee2e6
 * - Border-radius : 4px (standard Bootstrap)
 */

/* ==========================================================================
   Notice de précommande - Page produit
   ========================================================================== */

.preorder-notice {
    margin: 20px 0;
    padding: 16px 20px;
    border: 1px solid #e8b8ba;
    border-left: 4px solid #B12E20;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.preorder-notice--product {
    margin-bottom: 20px;
}

.preorder-notice__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #721010;
    font-size: 16px;
}

.preorder-notice__icon {
    color: #B12E20;
    flex-shrink: 0;
}

.preorder-notice__badge strong {
    font-weight: 600;
    color: #721010;
}

.preorder-notice__description {
    color: #721010;
    margin: 0;
    padding-left: 28px; /* Aligner avec le texte du badge */
    font-size: 14px;
}

.preorder-notice__description p {
    margin-bottom: 8px;
}

.preorder-notice__description p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Notice de précommande - Panier
   ========================================================================== */

.preorder-notice--cart {
    padding: 10px 12px;
    border: none;
    background: #fff;
    font-size: 13px;
    box-shadow: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.preorder-notice__badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #721010;
    font-size: 11px;
    font-weight: 600;
}

.preorder-notice__badge-inline strong {
    font-weight: 600;
}

.preorder-notice--cart .preorder-notice__icon {
    width: 12px;
    height: 12px;
    color: #B12E20;
    flex-shrink: 0;
}

.preorder-notice__description-small {
    color: #721010;
    font-size: 10px;
    line-height: 1.5;
}

/* ==========================================================================
   Badge sur les listings de produits (optionnel)
   Style identique au bandeau "nouveautés"
   ========================================================================== */

.preorder-badge {
    background-color: #721010;
    color: #fff;
    display: block;
    transform: rotate(45deg);
    padding: 4px 55px;
    font-size: 1.2rem;
    text-transform: uppercase;
    position: absolute;
    right: -35px;
    top: 55px;
    font-weight: 400;
    letter-spacing: normal;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .preorder-notice {
        padding: 12px;
        font-size: 13px;
    }

    .preorder-notice__badge {
        font-size: 14px;
    }

    .preorder-notice__description {
        padding-left: 24px;
        font-size: 13px;
    }

    .preorder-notice--cart {
        padding: 8px 10px;
        font-size: 12px;
    }

    .preorder-notice__description-small {
        font-size: 11px;
    }
}