.cashapp-form {
    display: none;
}

.cashapp-form.active {
    display: block; /* or flex if you want alignment */
}
body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    margin: 0;
    padding: 0;
}

.payment-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.payment-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.payment-details h3,
.cashapp-form h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.75rem;
}

.payment-details p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0.25rem 0;
}

.payment-option {
    background: #f3f4f6;
    border-radius: 0.75rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.payment-option:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-icon {
    font-size: 1.5rem;
    margin-right: 0.6rem;
}

.option-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.option-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.option-features {
    font-size: 0.85rem;
    color: #4b5563;
    padding-left: 1.2rem;
}

.back-button {
    background: none;
    border: none;
    font-size: 0.9rem;
    color: #2563eb;
    cursor: pointer;
    margin-bottom: 1rem;
}

.back-button:hover {
    text-decoration: underline;
}

.loading {
    display: none;
    text-align: center;
    padding: 2rem;
}

.spinner {
    border: 3px solid #e5e7eb;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.error-message {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.success-message {
    color: #16a34a;
    font-size: 0.9rem;
    margin-top: 1rem;
}
