.collections-page .section-top {
    padding-top: 52px;
}

.collections-page .section-top .section-inner {
    border-top: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
    display: flex;
    flex-direction: column;
    padding: 64px 0;
    align-items: center;
    gap: 24px;
}

.collections-page .section-top .section-inner h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 81px;
}

.collections-page .section-top .section-inner .nav {
    display: flex;
    gap: 24px;
}

.collections-page .section-top .section-inner .nav > * {
    border: 1px solid rgb(127, 127, 127, 0.5);
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.collections-page .section-top .section-inner .nav > *.active {
    border: 1px solid rgb(47, 104, 181, 0.5);
    cursor: default;
}

.collections-page .section-top .section-inner .nav > a:first-child {
    padding: 0 43px 12px 50px;
}

.collections-page .section-top .section-inner .nav > a:nth-child(2) {
    padding: 0 50px 12px 43px;
}

.collections-page .section-top .section-inner .nav .icon {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    height: 88px;
    width: 110px;
}

.collections-page .section-top .section-inner .nav a:first-child .icon {
    background-image: url("../img/collections/glue-6b991aaacbefc25f2218b9ba71cb2df9.svg");
    cursor: pointer;
}

.collections-page .section-top .section-inner .nav a.active:first-child .icon {
    background-image: url("../img/collections/glue_active-8eea6d65627b92efb5b502c840f7797e.svg");
    cursor: default;
}

.collections-page .section-top .section-inner .nav a:nth-child(2) .icon {
    background-image: url("../img/collections/lock-72d81e4bd1d285b62940f80d2a9b67fe.svg");
    cursor: pointer;
}

.collections-page .section-top .section-inner .nav a.active:nth-child(2) .icon {
    background-image: url("../img/collections/lock_active-85f8a766b96394926847e07edee33f42.svg");
    cursor: default;
}

.collections-page .section-top .section-inner .nav > * .text {
    color: #7F7F7F;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.collections-page .section-top .section-inner .nav > *.active .text {
    color: #2F68B5;
    cursor: default;
}

@media (max-width: 980px) {
    .collections-page .section-top .section-inner h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .collections-page .section-top .section-inner .nav > * {
        width: 165px;
    }
}

@media (max-width: 600px) {
    .collections-page .section-top .section-inner h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .collections-page .section-top .section-inner .nav > * {
        width: 140px;
    }
}

.collections-page .section-bottom {
    padding: 64px 64px 120px;
}

.collections-page .section-bottom .page-variant.hidden {
    display: none;
}

.collections-page .section-bottom .section-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.collections-page .section-bottom .section-inner .collection-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collections-page .section-bottom .section-inner .collection-card .img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 310px;
}

.collections-page .section-bottom .section-inner .collection-card .text {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

.collections-page .section-bottom .section-inner .collection-card .text .count {
    color: #7F7F7F;
}

.collections-page .section-bottom .section-inner .collection-card .text .title.new:after {
    content: 'NEW';
    display: inline-block;
    position: relative;
    margin-left: 12px;
    top: -2px;
    font-size: 12px;
    line-height: 12px;
    padding: 5px 6px 3px;
    border: 1px solid #2F68B5;
    color: #2F68B5;
    border-radius: 2px;
}

@media (max-width: 980px) {
    .collections-page .section-bottom {
        padding: 60px 32px;
    }

    .collections-page .section-bottom .section-inner {
        grid-template-columns:  1fr;
    }
}

@media (max-width: 600px) {
    .collections-page .section-bottom {
        padding: 45px 20px;
    }
}

.interior_designer-wrapper {
    padding: 64px 64px 120px;
}

.interior_designer-container {
    position: relative;
    display: block;
    width: 100%;
    height: 480px;
    background-image: url("../img/collections/interior-designer-722873a00f4d310a208194e064a37ef2.webp");
    background-size: cover;

    &::after {
        content: "";
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: #0000001f;
        transition: background-color 0.2s linear;
    }

    &:hover {
       &::after {
            background-color: #00000052;
       }
    }
}

.interior_designer-btn {
    position: absolute;
    display: flex;
    gap: 18px;
    bottom: 48px;
    right: 48px;
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    z-index: 10;
    color: white;
    margin-top: auto;
    transition: border-bottom 0.2s linear;
}

.interior_designer-icon {
    display: block;
    width: 29px;
    height: 35px;
    background-image: url("../img/collections/arrow-30455af33ae4005836898ed3659de571.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 980px) {
    .interior_designer-wrapper {
        padding: 60px 32px;
    }

    .interior_designer-container {
        height: 310px;
    }

    .interior_designer-btn {
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .interior_designer-icon {
        width: 24px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .interior_designer-btn {
        font-size: 19px;
        gap: 11px;
    }

    .interior_designer-icon {
        width: 18px;
        height: 23px;
    }
}
