/* --- Product Page Notice --- */
.odpn-notice {
    font-family: "Jost", sans-serif !important;
    font-size: 16px;
    border: 2px solid #d32f2f !important; /* Importance */
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    background-color: #fff !important;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Target the actual Date/Days text */
.odpn-notice strong, 
.odpn-notice .dispatch-date {
    color: #2e7d32 !important; /* Positive Green */
    font-size: 1.1em;
    font-weight: 700;
}

.on-demand-warning {
    color: #d32f2f;
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 900;
}

/* --- Cart & Order Checkout Box --- */
.odpn-checkout {
    font-family: "Jost", sans-serif !important;
    border: 2px solid #d32f2f !important;
    padding: 15px;
    border-radius: 4px;
    background: #fdfdfd !important;
    margin: 15px 0;
}

/* The summary date at the top of the checkout box */
.odpn-checkout strong {
    color: #2e7d32 !important; 
    font-size: 17px;
}

/* The individual product lead times in the list */
.odpn-checkout li span {
    color: #2e7d32 !important; /* Green for "1 day", "2 days", etc. */
    font-weight: bold;
}

/* --- Interaction Effects --- */
.flash-effect { animation: odpn-flash 0.6s ease-in-out; }
@keyframes odpn-flash {
    0% { background-color: #fff9c4; transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { background-color: #fff; transform: scale(1); }
}

.is-error { border-color: #ffa000; color: #757575; }