* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* header {
    width: 100%;
    overflow: hidden;
    position: relative;
} */
.navbar-section{
    background: linear-gradient(358deg, rgb(104 104 104 / 410%), rgb(0 0 0 / 11%));
    backdrop-filter: blur(2px); /* Adjust blur intensity */
}

.bg-img{
    background-image: url(../img/bg-img.png);
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.navbar-nav {
    margin-right: 0 !important; /* Removes right margin */
    align-items: center;
}
.cart-section{
    position: relative;
}
.cart-section .cart-show{
    position: absolute;
    /* color: white; */
    font-size: 11px;
    background-color: #ffff57;
    border-radius: 20px;
    padding: -1px;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: bold;
    top: 2px;
    /* right: 0px; */
    left: 25px;
}
/* .cart-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
} */

.cart-button button {
    padding: 10px 20px;
    font-size: 18px;
   /* background-color: white; */
    color: #000;
    border-bottom: 1px solid;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
}


.trusted-section{
     background-image: url("../img/trusted.png");
     padding: 20px;
}
.trusted-section img{
    width: 100%;
    margin-bottom: 20px;
}
.header-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* .container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
} */

.rown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.image-container {
    flex: 0 0 auto;
    width: 280px;
    position: relative;
}
.game-cards img{
    width: 100%;
    height: 100%;
}
.image-container img {
    width: 280px;
    height: 156px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.game-info {
    display: flex
    ;
        margin-top: 10px;
        /* text-align: center; */
        justify-content: center;
        align-items: center;
        /* gap: 36px; */
}

.game-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.game-info button {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #fff;
    /* color: white; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* .game-info button:hover {
    background-color: #218838;
} */

/* Shipping Page Styles */
#shippingForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #FFDA44;
    border-radius: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#shippingForm button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #FFDA44;

    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.checkout-left{
    background-color: #F2F2F2;
    padding: 10px;
    padding-left: 22px !important;
    padding-right: 22px !important;
    height: 100%;
    border-radius: 5px;
}
#shippingForm button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 900px) {
    .image-container {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .cart-button {
        top: 5px;
        right: 5px;
    }

    .cart-button button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Existing styles remain unchanged; add these at the end */

/* Existing styles remain unchanged; add or update these at the end */

/* Payment Options Styles */
.payment-box {
    /* max-width: 800px; */
    margin: 20px auto;
    padding: 30px;
    /* Increased padding for more height */
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    background-color: #F2F2F2;
    gap: 30px;
    /* Increased gap between options and details */
    min-height: 400px;
    /* Increased minimum height of the box */
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Increased gap between payment options */
    /* width: 150px; */
    /* Fixed width for buttons to ensure equal size */
}

.payment-option {
    position: relative;
    /* For positioning the separator */
}

.payment-option::after {
    content: '';
    position: absolute;
    bottom: -12.5px;
    /* Half of the gap to center the line */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    /* Separator line color */
}

.payment-option:last-child::after {
    display: none;
    /* Remove separator after the last option */
}

.payment-button {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: 52px;
    /* Ensure buttons are equal width */
    transition: background-color 0.3s;
}

.payment-button.active {
    background-color: #fff;
    /* color: white; */
    border: 1px solid;
}

.payment-button.disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.payment-details {
    display: flex;
    gap: 100px;
    /* flex: 1; */
    padding: 10px;
    line-height: 1.5;
    color: #333;

}

.proceed-button {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.proceed-button button {
    padding: 12px 30px;
    font-size: 18px;
    background-color: #381C7A;
    color: white;
    border: none;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

.proceed-button button:hover {
    background-color: #0056b3;
    color: white;
}

/* Responsive Design for Payment Page */
@media (max-width: 600px) {
    .payment-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        /* Adjust padding for mobile */
        min-height: auto;
        /* Remove min-height on mobile for flexibility */
    }

    .payment-options {
        width: 100%;
        margin-bottom: 20px;
    }

    .payment-button {
        width: 100%;
    }

    .payment-option::after {
        bottom: -10px;
        /* Adjust separator position for mobile */
    }

    .proceed-button button {
        width: 100%;
        max-width: 200px;
    }
}

   @media(max-width : 992px){
    .payment-details{
        flex-direction: column;
    }
   }

/* Existing styles remain unchanged; add or update these at the end */

/* Cart Item Styles */
.cart-item {
    margin-bottom: 10px;
}

.cart-item p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.remove-item {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #dc3545;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
}
.social-icons{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.remove-item:hover {
    background-color: #c82333;
}

/* Existing styles remain unchanged; add or update these at the end */

/* Payment Status Styles */
.status-box {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.status-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: inline-block;
}

.success {
    background-color: #28a745;
    color: white;
}

.failure {
    background-color: #dc3545;
    color: white;
}

.checkmark,
.cross {
    display: block;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 16px;
    color: #666;
}

/* Responsive Design for Status Page */
@media (max-width: 600px) {
    .status-box {
        margin: 20px;
        padding: 20px;
    }

    .status-icon {
        font-size: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}



.footer {
    background: linear-gradient(135deg, #0D1B2A, #1B263B);
    color: white !important;
    padding: 40px 0;
}
.footer a {
    color: #ffffff;
    text-decoration: none;
}
.footer p{
    color: white !important;
}
.footer a:hover {
    color: white !important;
}
.footer .social-icons a {
    font-size: 24px;
    /* margin: 0 10px; */
    color: white !important;
}
.footer .social-icons a:hover {
    color: #fff !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    text-align: center;
}