/* ===== Payment Form ===== */
.payment-button {
    height: 48px;
    margin-bottom: 1rem;
}

.payment-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
    z-index: 1;
}

.payment-divider span {
    background: var(--white);
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

#card-container {
    min-height: 100px;
}

/* Adjust Square Card input to blend */