.catalog-hero {
    padding: 100px 0 80px;
    background: var(--cream)
}

.catalog-hero h1 {
    font-size: clamp(3rem,6vw,6rem);
    margin-bottom: 20px
}

.catalog-toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 38px
}

.catalog-filter {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: white;
    color: var(--ink);
    font-size: .72rem
}

.catalog-filter.active,.catalog-filter:hover {
    background: var(--green-dark);
    color: white
}

.catalog-card {
    height: 100%;
    display: block;
    padding: 16px 16px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white
}

.catalog-image {
    height: 260px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.catalog-card small {
    color: var(--orange);
    font-weight: 700
}

.catalog-category {
    display: block;
    margin: 0 0 3px;
    color: var(--orange);
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.25
}

.catalog-card h3 {
    font-size: 1.1rem
}

.catalog-card .model{
    margin-bottom: 0 !important;
}

.catalog-card b {
    display: inline-block;
    font-size: .78rem
}

.catalog-item.is-hidden {
    display: none
}

.catalog-detail {
    padding: 55px 0 100px
}

.catalog-breadcrumb {
    margin-bottom: 45px;
    color: #7b8781;
    font-size: .72rem
}

.catalog-detail-image {
    min-height: 590px;
    display: grid;
    place-items: center;
    padding: 30px;
    border-radius: 22px;
    background: var(--cream)
}

.catalog-detail-image img {
    max-height: 530px;
    width: 100%;
    object-fit: contain
}

.catalog-detail h1 {
    font-size: clamp(2.8rem,5vw,5rem)
}

.catalog-detail .model {
    margin: 20px 0
}

.detail-tags {
    margin: 25px 0
}

.catalog-detail .btn {
    margin-top: 20px
}

@media(max-width:600px) {
    .catalog-hero {
        padding: 70px 0 55px
    }

    .catalog-image {
        height: 280px
    }

    .catalog-detail-image {
        min-height: 390px
    }

    .catalog-detail {
        padding-top: 35px
    }
}
