@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Julius+Sans+One&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: none !important;
}

.container {
    max-width: 1170px !important;
    padding: 0 15px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

ul {
    padding: 0 !important;
}

li {
    list-style: none;
}

.top-product-heading>ul {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 63px;
    justify-content: center;
    text-align: center;
    margin-top: 38px;
    margin-bottom: 41px;
}

.top-product-heading>h2 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.top-product {
    padding-top: 77px;
    padding-bottom: 85px;
}

.top-product-heading>ul>li>a {
    color: #525252;
}

.product-card>div {
    height: fit-content;
}

.product-card>div>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card>p:nth-child(2) {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    justify-content: space-between;
    color: #454545;
}

.product-card>p:nth-child(3) {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.product-price>p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.product-price>p:first-child {
    text-decoration: line-through;
}

@media screen and (max-width:425px) {
    .top-product-heading>h2 {
        font-size: 30px;
    }

    .top-product-heading>ul {
        gap: 40px;
    }
}