﻿
/* Define CSS Variables */
:root {
    --primary-color: #006400;
    --light-green-color: #E6EEEA;
    --secondary-color: #2e7d32;
    --text-color: #333;
    --border-color: #ddd;
    --bg-light: #F1F2F2;
    --bg-white: #fff;
    --button-bg: #f5f5f5;
    --hover-bg: #ddd;
    --highlight-color: #ff0000; /* Red for sales/badges */
    --light-yellow-color: #FFE68C; /* yellow for sales/badges */
    --card-bg: #fff;
    --box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

/* Set Base Font Size */
html {
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    background-color:white;
    color:black;
    display:block;
    margin:0px;
    padding:0px;
}
.container {
    max-width: 1400px !important; /* Adjust width as needed */
    width: 90%; /* Makes it responsive */
}
@font-face {
    font-family: 'andasiapersonaluse-k7oea';
    src: url('andasiapersonaluse-k7oea.otf') format('opentype');
}
*{
    box-sizing: border-box;
}

.main-slider {
    margin-left: 0px;
    padding-left: 0px;
    margin-right: 0px;
    padding-right: 0px;
}

/* -----Product Search Start----- */
/* Ensure the search results appear directly below the input field */
.search-results {
    position: absolute; /* Position relative to the parent form */
    top: calc(100% + 10px); /* Start right below the input field with some margin */
    left: 17px;
    width: 100%; /* Match the width of the input field */
    max-width: 400px; /* Optional: Limit the maximum width */
    max-height: 300px; /* Fixed height with scrolling */
    overflow-y: auto; /* Enable vertical scrolling if the content exceeds the height */
    border-bottom: 1px solid #ffffff; /* Add a border for better visibility */
    border-radius: 5px; /* Optional: Rounded corners */
    background-color: #f9f9f9; /* Light background color */
    z-index: 1000; /* Ensure it appears above other content */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a shadow for better appearance */
}

/* Navbar styling */
@media only screen and (min-width: 601px) {
    .atDesktop{
        display: none;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md .offcanvas .offcanvas-header {
        display: none;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}



/* Product item styling */
.product-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

    .product-item:last-child {
        border-bottom: none;
    }

    /* Product image */
    .product-item img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-right: 15px;
    }

/* Product details */
.product-details {
    flex-grow: 1;
}

    .product-details h3 {
        margin: 0;
        font-size: 16px;
        color: #333;
    }

    .product-details p {
        margin: 5px 0;
        font-size: 14px;
        color: #555;
    }

/* Product price */
.product-price {
    font-weight: bold;
    color: #f57224;
    margin-left:10px;
}

    .product-price .original-price {
        text-decoration: line-through;
        font-size: 12px;
        color: #999;
        margin-left: 5px;
    }

/* -----Product Search End----- */


/* -----Scroll Start----- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #b580324d;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #054c26;

}
/* -----Scroll Ednd----- */



/* -----Product Card Start----- */
a {
    text-decoration: none;
    color: black;
}
.bg-white {
    background-color: var(--bg-white) !important;
    color: var(--primary-color) !important;
}

.toast-container {
    position: fixed !important;
}

.product-grid {
    text-align: center;
    padding: 0 0 115px;
    border: 1px solid rgba(0, 0, 0, .1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
    margin-bottom: 25px;
}

    .product-grid .product-image {
        position: relative;
        transition: all .3s ease 0s;
    }

        .product-grid .product-image a {
            display: block;
        }

        .product-grid .product-image img {
            width: 100%;
           height: auto;
        }

    .product-grid .pic-1 {
        opacity: 1;
        transition: all .3s ease-out 0s;
    }

    .product-grid:hover .pic-1 {
        opacity: 1;
    }

    .product-grid .pic-2 {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: all .3s ease-out 0s;
    }

    .product-grid:hover .pic-2 {
        opacity: 1;
    }

    .product-grid .social {
        width: 150px;
        padding: 0;
        margin: 0;
        list-style: none;
        opacity: 0;
        transform: translateY(-50%) translateX(-50%);
        position: absolute;
        top: 60%;
        left: 50%;
        z-index: 1;
        transition: all .3s ease 0s;
    }

    .product-grid:hover .social {
        opacity: 1;
        top: 50%;
    }

    .product-grid .social li {
        display: inline-block;
    }

        .product-grid .social li a {
            color: #fff;
            background-color: #000000;
            font-size: 16px;
            line-height: 40px;
            text-align: center;
            height: 40px;
            width: 40px;
            margin: 0 2px;
            display: block;
            position: relative;
            transition: all .3s ease-in-out;
        }

            .product-grid .social li a:hover {
                color: #fff;
                background-color: #f24257;
            }

            .product-grid .social li a:after,
            .product-grid .social li a:before {
                content: attr(data-tip);
                color: white;
                background-color: black;
                font-size: 12px;
                letter-spacing: 1px;
                padding: 1px 5px;
                transform: translateX(-50%);
                white-space: nowrap;
                opacity: 0;
                position: absolute;
                left: 50%;
                top: -30px;
            }

            .product-grid .social li a:after {
                content: '';
                height: 15px;
                width: 15px;
                border-radius: 0;
                transform: translateX(-50%) rotate(45deg);
                top: -20px;
                z-index: -1;
            }

            .product-grid .social li a:hover:after,
            .product-grid .social li a:hover::before {
                opacity: 1;
            }

    .product-grid .product-discount-label,
    .product-grid .product-new-label {
        color: #fff;
        background-color: green;
        font-size: 12px;
        text-transform: uppercase;
        padding: 2px 7px;
        display: block;
        position: absolute;
        top: 10px;
        left: 2px;
        border-radius: 10px;
    }

    .product-grid .product-discount-label {
        background-color: #333;
        left: auto;
        right: 0;
        border-radius: 10px;
    }

    .product-grid .rating {
        color: #FFDF00;
        font-size: 12px;
        padding: 12px 0 0;
        margin: 0;
        list-style: none;
        position: relative;
        z-index: -1;
    }

        .product-grid .rating li.disable {
            color: rgba(0, 0, 0, .2)
        }

    .product-grid .product-content {
        background-color: white;
        text-align: center;
        padding: 12px 0;
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -45px;
        z-index: 1;
        transition: all .3s;
    }

    .product-grid:hover .product-content {
        bottom: 0;
    }

    .product-grid .title {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: .5px;
        text-transform: capitalize;
        margin: 0 0 10px;
        transition: all .3s ease 0s;
        padding: 5px;
    }

        .product-grid .title a {
            color: #828282;
        }

            .product-grid .title a:hover,
            .product-grid:hover .title a {
                color: #000000;
            }

    .product-grid .price {
        color: #333;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: .6px;
        margin-bottom: 8px;
        text-align: center;
        transition: all .3s;
    }

        .product-grid .price span {
            color: red;
            font-size: 13px;
            font-weight: 400;
            text-decoration: line-through;
            margin-left: 3px;
            display: inline-block;
        }
/* .product-grid .add-to-cart{
    color:#fff;
    font-size: 13px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--mainheading), #3d3d3d);
    transition: background-color 0.5s ease;
    border:1px solid black;
} */
button {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 400;
    outline-color: #054c26;
    background: linear-gradient(90deg, #054c26, #054c26);
    transition: background-color 0.5s ease;
    border: 1px solid black;
    width: 100%;
    box-sizing: border-box;
    padding:10px;
}

    button:hover {
        background: linear-gradient(135deg, #054c26, #054c26);
        transition: background-color 0.5s ease;
    }
/* .product-grid .add-to-cart:hover{
    color:#000000;
    font-size: 13px;
    font-weight: 500;
    background: linear-gradient(135deg, #000000 , var(--mainheading));
    border:1px solid black;
} */
/* Default image size for larger screens */
.responsive-image {
    width: 500px;
    height: 500px;
}



/* Centering loader */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px; /* Adjust height as needed */
}

/* Spinning loader animation */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light gray */
    border-top: 5px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


/* CSS for Scroll Button */
#scrollToTopBtn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px;
    right: 50px; /* Adjusted for right-side placement */
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000; /* Ensure it stays on top */
}

    #scrollToTopBtn:hover {
        background-color: #054c26;
    }

    #scrollToTopBtn.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

.whats-app {
    padding: 10px;
    position: fixed;
    bottom: 80px;
    right: 50px;
    background-color: #25d366;
    color: #fff;
    border-radius: 15%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 11px #00000080;
    z-index: 99999999;
}

/* Keyframes for rotation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Adjust image size for mobile and tablet screens */
@media(max-width: 991.98px) {
    .responsive-image {
        width: 300px;
        height: 300px;
    }
}
@media only screen and (max-width:990px) {
    .product-grid {
        margin-bottom: 100px;
    }
}
@media only screen and (max-width: 767px) and (min-width: 300px) {
    .headersection .logo {
        width: 100px;
        height: 75px;
        margin: 5px;
    }
    .headersection .logomobile {
        text-align: center;
    }
    .logosearch{
        margin-top:-35px;
    }
    .headersection .headerright {
        margin-top: 5px;
        justify-content:center;
    }
}
@media only screen and (max-width: 600px) and (min-width: 300px) {
    .product-grid {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 900px) and (min-width: 601px) {
    .product-grid {
        margin-bottom: 50px;
    }
}
@media (min-width: 992px) { /* For Large Screens */

}

@media (min-width: 768px) and (max-width: 991px) { /* For Medium Screens */

}
/* -----Product Card End----- */



/* Discount and Offer Styles */
.discount-badge {
    background: var(--highlight-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 0.5rem;
}

.offer-card {
    border-radius: 1rem;
    padding: 2.7rem;
    color: var(--bg-light);
}

.offer-card-2 .offer-card-img {
    height: 19rem;
    width: 30rem;
}

.offer-card .offer-card-img {
    height: 11.5rem;
    width: 11.5rem;
}

.offer-card .offer-card-text h6 {
    font-weight: 600;
    margin-top: 7px;
    word-wrap: break-word;
    max-width: 20rem;
}

.offer-card .offer-card-text span {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 6px;
    white-space: nowrap;
}

.custom-offer-height {
    height: 39.2rem;
}

.offer-card-2 .offer-card-text h5 {
    font-weight: 600;
    margin-top: 7px;
    word-wrap: break-word;
    font-size: 2rem;
    max-width: 15rem;
}

.offer-card-2 .offer-card-text span {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 6px;
}

.offer-card .offer-card-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.offer-red {
    background: red;
}

.offer-yellow {
    background: #FFC20E;
}

.offer-green {
    background: #054C26;
}

.offer-blue {
    background: #7E88E7;
}

.offer-white {
    background: var(--bg-white);
    color: black;
}

.offer-badge {
    top: 10px;
    left: 0;
    background-color: #ff2e2e;
    color: white;
    font-weight: bold;
    padding: 5px 12px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.offer-card-2 {
    border-radius: 1rem;
    padding: 2rem;
    color: var(--bg-light);
    min-height: 21rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* Keep items in a row on larger screens */
    gap: 1rem; /* Add spacing between text and image */
}

    /* Ensure the text container takes appropriate space */
    .offer-card-2 .offer-card-text {
        flex: 1;
        min-width: 50%;
    }

    /* Ensure image does not overflow */
    .offer-card-2 .offer-card-img {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 50%; /* Ensures image stays within bounds */
        height: auto;
    }

        .offer-card-2 .offer-card-img img {
            max-width: 100%; /* Ensures image scales properly */
            height: auto;
            object-fit: contain; /* Prevent cropping */
            border-radius: 5px;
        }

/* Deal Section */
.deal-section {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--highlight-color);
    box-shadow: var(--box-shadow);
}

/* Deal Cards */

.badge-success {
    background-color: var(--light-green-color);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 0.7rem;
    margin-bottom: 1rem;
}

.badge-warning {
    background-color: var(--light-yellow-color);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 3px 0.7rem;
    margin-bottom: 1rem;
}

    .badge-warning i {
        font-size: 0.9rem;
    }

.deal-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease-in-out;
}

.deal-card-time {
    background: linear-gradient(to right, #D4AF37, #004d00);
    color: white;
    padding: 20px;
    border-radius: 12px;
}

.deal-section-bg {
    background: linear-gradient(to right, #AFC4B9, #F0F2F2);
}

.deal-card-img {
    margin: 10px;
}

.deal-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 5px;
}

.deal-card-text h6 {
    font-size: 1.2rem;
    word-wrap: break-word;
    max-width: 15rem;
    font-weight: 600;
}

.deal-card-text p {
    font-size: 1rem;
}

.deal-card:hover {
    transform: scale(1.05);
}


/* Product Card */

.product-card {
    background: white;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: auto;
    box-shadow: none;
}

.product-card-img {
    margin: 10px;
}

.product-card img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
    border-radius: 5px;
}

.product-card-text h6 {
    font-size: 1.2rem;
    word-wrap: break-word;
    max-width: 15rem;
    font-weight: 600;
}

.product-card-text p {
    font-size: 1rem;
}


/* Stock Bar */
.stock-bar {
    height: 0.5rem;
    width: 100%;
    background: var(--border-color);
    position: relative;
    border-radius: 0.3rem;
}

    .stock-bar::after {
        content: "";
        width: 50%;
        height: 100%;
        background: var(--highlight-color);
        position: absolute;
        border-radius: 0.3rem;
    }

.product-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: auto;
}

.product-container-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: auto;
}


.delivery-badge {
    background: #dde5d6;
    color: #000;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: bold;
    top: 0;
    width: 100%;
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-top: 30px;
}

.product-details {
    padding: 12px;
    text-align: center;
    flex-grow: 1;
}

.category-badge {
    display: inline-block;
    background: #58a05f;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.rating-badge {
    float: right;
    background: #f4d03f;
    color: black;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 5px;
}

.price {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
    
}

.old-price {
    color: gray;
    text-decoration: line-through;
    font-size: 1.3rem;
    margin-left: 5px;
}

.product-footer {
    background: white;
    padding: 12px;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.add-to-cart-green {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 10px 16px;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.add-to-cart-white {
    background: var(--bg-white);
    color: var(--primary-color) !important;
    border: none;
    padding: 10px 16px;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.add-to-cart-white-2 {
    background: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.add-to-cart-green:hover {
    background: #145426;
}

.add-to-cart-white:hover {
    background: #145426;
    color: var(--bg-white) !important;
}

.add-to-cart-white-2:hover {
    background: #145426;
    color: var(--bg-white);
}


.plus-btn {
    border-radius: 2rem;
    border: none;
    background: rgb(255, 255, 255,0.4);
    cursor: pointer;
}

    .plus-btn:hover {
        background: rgb(255, 255, 255,0.6);
    }

    .plus-btn i {
        color: var(--bg-white);
        font-weight: bold;
    }
/* ----Body End---- */


/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 1rem 0;
}


    .footer a:hover {
        text-decoration: underline;
    }

    .footer .contact-info {
        font-size: 2rem;
        font-weight: bold;
        color: var(--secondary-color);
    }

.subscribe-input {
    border-radius: 50px;
    padding: 10px 20px;
    width: 80%;
}

.subscribe-btn {
    border-radius: 50px;
    background-color: #046c38;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-left: -50px;
}

.contact-info {
    display: flex;
    align-items: center;
}

    .contact-info i {
        font-size: 24px;
        margin-right: 10px;
        color: #046c38;
    }
/* Add responsive styling improvements */
@media (max-width: 1024px) {
    html {
        font-size: 56.25%; /* 9px = 1rem */
    }

    /* Header Main */
    .header-main {
        flex-direction: row;
        align-items: center;
    }

    /* Navbar Items */
    .nav .nav-item {
        padding-right: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .discount-text {
        font-size: 1.2rem;
    }

    /* Sale Button */
    .sale-btn {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%; /* 8px = 1rem */
    }

    /* Header Main */
    .header-main {
        flex-direction: row;
        align-items: center;
    }

    /* Navbar Items */
    .nav .nav-item {
        padding-right: 1rem;
    }

    /* Footer */
    .footer .col-md-3,
    .footer .col-md-2 {
        margin-bottom: 2rem;
    }

    /* Footer links */
    .footer-link p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 43.75%; /* 7px = 1rem */
    }

    /* Top Navigation */
    .top-nav {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

        .top-nav a {
            margin-right: 1rem;
        }

    /* Header Main */
    .header-main {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    /* Search Bar */

    .search-container input {
        font-size: 1.5rem;
    }

    /* Buttons */
    .wishlist-btn, .login-btn {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    /* Navbar */
    .custom-navbar {
        padding: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem;
    }

    /* Footer */
    .footer .col-md-3,
    .footer .col-md-2 {
        margin-bottom: 1rem;
    }

    .footer-link p {
        font-size: 1.2rem;
    }

    /* Subscription Section */
    .subscribe-input {
        font-size: 1.4rem;
        padding: 8px 12px;
    }

    .subscribe-btn {
        font-size: 1.4rem;
        padding: 8px 12px;
    }
}

@media (max-width: 375px) {
    html {
        font-size: 40%; /* 6.4px = 1rem */
    }

    /* Header Main */
    .header-main {
        padding: 1rem 0;
    }

    .search-container input {
        font-size: 1rem;
    }

    /* Buttons */
    .wishlist-btn, .login-btn {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }

    /* Navbar */
    .nav-link {
        font-size: 1rem;
        padding: 0.3rem;
    }

    .footer .col-md-3, .footer .col-md-2 {
        margin-bottom: 1rem;
    }

    .footer-link p {
        font-size: 1.1rem;
    }

    /* Subscription Section */
    .subscribe-input {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .subscribe-btn {
        font-size: 1.2rem;
        padding: 8px 12px;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 900px; /* Adjust as needed */
    }

}

@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .product-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-container-2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-container-2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .custom-offer-height {
        height: auto;
    }
    .navbar-nav .nav-item a {
        color: black !important;
    }
}

@media (max-width: 600px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-container-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-container-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}