﻿
body {
    font-family: "Roboto", sans-serif;
}
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .8s ease-out, visibility 0s linear .0s;
        visibility: visible;
        opacity: 1;
    }

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}
    .btn.border-secondary:hover {
        background: #0c49cb !important;
        color: var(--bs-white) !important;
    }

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
}

    .topbar .top-info {
        font-size: 15px;
        line-height: 0;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
    }

    .topbar .top-link {
        font-size: 15px;
        line-height: 0;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
    }

        .topbar .top-link a {
            letter-spacing: 1px;
        }

            .topbar .top-link a small:hover {
                color: var(--bs-secondary) !important;
                transition: 0.5s;
            }

                .topbar .top-link a small:hover i {
                    color: var(--bs-primary) !important;
                }
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active,
    .fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
    .fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
        color: #0745ca;
    }

    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Roboto", sans-serif;
        font-weight: 700;
        vertical-align: middle;
        margin-left: 8px;
    }

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #25329b;
    color: #ffffff;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

    .carousel-item a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 25px;
        background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
    }

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: #15207a;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/cart-page-header-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }
}
/*** Hero Header end ***/
@media (max-width: 992px) {
    .testimonial {
        padding-top: 0 !important;
    }

    .p-top-zero {
        padding-top: 0 !important;
    }
    .mobileMenu {
        border-radius: 6px;
        border: 2px solid;
    }
    .mobilesubMenu {
        border-bottom: 1px solid #3e454b;
    }
}


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

    .featurs .featurs-item .featurs-icon::after {
        content: "";
        width: 35px;
        height: 35px;
        background: var(--bs-secondary);
        position: absolute;
        bottom: -10px;
        transform: translate(-50%);
        transform: rotate(45deg);
        background: #009fe2;
    }
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px;
    height: 130px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: #25329b !important;
}

    .fruite .tab-class .nav-item a.active span {
        color: var(--bs-white) !important;
    }

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

    .fruite .fruite-categorie .fruite-name a {
        transition: 0.5s;
    }

        .fruite .fruite-categorie .fruite-name a:hover {
            color: var(--bs-secondary);
        }

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
    border: 2px solid #009FE1 !important;
}

    .fruite .fruite-item:hover {
        box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
    }

    .fruite .fruite-item .fruite-img {
        overflow: hidden;
        transition: 0.5s;
        border-radius: 10px 10px 0 0;
        border-bottom: 2px solid #009fe2;
    }

        .fruite .fruite-item .fruite-img img {
            transition: 0.5s;
        }

            .fruite .fruite-item .fruite-img img:hover {
                transform: scale(1.3);
            }
/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

    .vesitable .vesitable-item:hover {
        box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
    }

    .vesitable .vesitable-item .vesitable-img {
        overflow: hidden;
        transition: 0.5s;
        border-radius: 10px 10px 0 0;
    }

        .vesitable .vesitable-item .vesitable-img img {
            transition: 0.5s;
        }

            .vesitable .vesitable-item .vesitable-img img:hover {
                transform: scale(1.2);
            }

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

    .vesitable .owl-nav .owl-prev:hover {
        background: var(--bs-secondary);
        color: var(--bs-white);
    }

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

    .vesitable .owl-nav .owl-next:hover {
        background: var(--bs-secondary);
        color: var(--bs-white);
    }
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

    .counter i {
        font-size: 60px;
        margin-bottom: 25px;
    }

    .counter h4 {
        color: #009fe2;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .counter h1 {
        margin-bottom: 0;
    }
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

    .testimonial .owl-nav .owl-prev:hover {
        background: var(--bs-secondary);
        color: var(--bs-white);
    }

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

    .testimonial .owl-nav .owl-next:hover {
        background: var(--bs-secondary);
        color: var(--bs-white);
    }
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}

    .pagination a {
        color: var(--bs-dark);
        padding: 10px 16px;
        text-decoration: none;
        transition: 0.5s;
        border: 1px solid #009fe0;
        margin: 0 4px;
    }

        .pagination a.active {
            background-color: #2f2382;
            color: var(--bs-light);
            border: 1px solid #00a1e3;
        }

        .pagination a:hover:not(.active) {
            background-color: #009fe2;
        }

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

    /*
.footer .footer-item .btn-link:hover {
    color: #1650cd !important;
}*/

    .footer .footer-item .btn-link:hover {
        color: #1650cd !important;
    }

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/

