/* Lezzet Delivery Zones - Checkout Widget */

.ldz-checkout-widget {
    background: #1E1E1E;
    border: 1px solid #2E2E2E;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.ldz-checkout-widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #CC2222;
}

.ldz-address-checker {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.ldz-address-field {
    flex: 1;
    background: #111 !important;
    border: 1px solid #3E3E3E !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
}

.ldz-address-field::placeholder { color: #666 !important; }
.ldz-address-field:focus { border-color: #CC2222 !important; outline: none !important; }

.ldz-check-btn {
    background: #CC2222 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    white-space: nowrap !important;
}

.ldz-check-btn:hover { background: #a01b1b !important; }
.ldz-check-btn:disabled { opacity: 0.6 !important; cursor: not-allowed !important; }

/* Result */
.ldz-zone-result {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 8px;
}

.ldz-zone-result.ldz-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.ldz-zone-result.ldz-error {
    background: rgba(204, 34, 34, 0.1);
    border: 1px solid rgba(204, 34, 34, 0.3);
    color: #e74c3c;
}

.ldz-result-zone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ldz-result-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ldz-result-zone > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ldz-result-zone strong {
    font-size: 14px;
    color: #fff;
}

.ldz-result-zone span {
    font-size: 12px;
    color: #aaa;
}
