    .product-item .image img {
        width: 100%;
        padding: 1%;
        height: 100% !important;
    }

/*--------------------- Responsive (Start) ---------------------*/
@media (max-width: 991px) {

    html {
        font-size: 55%;
    }

    .header .header-contacts {
        display: none;
    }

    /* .header .navbar{
        display: none;
    } */

    .header .nav-btn {
        display: none !important;
    }

    .header #menu-btn {
        display: initial;

    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -110%;
        height: 100%;
        width: 30rem;
        z-index: 10000;
        overflow-y: auto;
        max-height: 100%;
        background: var(--white);
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        /* border: 0.1rem solid var(--main-color); */
        -webkit-box-shadow: var(--box-shadow);
        box-shadow: var(--box-shadow);
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu #close-side-bar {
        position: absolute;
        top: 1rem;
        right: 2rem;
        font-size: 4rem;
        cursor: pointer;
        color: var(--grey);
    }

    .mobile-menu #close-side-bar:hover {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        color: var(--secondary-color);
    }

    .mobile-menu .mobile-navbar {
        padding-top: 8rem;
    }

    .mobile-navbar .main-nav-link {
        border-bottom: 0.2rem solid rgba(0, 0, 0, 0.2);
        background-color: var(--white);
        color: var(--black);
        font-size: 2rem;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        padding: 2rem 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-navbar .main-nav-link a {
        color: var(--black);
    }

    .mobile-navbar .main-nav-link:hover,
    .mobile-navbar .main-nav-link.active {
        color: var(--main-color);
        border-color: var(--main-color);
    }

    .mobile-navbar .sub-nav-link {
        padding-left: 2rem;
        padding-bottom: 1rem;
        background: rgba(251, 37, 118, 0.1);
        display: none;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        -o-transition: all 0s;
        transition: all 0s;
    }

    .mobile-navbar .sub-nav-link a {
        color: var(--black);
        display: block;
        padding: 1rem 0rem;
        font-size: 1.8rem;
        font-weight: 400;
        border-bottom: 0.1rem solid var(--black);
    }

    .mobile-navbar .sub-nav-link a:hover {
        color: var(--main-color);
        border-color: var(--main-color);
    }

    .mobile-menu::-webkit-scrollbar {
        width: 0.8rem;
    }

    .mobile-menu::-webkit-scrollbar-thumb {
        border-radius: 1rem;
        background-color: var(--black);
    }

    .mobile-menu::-webkit-scrollbar-track {
        background: var(--white);
    }

    .blog.grid,
    .blog.list {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }

}

@media (max-width: 768px) {

    section,
    .header .header-1,
    .header .header-2 {
        padding: 2rem;
    }
    
    .product-item .image img {
        width: 100%;
        padding: 3%;
        height: 100% !important;
    }


    .footer {
        padding: 0rem 2rem;
    }

    .home-item {
        height: 65rem;
    }

    .home-item .content {
        padding: 2rem;
    }

    .home-slider .swiper-button-next,
    .home-slider .swiper-button-prev {
        display: none;
    }

    .about .box-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 2rem;
        background: var(--main-color);
    }

    .shop {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }

}

@media (max-width: 450px) {

    html {
        font-size: 50%;
    }
    
    .product_img_grids {
        width: 100%;
        height: 100% !important;
    }
    
    .dropdown-menu{
        display: none !important;
    }

    section,
    .header .header-1,
    .header .header-2 {
        padding: 1rem;
    }

    .footer {
        padding: 0rem 1rem;
    }

    .home-item {
        height: 85vh;
    }

    .contact-form .input-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form .input-box .box {
        width: 100%;
    }

    .cart .cart-summary {
        width: 100%;
    }

    .order-details .order-summary {
        width: 100%;
    }

    .leave-reply form .input-box .box {
        width: 100%;
    }

    .edit-address form .box {
        width: 100%;
    }

}

/*--------------------- Responsive (End) ---------------------*/

/* Sticky Overlay Search Box */
#searchBox {
    display: none;
    position: fixed;
    top: 80px;
    /* adjust based on where you want it to appear */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    padding: 10px;
    z-index: 9999;
    max-width: 600px;
    width: 80%;
}


.search-box form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-box input[type="text"] {
    flex: 1;
    padding: 8px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-box button {
    padding: 8px 12px;
    font-size: 16px;
    background-color: #007BFF;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.form-group {
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="password"] {
    font-size: 16px;
}

.form-group textarea {
    font-size: 16px;
}

.form-group input[type="email"] {
    text-transform: lowercase
}

.form-control {
    display: block;
    width: 100%;
    padding: .75rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.text-danger {
    font-size: 12px;
}

table th {
    font-size: 18px;
    font-weight: bold;
    /* optional */
    text-align: center;
}

table td {
    font-size: 16px;
}

.form-group label {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 5px;

    Color: #000000;
}

.search-box button:hover {
    background-color: #0056b3;
}

@media (max-width: 480px) {
    .search-box {
        width: 90vw;
        right: 5%;
    }

    .search-box form {
        flex-direction: column;
        gap: 10px;
    }

    .search-box button {
        width: 100%;
    }
}