html {
    scroll-behavior: smooth;
}

/* CSS ZA NOVI SUBCATEGORY*/

.hero-subcategory {
    margin-top: 89px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
}

.hero-subcategory::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 100%, rgba(255, 255, 255, 0.00) 100%);
    background-size: cover;
    background-position: 50%;
    z-index: 0;
}

.hero-subcategory-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-left: 15%;
    width: 70%;

    padding-top: 48px;
    padding-bottom: 48px;
    z-index: 1;
}

.hero-subcategory-holder span {
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(2px);
    padding: 8px 12px;
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.hero-subcategory-holder h1 {
    flex: 0 0 100%;
    margin: 12px auto 24px;
    color: #FFF;
    text-align: center;
    font-family: 'Literata', sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 300;
    line-height: 64px;
}

.hero-subcategory-holder p {
    color: #FFF;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.plant-list {
    margin: 0 auto 100px !important;
}

.plant-list-holder {
    display: flex;
    flex-flow: row wrap;
}

.plant-list-holder__breadcrumbs {
    flex: 0 0 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    align-content: center;
}

.plant-list-holder__breadcrumbs a {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-decoration-line: underline;
    margin-right: 8px;
}

.plant-list-holder__breadcrumbs a:last-of-type {
    color: #333;
    margin-right: 0;
    text-decoration: none;
}

.plant-list .plant-list-holder__card-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 100%;
}

.plant-list .plant-list-holder__card-holder .cards-holder__empty-message {
    display: none;
}

.plant-list-holder__single-card {
    flex: 0 0 24%;
    margin-bottom: 32px;
    transition: 30ms;
    margin-right: 1.3%;
}

.plant-list-holder__single-card:nth-of-type(4n) {
    margin-right: 0;
}

.plant-list-holder__single-card:hover .plant-list-holder__single-card-bottom {
    background: #EEF9F1;
}

.plant-list-holder__single-card-top {
    position: relative;
    display:block;
}

.plant-list-holder__single-card-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 17.71%, rgba(255, 255, 255, 0.00) 100%);
    background-size: cover;
    background-position: 50%;
    z-index: 0;
    border-radius: 20px 20px 0 0;
}

.plant-list-holder__single-card-top img {
    display: flex;
    width: 100%;
    border-radius: 20px 20px 0 0;
    height: 220px;
    object-fit: cover;
}

.plant-list-holder__single-card-top a {
    width: 100%;
    display: flex;
    z-index: 1;
}

.plant-list-holder__single-card-top span {
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(2px);
    padding: 8px 12px;
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 80%;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    position: absolute;
    top: 16px;
    left: 16px;
}

.plant-list-holder__single-card-bottom {
    border-radius: 0px 0px 20px 20px;
    background: #FAFAFA;
    padding: 20px;
    height: 194px;
    display: flex;
    flex-flow: row wrap;
    align-content: space-between;
    transition: 300ms;
}

.plant-list-holder__single-card-bottom-content h2,
.plant-list-holder__single-card-bottom-content a {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
}

.plant-list-holder__single-card-bottom-content p {
    margin-top: 8px;
    overflow: hidden;
    color: #888;
    text-overflow: ellipsis;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    width: 100%;
}

.plant-list-holder__single-card-bottom-btn {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    width: 100%;
}

.plant-list-holder__single-card-bottom-btn svg {
    margin-left: 8px;
    transition: 300ms;
}

.plant-list-holder__single-card-bottom-btn:hover svg {
    transform: translateX(8px);
}

.plant-list-holder__card-pagination {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: max-content;
    margin-top: 28px !important;
    margin-left: auto;
    margin-right: auto;
}

.plant-list-holder__card-pagination svg {
    border-radius: 50%;
    border: 1px solid #C8C8C8;
    width: 32px;
    height: 32px;
    padding: 8px;
    cursor: pointer;
}

.plant-list-holder__card-pagination a {
    display: flex;
    align-items: center;
}

.plant-list-holder__card-pagination a:first-of-type {
    opacity: 1;
}

.plant-list-holder__card-pagination ul {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    width: auto;
    padding: 0;

}

.plant-list-holder__card-pagination ul li {
    border-radius: 50%;
    width: 32px !important;
    height: 32px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 300ms;
    margin: 0 4px;
}

