/* Valentine Special Payment Form Styles */
.valentine-form-container {
    max-width: 420px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.valentine-form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #b8002e;
    font-weight: 700;
}
.valentine-form-group {
    margin-bottom: 18px;
}
.valentine-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}
.valentine-form-group input,
.valentine-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafbfc;
}
.valentine-form-group input[type="date"] {
    padding-right: 0;
}
.valentine-form-options {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}
.valentine-form-options button {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    background: #f5f5f5;
    color: #b8002e;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.valentine-form-options button.selected,
.valentine-form-options button:hover {
    background: #b8002e;
    color: #fff;
}
.valentine-cost-breakdown {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #333;
}
.valentine-payment-options {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}
.valentine-payment-option {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 10px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: border 0.2s, background 0.2s;
}
.valentine-payment-option.selected,
.valentine-payment-option:hover {
    border: 2px solid #b8002e;
    background: #fbe6ed;
}
.valentine-payment-option .amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #b8002e;
    margin-bottom: 4px;
}
.valentine-payment-option .desc {
    font-size: 0.95rem;
    color: #666;
}
.valentine-submit-btn {
    width: 100%;
    padding: 12px 0;
    background: #b8002e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.valentine-submit-btn:hover {
    background: #a00028;
}
.valentine-error {
    color: #b8002e;
    background: #ffe6eb;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
}
.valentine-success {
    color: #1a7f37;
    background: #e6ffe6;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
}
