.product-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
    gap: 64px 2%;
    margin-top: 40px;
}
@media (max-width: 1024px) {
    .product-list {
        gap: 40px 1.5rem;
    }
}
@media (max-width: 768px) {
    .product-list {
        gap: 32px 1rem;
    }
}
.product-list .product {
    overflow: hidden;
    cursor: pointer;
    width: 23.5%;
    position: relative;
    height: 540px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .product-list .product {
        width: calc((100% - 1.5rem) / 2);
        height: auto;
    }
}
@media (max-width: 768px) {
    .product-list .product {
        gap: 1rem;
    }
}
.product-list .product .product-image {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}
@media (max-width: 1440px) {
    .product-list .product .product-image {
        height: 402px;
    }
}
@media (max-width: 1024px) {
    .product-list .product .product-image {
        height: 441px;
    }
}
@media (max-width: 768px) {
    .product-list .product .product-image {
        height: 200px;
        border-radius: 12px;
    }
}
.product-list .product .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-list .product .information {
    margin-top: 12px;
    position: relative;
    flex: 1;
}
.product-list .product .information .product-title {
    color: #262626;
    text-align: center;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
}
.product-list .product .information .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
}
.product-list .product .information .price .original-price {
    color: #305339;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.16px;
}
.product-list .product .information .price .sales-price {
    overflow: hidden;
    color: rgba(38, 38, 38, 0.5);
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.14px;
    text-decoration-line: line-through;
}
.product-list .product .information .buy-product {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    position: absolute;
    bottom: -90px;
    width: 100%;
    align-items: center;
    transition: bottom 0.3s ease-in-out;
}
@media (max-width: 1185px) {
    .product-list .product .information .buy-product {
        flex-direction: column;
        bottom: -115px;
    }
}
@media (max-width: 1024px) {
    .product-list .product .information .buy-product {
        position: static;
    }
}
.product-list .product .information .buy-product .buy-btn {
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: 19px 15px;
    background-color: #262626;
    border-radius: 32px;
    flex-grow: 1;
    text-align: center;
}
@media (max-width: 1250px) {
    .product-list .product .information .buy-product .buy-btn {
        padding: 15px;
    }
}
@media (max-width: 1185px) {
    .product-list .product .information .buy-product .buy-btn {
        width: 100%;
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .product-list .product .information .buy-product .buy-btn {
        font-size: 12px;
        padding: 10px;
    }
}
.product-list .product .information .buy-product .add-to-cart {
    background-color: transparent;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: 1px solid #305339;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1250px) {
    .product-list .product .information .buy-product .add-to-cart {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 1185px) {
    .product-list .product .information .buy-product .add-to-cart {
        width: 100%;
        height: 46px;
    }
}
.product-list .product .information .buy-product .add-to-cart img:nth-child(2) {
    display: none;
}
.product-list .product .information .buy-product .add-to-cart.added {
    background-color: #305339;
}
.product-list .product .information .buy-product .add-to-cart.added img:nth-child(1) {
    display: none;
}
.product-list .product .information .buy-product .add-to-cart.added img:nth-child(2) {
    display: block;
}
.product-list .product .information .buy-product .added_to_cart {
    display: none;
}
.product-list .product .discount-label {
    padding: 4px 8px;
    border-radius: 4px;
    background: #E96767;
    display: inline-block;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: absolute;
    left: 12px;
    top: 12px;
}
.product-list .product:hover .product-image {
    height: 380px;
}
@media (max-width: 1024px) {
    .product-list .product:hover .product-image {
        height: 441px;
    }
}
@media (max-width: 550px) {
    .product-list .product:hover .product-image {
        height: 200px;
    }
}
.product-list .product:hover .buy-product {
    bottom: 0;
}

.products-section {
    width: 100%;
    margin: 0 auto;
}
.products-section .loader-more-button {
    width: 100%;
    text-align: center;
    margin-top: 64px;
}
.products-section .loader-more-button .load-more {
    border-radius: 32px;
    background: #262626;
    padding: 19px 40px;
    outline: none;
    border: none;
    color: #ffffff;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.36px;
    cursor: pointer;
}

.products-filter {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.products-filter::-webkit-scrollbar {
    display: none;
}
.products-filter .filter-list {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    min-width: fit-content;
}
.products-filter .filter-btn {
    padding: 11px 24px;
    border-radius: 24px;
    color: #262626;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.36px;
    background-color: #ffffff;
    outline: none;
    border: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
}
.products-filter .filter-btn:hover {
    background-color: #262626;
    color: #ffffff;
}
.products-filter .filter-btn.active {
    background-color: #262626;
    color: #ffffff;
}
@media (max-width: 768px) {
    .products-filter {
        gap: 8px;
        padding: 10px;
    }
    .products-filter .filter-list {
        gap: 8px;
    }
}

/*# sourceMappingURL=style.css.map */