.plant-list-holder__card-pagination ul li a {
    text-decoration: none;
    border: 1px solid #C8C8C8;
    border-radius: 50%;
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.4px;
    width: 32px !important;
    height: 32px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.plant-list-holder__card-pagination ul li a:hover {
    border: 1px solid #333;
}

.plant-list-holder__card-pagination ul li.active-pag a {
    background-color: #FC6A5D;
    border-color: #FC6A5D;
    color: #FFFFFF;
}

.find-plants {
    margin-top: 120px;
    margin-bottom: 120px;
}

.find-plants-holder h2 {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 60px;
}

.middle-part {
    display: none;
}

.find-plants{
    margin-top: 120px !important;
}

.find-plants-holder__categories {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.find-plants-holder__categories h2{
    width: 100%;
    margin-bottom: 73px;
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
}

.find-plants-holder__categories-left {
    flex: 0 0 17%;
    display: flex;
    flex-flow: row wrap;
    padding: 12px;
    border-radius: 16px;
    background: #FAFAFA;
}

.find-plants-holder__categories-left span {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 25px;
}

.find-plants-holder__categories-left .find-plants-holder__categories-left-btns {
    display: flex;
    flex-flow: row wrap;
    transition: 300ms;
}

.find-plants-holder__categories-left .find-plants-holder__categories-left-btns a {
    flex: 0 0 100%;
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
}

.find-plants-holder__categories-left .find-plants-holder__categories-left-btns a:hover {
    background-color: #DBE6DE;
}

.active-cat {
    background: #0F4F1E !important;
    color: #fff !important;
}

.active-filter {
    background: #EEF9F1;
    color: #0F4F1E !important;
}

.find-plants-holder__categories-right {
    flex: 0 0 81%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.find-plants-holder__categories-right__subcategory {
    flex: 0 0 24%;
    padding-top: 12px;
}

.find-plants-holder__categories-right__subcategory span {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 24px;
}

.find-plants-holder__categories-right__subcategory-holder {
    display: flex;
    flex-flow: row wrap;
    transition: 300ms;
}

.find-plants-holder__categories-right__subcategory-holder a {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #FAFAFA;
    background: #FFF;
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    text-decoration: none;
}

.find-plants-holder__categories-right__subcategory-holder a:hover {
    background-color: #F5F5F5;
}

.seo-fluff {
    background: #FAFAFA;
    padding-top: 100px;
    padding-bottom: 100px;
}

.seo-fluff-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.seo-fluff-holder__left,
.seo-fluff-holder__right {
    flex: 0 0 48%;
}

.seo-fluff-holder__right{
    display: none;
}

.seo-fluff-holder__left h2 {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 32px;
}

.seo-fluff-holder__left p {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px;
}

.seo-fluff-holder__left p:first-of-type {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
}

.seo-fluff-holder__left p:last-of-type {
    border-radius: 16px;
    background: #FFF;
    padding: 16px;
    font-style: italic;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 0;
}

.seo-fluff-holder__right img {
    width: 100%;
    height: 768px;
    border-radius: 16px;
    object-fit: cover;
}

@media only screen and (max-width: 1200px) {
    .hero-subcategory {
        margin-top: 63px;
    }

    .hero-section-plant .hero-section-plant-holder {
        margin-left: 10%;
        width: 80%;
    }

    .plant-list .plant-list-holder__single-card {
        flex: 0 0 32%;
        margin-right: 2%;
    }

    .plant-list .plant-list-holder__single-card:nth-of-type(4n) {
        margin-right: auto;
    }

    .plant-list .plant-list-holder__single-card:nth-child(3n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-plant__filter-holder label,
    .hero-plant__filter-holder input {
        width: 49%;
        margin-bottom: 16px;
    }

    .hero-plant__filter-holder__search {
        width: 100%;
    }

    .single-plant-list {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }
}

@media only screen and (max-width: 1091px) {
    .hero-subcategory {
        /*margin-top: 81px;*/
    }

    .hero-subcategory-holder {
        margin-left: 0;
        width: 100%;
    }

    .plant-list .plant-list-holder__single-card {
        flex: 0 0 48%;
        margin-right: 3%;
    }

    .plant-list .plant-list-holder__single-card:nth-of-type(3n) {
        margin-right: auto;
    }

    .plant-list .plant-list-holder__single-card:nth-child(2n) {
        margin-right: 0;
    }

    .seo-fluff .seo-fluff-holder__left {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .seo-fluff .seo-fluff-holder__right {
        flex: 0 0 100%;
        display: none;
    }

    .seo-fluff .seo-fluff-holder__right img {
        height: 500px;
    }
}

@media only screen and (max-width: 1024px) {
    .find-plants-holder__categories-left {
        flex: 0 0 100%;
    }

    .find-plants-holder__categories-left h5 {
        width: 100%;
    }

    .find-plants-holder__categories-left .find-plants-holder__categories-left-btns {
        width: 100%;
        justify-content: space-between;
    }

    .find-plants-holder__categories-left .find-plants-holder__categories-left-btns a {
        flex: 0 0 49%;
        margin-bottom: 8px;
    }

    .find-plants-holder__categories-left {
        background: transparent !important;
        padding: 0 0 20px 0 !important;
        border-bottom: 1px solid #D9D9D9 !important;
        border-radius: 0 !important;
        margin-bottom: 20px !important;
    }

    .find-plants-holder__categories-left .find-plants-holder__categories-left-btns a {
        background: #F5F5F5;
    }


    .find-plants-holder__categories-right {
        flex: 0 0 100%;
    }
}

@media only screen and (max-width: 991px) {
    .hero-plant-holder h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-plant-holder p {
        font-size: 16px;
    }

    .hero-plant .hero-plant-holder .hero-plant__filter-holder .hero-plant__filter-holder__search {
        width: 100%;
    }

    .hero-subcategory-holder {
        padding-top: 40px;
        padding-bottom: 40px;

        margin-left: 0;
        width: 100%;
    }

    .hero-subcategory-holder h1 {
        font-size: 46px;
        margin: 12px auto 20px;
        line-height: 110%;
    }

    .hero-subcategory-holder p {
        font-size: 16px;
        line-height: 18px;
    }

    .plant-list {
        margin: 0 auto 60px !important;
    }

    .plant-list-holder__breadcrumbs {
        padding-top: 16px;
        padding-bottom: 16px;
        margin-bottom: 40px;
    }

    .plant-list-holder__card-pagination {
        margin: auto;
    }

    .similar-product {
        padding-top: 60px;
        padding-bottom: 46px;
    }

    .similar-product-holder__top h2 {
        font-size: 40px;
    }

    .similar-product-holder__top {
        margin-bottom: 32px;
    }

    .find-plants {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .find-plants-holder h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .middle-part {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;

        background: transparent;
        padding: 0 0 20px 0;
        border-bottom: 1px solid #D9D9D9;
        margin-bottom: 20px;
    }

    .middle-part h5 {
        color: #333;
        font-family: 'Literata', sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 25px;
        width: 100%;
    }

    .middle-part-holder__categories-right {
        flex-flow: row wrap;
        width: 100%;
        justify-content: space-between;
        display: none;
    }

    .middle-part-holder__categories-right:first-of-type {
        display: flex;
        width: fit-content;
    }

    .middle-part-holder__categories-right .category-name {
        color: #C8C8C8;
        font-family: 'Figtree', sans-serif;
        font-size: 11px;
        font-style: normal;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.88px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 12px;
        border: 1px solid #A6A6A6;
        border-radius: 60px;
        display: flex;
        align-items: center;
        height: 32px;
        width: fit-content;
    }

    .find-plants-holder__categories-right__subcategory h5 {
        display: none;
    }

    .find-plants-holder__categories-right__subcategory {
        /*max-width: fit-content !important;*/
        padding-top: 0 !important;
    }

    .category-name-active {
        border: 1px solid #0F4F1E !important;
        background: #EEF9F1 !important;
        color: #0F4F1E !important;
    }

    .seo-fluff {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .seo-fluff .seo-fluff-holder__left h2 {
        font-size: 40px;
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .plant-list-holder__load-more a {
        width: 100%;
    }

    .cards-holder__empty-message p {
        justify-content: left;
    }

    .find-plants-holder__categories-right .find-plants-holder__categories-right__subcategory {
        flex: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .hero-subcategory-holder h1 {
        font-size: 36px;
        font-weight: 400;
    }

    .hero-subcategory-holder p {
        font-size: 14px;
    }

    .plant-list {
        margin: 0 auto 40px !important;
    }

    .plant-list .plant-list-holder__single-card {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .plant-list .plant-list-holder__single-card:last-of-type {
        margin-bottom: 0 !important;
    }

    .plant-list-holder__card-pagination {
        margin-top: 8px !important;
    }

    .plant-list .plant-list-holder__card-holder {
        margin-bottom: 0;
    }

    .similar-product {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .similar-product-holder__top h2 {
        font-size: 36px;
        line-height: 110%;
    }

    .seo-fluff {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 16px;
    }
}