/* ── EDD Pincode Widget v2 ── */

.edd-product-widget {
    margin: 16px 0 8px;
    font-family: inherit;
}

.edd-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edd-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.edd-pincode-input {
    width: 130px !important;
    padding: 9px 12px !important;
    border: 1.5px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.15s;
    background: #fff !important;
}

.edd-pincode-input:focus {
    border-color: #555 !important;
}

.edd-check-btn {
    padding: 9px 18px !important;
    background: #222 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    letter-spacing: 0.3px;
    transition: background 0.15s !important;
    line-height: 1 !important;
}

.edd-check-btn:hover {
    background: #444 !important;
}

.edd-check-btn:disabled {
    opacity: 0.55;
    cursor: default !important;
}

/* Result box */
.edd-result {
    margin-top: 10px;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 13.5px;
    line-height: 1.5;
}

.edd-success {
    background: #f0faf3;
    border: 1px solid #b2dfca;
    color: #1a6e35;
}

.edd-error {
    background: #fff5f5;
    border: 1px solid #ffc9c9;
    color: #c0392b;
}

.edd-loading {
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    color: #888;
}

/* Checkout variant */
.edd-checkout-result {
    margin: 10px 0 4px;
}
