@font-face {
    font-family: 'Cera Pro';
    src: url("../fonts/CeraPro/CeraPro-Regular.woff");
         url("../fonts/CeraPro/CeraPro-Regular.woff2");
}

.layout {
    display: flex;
    padding: 171px 109px 92px 29px;
}

.layout-sidebar {
    font-family: "Cera Pro", sans-serif;
    max-width: 300px;
    max-height: 774px;
    background-color: #FBFBFB;
}

.categories-title {
    padding: 14px 199px 18px 7px;
    color: #3D3D3D;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 88.889% */
}

.categories-list-item {
    padding-left: 12px;
    margin-bottom: 20px;
}

.categories-list-item:first-child {
    color: #46A358;
    font-weight: 700;
}

.sale-banner {
    margin-left: -30px;
}

.sale-promo-banner {
    max-width: 360px;
    max-height: 470px;
    margin-top: 366px;
}

.layout-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 54px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    padding: 10px;
    font-family: "Cera Pro", sans-serif;
}

.tabs {
    display: flex;
    gap: 40px;
}

.tab-link {
    padding-bottom: 7px;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 106.667% */
}

.tab-link-active {
    border-bottom: 3px solid #46A358;
    color: #46A358;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 106.667% */
}

.sort-select {
    font-family: "Cera Pro", sans-serif;
}

.layout-products {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 38px;
    gap: 37px;
}

.product-card {
    flex: 0 0 calc(33.333% - 25px);
    text-align: left;
    margin-top: 12px;
}

.product-card p {
    margin-top: 6px;
    color: #46A358;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 88.889% */
}

.layout-pagination {
    display: flex;
    margin-top: 90px;
    gap: 10px;
    flex: 0 0 100%;
    justify-content: flex-end;
}

.page-btn {
    display: flex;
    align-items: center;
    max-height: 35px;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    max-width: 35px;
    padding: 10px 14px;
    color: #E5E5E5;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px; /* 88.889% */
}

.page-btn:first-child {
    background-color: #46A358;
}

.product-image {
    position: relative;
    background-color: #FBFBFB;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #46A358;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover::before {
    opacity: 1;
}

.product-actions {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-image:hover .product-actions {
    opacity: 1;
    pointer-events: auto;
}

.action-btn {
    background-color: #FFFFFF;
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, fill 0.2s ease;
    border: none;
}

.action-btn svg path {
    fill: #3D3D3D;
    transition: fill 0.2s ease;
}

.action-btn:hover svg path {
    fill: #46A358;
}

.action-btn:hover {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 14px;
    left: 0;
    width: 80px;
    height: 29px;
    background-color: #46A358;
    color: #fff;
    font-family: "Cera Pro", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 29px;
    text-align: center;
}













