.contat-delivery-date-notice {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 6px;
    background: #fff8e1;
    border: 1px solid #f0c36d;
    color: #6f4e00;
    font-size: 14px;
    line-height: 1.4;
}

.contat-delivery-schedule {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 6px;
    background: #f8f6ef;
    border: 1px solid #ded7c8;
    color: #3e372c;
    font-size: 14px;
    line-height: 1.5;
}

.contat-delivery-schedule strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.contat-delivery-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.contat-date-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 74px;
    padding: 8px 6px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 12px;
    line-height: 1.2;
    background: #fff;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.contat-date-chip:hover {
    transform: translateY(-1px);
}

.contat-date-chip[disabled] {
    cursor: not-allowed;
    opacity: 0.9;
    transform: none;
}

.contat-date-chip--available {
    background: #edf8ef;
    border-color: #9fd0a8;
    color: #1d5c2b;
}

.contat-date-chip--warning {
    background: #fff7dd;
    border-color: #f0c36d;
    color: #7a5600;
}

.contat-date-chip--closed {
    background: #fdeaea;
    border-color: #e2a5a5;
    color: #983333;
}

.contat-date-chip--selected {
    box-shadow: 0 0 0 2px #1d1d1d inset;
    border-color: #1d1d1d;
}

.contat-date-chip__day {
    text-transform: capitalize;
    font-weight: 700;
}

.contat-date-chip__date {
    font-size: 13px;
    font-weight: 700;
}

.contat-date-chip__meta {
    font-size: 11px;
    opacity: 0.85;
}

.contat-select-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.contat-select-button {
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    background: #fff;
    color: #242424;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contat-select-button:hover {
    border-color: #9a9a9a;
}

.contat-select-button.is-selected {
    background: #edf8ef;
    border-color: #1d5c2b;
    box-shadow: 0 0 0 1px #1d5c2b inset;
    color: #1d5c2b;
}
