body {
    background-image: url(../images/product-bg-img.png);
    object-fit: contain;
    overflow-x: hidden;
}


/* animation dots */
/* .ani-dots {
    border-radius: 50%;
    position: absolute;
}

.ani-dots1 {
    height: 5rem;
    width: 5rem;
    background-color: #c2f0c3;
    left: 5rem;
    top: 40rem;
    animation: upDown 5s linear infinite;
}

.ani-dots2 {
    height: 8rem;
    width: 8rem;
    background-color: #92e394;
    left: 5rem;
    top: 13rem;
    animation: leftRight 5s linear infinite;
}

.ani-dots3 {
    height: 8rem;
    width: 8rem;
    background-color: #92e394;
    left: 10rem;
    top: 60rem;
    animation: doraDora 5s linear infinite;
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(-20px);
    }

    66% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes leftRight {
    0% {
        transform: translateX(0)
    }

    33% {
        transform: translateX(-20px);
    }

    66% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes doraDora {
    0% {
        transform: translate(-20px, -20px);
    }

    25% {
        transform: translate(20px, -20px);
    }

    50% {
        transform: translateX(20px, 20px);
    }

    75% {
        transform: translate(-20px, 20px);
    }

    100% {
        transform: translate(-20px, -20px);
    }
} */


/* button */
.product-btn {
    /* border: 1px solid black; */
    color: white !important;
    font-size: 1.2rem !important;
    padding: 5px 15px;
    border-radius: .7rem;
    background-image: linear-gradient(to bottom right, #25D267, #15957C) !important;
    box-shadow: 0px 0px 5px hsl(0, 0%, 20%);
    transition: all 0.5s ease;
}

.product-btn:hover {
    background-image: linear-gradient(to bottom right, #15957C, #25D267) !important;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-right: 14px;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    box-shadow: 1px 1px 5px hsla(0, 0%, 38%, 0.557);
    border-radius: 3px;
    background-color: #ffffff;
    transition: all .5s ease;
    z-index: 5;
}

.product-card:hover {
    box-shadow: 0px 0px 20px hsla(0, 0%, 38%, 0.87);
    transform: translateY(-10px) scale(1.02);
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    /* width: 100%; */
    /* background-color: #e2e2e2; */
    /* border-radius: 3px 3px 0px 0px; */
    /* padding: 16px; */
    /* min-height: 200px; */
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
    transition: all .8s ease;
}

.product-card:hover .product-image {
    transform: scale(1.15);
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 20px 26px 20px;
}

.product-title {
    font-size: 18px;
    font-family: Inter;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #192E21;
    width: 100%;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #637381;
    width: 100%;
    margin-bottom: 24px;
}

.product-divider {
    width: 30px;
    height: 2px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    font-family: Inter;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #131313;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: 32px;
}

.pagination-arrow {
    width: 16px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}


/* Responsive media queries */
@media (min-width: 640px) {
    .content-wrapper {
        padding-top: 64px;
    }

    .products-label {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 5px;
        margin-bottom: 18px;
    }

    .main-heading {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 18px;
    }

    .subtitle {
        font-size: 16px;
        line-height: 20px;
    }

    .category-nav {
        gap: 32px;
        margin-bottom: 40px;
    }

    .category-item {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .product-title {
        font-size: 20px;
        line-height: 28px;
    }

    .product-description {
        font-size: 15px;
        line-height: 22px;
    }

    .product-price {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (min-width: 768px) {
    .content-wrapper {
        padding-top: 72px;
    }

    .products-label {
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 6px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 17px;
        line-height: 22px;
    }

    .category-nav {
        gap: 40px;
        margin-bottom: 48px;
    }

    .category-item {
        font-size: 17px;
        line-height: 21px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .product-title {
        font-size: 22px;
        line-height: 30px;
    }

    .product-description {
        font-size: 15px;
        line-height: 23px;
    }

    .product-price {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (min-width: 1024px) {
    .content-wrapper {
        padding-top: 96px;
    }

    .products-label {
        font-size: 14px;
        line-height: 17px;
        letter-spacing: 7px;
        margin-bottom: 22px;
    }

    .main-heading {
        font-size: 48px;
        line-height: 59px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 19px;
        line-height: 23px;
    }

    .category-nav {
        gap: 48px;
        margin-bottom: 56px;
    }

    .category-item {
        font-size: 18px;
        line-height: 22px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 26px;
    }

    .product-card {
        gap: 15px;
        border-radius: 1rem;
    }

    .product-image-container {
        min-height: 256px;
    }

    .product-title {
        font-size: 24px;
        line-height: 36px;
    }

    .product-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 36px;
    }

    .product-price {
        font-size: 24px;
        line-height: 30px;
    }
}