/* Custom Checkout Link Styles */

.custom-checkout-button-wrapper {
    text-align: center;
    margin-top: 15px;
}

.custom-checkout-link {
    position: relative;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.custom-checkout-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

.custom-checkout-link:hover {
    color: #333;
}

.custom-checkout-link:hover::after {
    width: 100%;
}

