.main-tabs {
    display: flex;
    background: #F5F5F5;
    height: 52px;
    border-radius: 26px;
    align-items: center;
    font-family: "Cera Pro";
    position: relative;
}
.main-tabs a {
    display: flex;
    position: relative;
    height: 52px;
    border-radius: 26px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    padding: 0 34px;
    z-index: 1;
}
.main-tabs a.active {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.tab-plane {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/tabs/tab-plane1.svg) no-repeat center;
}
.main-tabs a:hover .tab-plane {
    background-image: url(../images/tabs/tab-plane2.svg);
}
.tab-sofa {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/tabs/tab-sofa1.svg) no-repeat center;
}
.main-tabs a:hover .tab-sofa {
    background-image: url(../images/tabs/tab-sofa2.svg);
}
.tab-marker {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/tabs/tab-marker1.svg) no-repeat center;
}
.main-tabs a.active .tab-marker {
    background-image: url(../images/tabs/tab-marker2.svg);
}
.main-tabs a span {
    display: block;
    position: absolute;
    height: 17px;
    line-height: 17px;
    color: #fff;
    background: var(--base-color);
    border-radius: 8.5px;
    padding: 0 5px;
    font-size: 10px;
    right: 0;
    top: 0;
}