@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');

* {
    font-family: 'Poppins',
    sans-serif;
    transition: all 0.5s linear;
}

html, body {
    scroll-behavior: smooth;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .container {
        max-width: 100% !important;
    }
}

nav {
    box-shadow: 0px 3px 6px #00000029;
}

.products-section {
    padding: 6rem 0 4rem;
}

.products-section .col-sm-6.col-lg-4 {
    margin-top: 30px;
}

.product-wrapper {
    position: relative;
    border: 1px solid #707070;
    padding: 2rem 2.5rem;
}

.product-name {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #000000;
    height: 100px;
}

@media (max-width: 1199.98px) {
    .product-name {
        height: 150px;
    }
}

@media (max-width: 991.98px) {
    .product-name {
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .product-name {
        height: 150px;
    }
}

@media (max-width: 575.98px) {
    .product-name {
        height: auto;
    }
}

.product-wrapper hr {
    border-color: #333C44;
}

.price-wrapper {
    display: flex;
    justify-content: center;
}

.price-wrapper div {
    width: 50%;
    text-align: center;
    font-size: 18px;
}

.price-wrapper .current-price {
    font-weight: bold;
    color: #FF2E2E;
}

.price-wrapper .old-price {
    font-weight: 300;
    letter-spacing: 0px;
    color: #636363;
    position: relative;
}

.price-wrapper .old-price::after {
    content: "";
    width: 80%;
    border: 1px solid #707070;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.black-btn {
    display: block;
    width: 100%;
    height: 56px;
    background-color: #333C44;
    border: 1px solid #707070;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 56px;
    font-weight: 300;
    color: #FFFFFF;
}

.black-btn:hover {
    text-decoration: none;
    background-color: transparent;
    color: #333C44;
}

.discount-percentage {
    width: 54px;
    height: 31px;
    background-color: #FF2E2E;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    line-height: 31px;
    color: #FFFFFF;
    position: absolute;
    top: 2rem;
    right: 1rem;
    z-index: 2;
}