main {
    position: relative;
    height: 100%;
    width: 100%;
    grid-column: 1 / span 12;
    display: flex;
    flex-direction: column;
}

.mobile-header-gap {
    flex-shrink: 0;
    height: 60px;
    width: 100%;
    display: flex;
}

.main-banner-section {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}

.main-banner-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner-container img {
    height: auto;
    width: 100%;
}

.products-section {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content-wrapper {
    width: 100%;
    height: auto;
    padding: 30px 10px;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.heading-wrapper {
    width: 100%;
    height: auto;
    display: flex;
}

.heading-wrapper h1 {
    font-size: px;
    letter-spacing: 0.9px;
    color: dimgray;
}

.product-pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.product-card-wrapper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 390px;
}

.product-card-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 190px;
    padding: 10px;
    gap: 5px;
    border-radius: 20px;
    background-color: white;
}

.product-card:nth-child(2n + 1) {
    transition-delay: 0ms;
}

.product-card:nth-child(2n + 2) {
    transition-delay: 150ms;
}

.product-card:hover .card-img {
    transform: scale(1.1);
}

.product-card-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.discount-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 50px;
    padding: 7px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.753);
    backdrop-filter: blur(10px);
    color: gray;
    font-size: 10px;
    line-height: normal;
    z-index: 1;
}

.product-card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
    transition: 0.5s ease-in-out;
}

.product-card-content-warper {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: gray;
    font-size: 13px;
    letter-spacing: 0.9px;
    gap: 5px;
}

.cat-name {
    font-size: 12px;
}

.product-name {
    color: dimgray;
    font-weight: bold;
}

.product-card-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    height: auto;
    justify-content: space-between;
    align-items: center;
}

.price-wrapper {
    display: flex;
    width: auto;
    gap: 10px;
    font-size: 12px;
}

.mrp {
    text-decoration: line-through;
}

.rating-badge {
    width: 50px;
    padding: 7px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 20px;
    background-color: olivedrab;
    color: white;
    font-size: 12px;
    line-height: normal;
}

.card-cart-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.card-cart-btn {
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    gap: 5px;
    color: white;
    background-color: #e20000;
}

.footer-section {
    border-top: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {
    .product-card-wrapper-container {
        width: 590px;
    }

    .product-card:nth-child(3n + 1) {
        transition-delay: 0ms;
    }

    .product-card:nth-child(3n + 2) {
        transition-delay: 150ms;
    }

    .product-card:nth-child(3n + 3) {
        transition-delay: 300ms;
    }
}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    .mobile-header-gap {
        display: none;
    }

    .product-content-wrapper {
        width: 80%;
    }

    .heading-wrapper h1 {
        font-size: 52px;
    }

    .product-card-wrapper-container {
        width: 850px;
    }

    .product-card-wrapper {
        gap: 50px;
    }

    .product-card {
        width: 250px;
    }

    .product-card:nth-child(3n + 1) {
        transition-delay: 0ms;
    }

    .product-card:nth-child(3n + 2) {
        transition-delay: 150ms;
    }

    .product-card:nth-child(3n + 3) {
        transition-delay: 300ms;
    }

    .product-card-content-warper {
        font-size: 16px;
    }

    .cat-name {
        font-size: 12px;
    }

    .price-wrapper {
        font-size: 12px;
    }
}