
.product-photo {
    width: 360px;
    height: 320px !important;
}
@media screen and(max-width:767px){
    .product-photo {
        width: unset !important;
    }
}

/*footer Styling*/
.footer__big {
    padding-top: 60px !important;
    padding-bottom: 10px !important;
}


/*checkout page styles*/
.checkout-wrapper .nav-item:before {
    content: "\f054" !important;
}

.checkout-wrapper .nav-item:last-child:before {
    display: none !important;
}

.checkout-wrapper {
    padding-bottom: 110px;
    background: #f8f9fa;
}

/* Tab Navigation Styling */
.checkout-wrapper .tab_nav2 {
    margin-bottom: 5px;
}

.checkout-wrapper .nav {
    background: #fff;
    padding-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-wrapper .nav-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.checkout-wrapper .nav-item .nav-link {
    color: #555;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkout-wrapper .nav-item .nav-link.active {
    color: white;
}

/* Form Styling */
.custom-checkout-wrapper form {
    background: #fff;
    padding: 5px 30px 30px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-checkout-wrapper h4 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
}

.custom-checkout-wrapper .form-group {
    margin-bottom: 20px !important;
}

.custom-checkout-wrapper .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.custom-checkout-wrapper .form-control,
.custom-checkout-wrapper .select2-container .select2-selection--single {
    width: 100%;
    height: 45px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-checkout-wrapper .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.custom-checkout-wrapper .form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/* Select2 Customization */
.custom-checkout-wrapper .select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
}

.custom-checkout-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

/* Table Styling */
.custom-checkout-wrapper .cart-table {
    background: #fff;
    border-radius: 5px;
    margin-top: 20px;
}

.custom-checkout-wrapper .table th,
.custom-checkout-wrapper .table td {
    padding: 15px;
    vertical-align: middle;
}

/* Action Buttons */
.custom-checkout-wrapper .action-btns {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.custom-checkout-wrapper .btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .checkout-wrapper .nav {
        flex-direction: column;
        gap: 10px;
    }

    .custom-checkout-wrapper form {
        padding: 20px;
    }

    .custom-checkout-wrapper .action-btns {
        flex-direction: column;
        gap: 10px;
    }

    .custom-checkout-wrapper .btn {
        width: 100%;
        justify-content: center;
    }
}

/*End checkout page styles*/

/*Cart in Mobile*/
/* Responsive styles for navbar */
@media (max-width: 991px) {
    .navbar {
        flex-wrap: nowrap;
    }

    .navbar > .d-flex {
        flex-wrap: nowrap;
    }

    .nav_right_content {
        display: flex !important;
        margin-right: 15px;
        position: relative;
    }

    .nav_right_module {
        margin-left: 15px;
    }

    .cart__icon, .search_trigger {
        font-size: 20px;
        display: block !important;
    }

    .navbar-brand img {
        height: 70px !important;
    }

    .cart__items {
        position: absolute;
        right: 0;
        top: 100%;
        width: 280px;
        z-index: 999;
    }

    .search_area {
        position: absolute;
        right: 0;
        top: 100%;
        width: 280px;
        z-index: 999;
    }
}

/* Additional styles for extra small devices */
@media (max-width: 575px) {
    .navbar-brand img {
        height: 60px !important;
    }

    .nav_right_module {
        margin-left: 10px;
    }
nav.navbar{
    padding: 1rem !important;
}
    .nav_right_content .search_module > * {
        display: none !important;
    }
}
    .top_bar .top_bar--lang .dropdown span.la:before{
        padding-right: 10px !important;
    }

