/**
 * Livraison — styles du bandeau « vacances »
 * Extrait de customizer.css, co-localisé avec vacation.php (snippet #70).
 */

.delivery-vacation-notice {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 14px 18px;
    font-size: 0.9em;
    line-height: 1.6;
    background: var(--theme-palette-color-6, #FAF5F2);
    color: var(--theme-palette-color-4, #333333);
    border: 1px solid var(--theme-palette-color-5, #dedede);
    border-left: 3px solid var(--theme-palette-color-1, #B2594D);
    border-radius: 2px;
}

.delivery-vacation-notice .dvn-title {
    display: block;
    font-size: 0.95em;
    letter-spacing: 0.05em;
    color: var(--theme-palette-color-2, #8E473D);
    margin-bottom: 6px;
    font-style: italic;
}

/* "Derniers envois" : terracotta plus foncé et filet plus marqué */
.delivery-vacation-notice[data-tone="urgent"] {
    border-left-width: 4px;
    border-left-color: var(--theme-palette-color-2, #8E473D);
    background: var(--theme-palette-color-9, #FDF9F7);
}

.delivery-vacation-notice[data-tone="urgent"] .dvn-title {
    color: var(--theme-palette-color-2, #8E473D);
}

/* "Bientôt de retour" : plus doux, filet neutre */
.delivery-vacation-notice[data-tone="soft"] {
    border-left-color: var(--theme-palette-color-3, #777777);
}

.delivery-vacation-notice[data-tone="soft"] .dvn-title {
    color: var(--theme-palette-color-3, #777777);
}