/* --- Seamless Border Stack Matrix for Extended Methods --- */
.payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e3e8ee;
    padding: 16px;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: none; /* Strip inner borders */
}

#label-card {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#label-steam {
    border-bottom: 1px solid #e3e8ee; /* Re-apply base anchor border */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.payment-option.active {
    background-color: #f8f9fa;
    border: 1px solid #007cc3;
    margin-bottom: -1px;
    margin-top: -1px;
    position: relative;
    z-index: 5;
}

#label-card.active {
    margin-top: 0;
}

/* --- Code Field Visibility --- */
.hidden {
    display: none !important;
}

#giftcard-code-container {
    margin-top: 20px;
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e3e8ee;
}

#giftcard-code-container label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4f5b66;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}