.lul-payment-form {
    max-width: 500px;
    margin: 0 auto;
    font-family: inherit;
}

.lul-payment-field {
    margin-bottom: 16px;
}

.lul-payment-field label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
}

.lul-payment-field .required {
    color: #e00;
}

.lul-payment-field input[type="text"],
.lul-payment-field input[type="email"],
.lul-payment-field input[type="tel"],
.lul-payment-field input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.lul-payment-field .lul-currency-label {
    display: inline-block;
    margin-top: 6px;
    font-weight: 600;
    color: #555;
}

.lul-payment-gateways {
    margin-bottom: 16px;
}

.lul-gateway-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.lul-gateway-tab {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}

.lul-gateway-tab:first-child {
    border-radius: 4px 0 0 4px;
}

.lul-gateway-tab:last-child {
    border-radius: 0 4px 4px 0;
}

.lul-gateway-tab.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.lul-gateway-tab:hover:not(.active) {
    background: #e0e0e0;
}

#lul-card-element {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    min-height: 42px;
}

#lul-card-errors {
    margin-top: 6px;
    color: #e00;
    font-size: 13px;
    min-height: 18px;
}

.lul-billplz-banks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.lul-bank-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.lul-bank-option:hover {
    background: #f0f8ff;
    border-color: #0073aa;
}

.lul-bank-option input {
    margin: 0;
}

.lul-payment-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.lul-payment-submit:hover {
    background: #005a87;
}

.lul-payment-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.lul-payment-message {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
}

.lul-payment-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lul-payment-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.lul-payment-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.lul-product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lul-product-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 2px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    gap: 10px;
}

.lul-product-option:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

.lul-product-option.selected {
    border-color: #0073aa;
    background: #e8f4fd;
}

.lul-product-option input[type="radio"] {
    flex-shrink: 0;
    margin: 0;
    accent-color: #0073aa;
}

.lul-product-info {
    flex: 1;
    min-width: 0;
}

.lul-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: block;
}

.lul-product-price {
    font-size: 15px;
    font-weight: 700;
    color: #0073aa;
    white-space: nowrap;
    flex-shrink: 0;
}

