/**
 * Styles pour le statut de stock personnalisé 'Bientôt en stock'
 */
/**
 * Styles pour l'option "Bientôt en stock"
 */

/* Style pour l'affichage sur la page produit */
p.stock.bientot-en-stock {
    color: #e5a700;
    font-weight: bold;
    display: inline-block;
    margin: 5px 0;
}

/* Style pour l'icône */
p.stock.bientot-en-stock::before {
    content: '\f508'; /* Code de l'icône horloge */
    font-family: 'dashicons';
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 1.2em;
}

/* Style pour le message personnalisé */
.restock-custom-message {
    display: block;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 5px;
}

/* Mise en forme des champs dans l'admin */
.restock-date-field,
.restock-date-variation-field {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Style du checkbox "Bientôt en stock" pour le mettre en évidence */
#_coming_soon,
.variable_coming_soon {
    outline: 2px solid #e5a700;
    box-shadow: 0 0 5px rgba(229, 167, 0, 0.3);
}

/* Style des étiquettes pour les rendre plus visibles */
label[for="_coming_soon"],
label[for^="variable_coming_soon_"] {
    font-weight: bold;
    color: #e5a700;
}
/* Style pour le badge dans l'admin */
mark.bientot-en-stock {
    background-color: #ffb900;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: normal;
}

/* Style pour l'affichage sur la page produit */
p.stock.bientot-en-stock {
    color: #ffb900;
    font-weight: bold;
    display: inline-block;
    margin: 5px 0;
}

/* Icône pour le statut */
p.stock.bientot-en-stock::before {
    content: '\f508'; /* Code de l'icône horloge */
    font-family: 'dashicons';
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 1.2em;
}

/* Style pour le message personnalisé */
.restock-custom-message {
    display: block;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 5px;
}
