.header__nav {
    position: absolute;
}
.checkout-container {
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.product-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
}
.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.checkout-form {
    padding: 40px;
}
.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: bold;
}
.nav-tabs .nav-link.active {
    color: #007bff;
    border-bottom: 3px solid #007bff;
}
.tab-pane {
    margin-top: 20px;
}
.form-control {
    border-radius: 5px;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
}
.paypal-btn {
    background-color: #ffc439;
    color: #003087;
}
.stripe-btn {
    background-color: #6772e5;
    color: #fff;
}

.stripe-btn:hover{
	background-color: #4c54a7 !important;
}

.paypal-btn:hover{
	background-color: #ffbb1c !important;
}

.checkout-text{
	color: #555;
    font-size: 35px;
    text-align: center;
}

.select-payment-method-text{
    margin-bottom: 5px;
}

.user-info-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.user-info {
    font-size: 1rem;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.user-info i {
    color: #007bff;
    font-size: 1.2rem;
}
.user-info-label {
    font-weight: 700;
    color: #555;
}
#userEmail, #userPhone, #product, #price, #promoCode{
	font-weight: 600;
}

.checkout-form label{
	color: #555 !important;
}

#mastercardIcon, #visaIcon{
	font-size: 20px;
}

.fa-dollar-sign{
	margin-right: 8px;
}

.fa-shopping-bag{
	margin-right: 4px;
}

.fa-phone, .fa-envelope{
	margin-right: 1px;
}

#product{
	color: #0c7fe8;
}

.label-above {
    font-size: 1rem;
    color: #dc3545;
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
    text-align: center;
}

.bankNameSpan{
    color: #0b5ed7;
    font-weight: 600;
}

#activateMacroBtn{
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
}

#macroCode{
    width: 100%;
    height: 40px;;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.btn-pulse {
    animation: pulse 1.5s infinite;
}

@media (max-width: 960px) {
    .header__logo-icon{
        height: 30px;
        width: 90px;
    }
    #paymentTabs{
        position: relative;
        opacity: 1;
        top: 0;
        height: auto;
        pointer-events: auto;;
    }
    .product-image img{
        max-width: 94%;
        max-height: 75%;
    }
}

@media (max-width: 768px) {
    .product-image {
        height: 300px;
    }
    .header__logo-icon{
        height: 20px;
        width: 90px;
    }
    .product-image{
        display: none;
    }
}

@media (max-width: 576px) {
    .user-info-container {
        flex-direction: column;
        align-items: flex-start;
    }
}