/*Shimmer Effect By Prakash*/
.shimmer-section {
    display: flex;
    overflow-x: auto;
    padding: 20px;
    gap: 20px;
    background: #f4f4f4;
}

.shimmer {
    width: 300px;
    height: 200px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.shimmer-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    position: absolute;
    top: 0;
    left: -100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}
/*End*/

/*overwrite css*/

.margin-bottom-80 {
    margin-bottom: 80px !important;
}

.product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-big-name {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

 

/*For Select 2*/
/* ✅ Focus Effect */
.form-select:focus, .select2-container--default .select2-selection--single:focus {
    border-color: #c0e284 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(129, 196, 8, .25);
}

/* ✅ Apply border-radius and height */
.select2-container--default .select2-selection--single {
    border-radius: 10px !important;
    height: 45px !important; /* Set custom height */
    display: flex;
    align-items: center;
    padding-left: 10px;
}

/* ✅ Adjust dropdown options height */
.select2-results__option {
    padding: 10px;
}


.btnCart {
    position: absolute;
    bottom: 30px;
}





 


/*Cart Section Start*/
/* Cart Container */
.cart-div {
    padding: 30px 0;
}

.cart-container {
    max-width: 500px;
    margin: 30px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Each Cart Item */
.cart-item {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

    /* Last Item No Border */
    .cart-item:last-child {
        border-bottom: none;
    }

/* Product Image */
.img-div {
    padding: 5px;
    border: 1px solid #dfdbdb;
    border-radius: 5px;
}

.cart-item img {
    width: 90px;
    height: 90px;
    border-radius: 5px;
}

/* Item Details */
.item-details {
    flex: 1;
    margin-left: 15px;
}

    .item-details h2 {
        font-size: 16px;
        margin: 0;
    }

    .item-details p {
        font-size: 14px;
        color: gray;
        margin: 5px 0;
    }

/* Price */
.price {
    font-size: 18px !important;
    font-weight: bold;
    color: black !important;
}

.old-price {
    font-size: 14px !important;
    text-decoration: line-through;
    color: gray !important;
}


 

/* Checkout Container */
.checkout-container {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.option {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 10px;
}

    .option:hover {
        border: 2px solid #004DA1;
    }

    .option:last-child {
        margin-right: 0;
    }

/* Highlight Selected Option */


/* Price Details */
.price-details {
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .price-details p {
        margin: 0;
    }

.cal-sum-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total {
    font-size: 18px;
    font-weight: bold;
}

.saved {
    font-size: 14px;
    color: #004DA1;
    background: #e6f5e6;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Proceed Button */
.pay-button {
    background: #004DA1;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .pay-button:hover {
        background: #01346b;
    }


/*Cart Section End*/

/*Contact Form Start*/

.contactus-form {
    border: 2px solid #009fe2; /* Blue border */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

    .contactus-form .form-control {
        border: 1px solid #ddd;
        border-radius: 8px;
        transition: 0.3s ease-in-out;
    }

        .contactus-form .form-control:focus {
            border-color: #009fe2;
            box-shadow: 0px 0px 8px rgba(13, 110, 253, 0.3);
        }

.btnContactUs {
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

    .btnContactUs:hover {
        background: #0b5ed7;
        color: #fff;
    }
/*Contact Form End*/


.bestsellingimg{
    height:170px
}
@media (max-width: 992px) {
    .bestsellingimg {
        height: 150px
    }
}
 

.quantity-div {
    display: flex;
    align-items: center; /* Aligns quantity and save button */
    gap: 15px; /* Space between quantity selector and button */
}

/* Quantity Buttons */
.quantity {
    display: flex;
    align-items: center;
    background-color: #004DA1;
    border-radius: 5px;
    border: 1px solid #004DA1;
    width: 150px;
}

/* Style for - and + buttons */
.qty-btn {
    background: transparent;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}

/* Input Box */
.qty-input {
    width: 70px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
    background-color: white;
    color: #004DA1;
    margin: 0 5px;
    border-radius: 3px;
}
 
/*Start Dated 20-03-2025*/
.gallery-container {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

    .thumbnail.active,
    .thumbnail:hover {
        border: 2px solid #007bff;
    }

.main-image-container {
    flex-grow: 1;
}

.main-image {
    width: 370px;
    height: 338px;
    object-fit: cover;
    border-radius: 5px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container {
    position: relative;
    display: inline-block;
}

/* Selection overlay (smooth movement) */
#selectionOverlay {
    position: absolute;
    width: 150px;
    height: 100px;
    background: rgba(200, 200, 200, 0.4);
    pointer-events: none;
    z-index: 10;
    transition: transform 0.05s ease-out;
}

/* Magnified Image */
#magnifiedImage {
    width: 600px;
    height: 450px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    background-color: white;
    display: none;
    overflow: hidden;
    z-index: 1000;
}
/* swiper-container */
.swiper-container {
    max-width: 450px;
    width: 100%;
    height: 388px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    display: none;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .gallery-container {
        display: none;
    }

    .swiper-container {
        display: block;
        width: 100%;
    }

    /* .swiper-slide img {
                width: 100%;
                height: auto;
                border-radius: 5px;
            } */
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,8px);
    top: var(--swiper-pagination-top,auto);
    width: 100%;
    bottom: -25px;
}

/*Strart Login Popup*/
/* Button to open popup */
#openPopup {
    padding: 10px 20px;
    font-size: 16px;
    background: #004DA1;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Overlay background when popup is open */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Popup Box */
.popup {
    position: relative;
    background: white;
    width: 700px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.popup-content {
    display: flex;
}

/* Left Section */
.left-section {
    width: 40%;
    padding: 40px;
    background: #EFEFEF;
}

.icon-div {
    display: flex;
    flex-direction: column;
    width: 44%;
}

    .icon-div i {
        background-color: #ffff;
        padding: 10px;
        border-radius: 50%;
    }

    .icon-div p {
        font-size: 10px;
    }

.left-section h3 {
    color: #004DA1;
    margin-bottom: 10px;
    text-align: center;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}


    .features div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.find-us {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.features img {
    width: 20px;
    height: 20px;
}

.app-links img {
    width: 32px;
    margin: 5px;
    border: 1px solid black;
    padding: 4px;
    border-radius: 5px;
    cursor: pointer;
}

/* Right Section */
.right-section {
    width: 60%;
    padding: 40px;
    background: black;
    color: white;
    position: relative;
}

    .right-section h2 {
        font-size: 22px;
    }

    .right-section p {
        font-size: 14px;
        text-decoration: underline;
        text-decoration-color: yellow;
        padding: 10px 0;
    }

    .right-section input {
        width: 100%;
        padding: 16px;
        margin: 27px 0;
        border: none;
        border-radius: 5px;
    }

.continue-btn {
    width: 100%;
    padding: 10px;
    background: #009EE1;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bolder;
    border-radius: 5px;
    margin: 24px 0px;
}

    .continue-btn:hover {
        background: #004DA1;
    }

small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #ccc;
}

p.privacy-policy {
    color: #6A7576;
    text-decoration: none;
}

.privacy-policy a {
    color: #6A7576;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 99;
    padding: 8px;
}
 
/*End Login Popup*/

/*End Dated 20-03-2025*/

