.home-section-tabs {
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 22px #00000030;
    border-radius: 5px;
    padding: 0 12px 0 0;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-bottom: 12px;
    justify-content: space-between;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 60px;
}

.home-section-tabs:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: radial-gradient(circle at top left, #ffffff 50%, #ffffff3d 90%)
}

.home-section-tabs .showroom-banner {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
}

.home-section-tabs .showroom-tabs {
    font-size: 17px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.home-section-tabs .showroom-tabs .showroom-tab-item {
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    color: #000;
    flex-shrink: 1;
    justify-content: center;
    text-wrap: nowrap;
    transition: all 0.15s;
    border-bottom: 3px solid transparent;
    height: 61px;
}

.home-section-tabs .showroom-tabs .showroom-tab-item img {
    height: 32px;
    border-radius: 5px;
}

.home-section-tabs .showroom-tabs .showroom-tab-item:hover,
.home-section-tabs .showroom-tabs .showroom-tab-item.selected {
    border-bottom-color: #f66d00;
}

.load-more-section {
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 8px 0;
}

.load-more-section.on {
    display: flex;
}

.load-more-section .load-more-btn {
    padding: 5px 18px;
    font-size: 12px;
    background-color: rgb(246, 109, 0);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Arial, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    user-select: none;
    -webkit-user-select: none;
}

.load-more-section .load-more-btn:hover {
    transition: all 0.1s;
    background-color: rgb(202 90 0);
}.showroom-text-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
}

.showroom-text-block img {
    margin-bottom: 1rem;
    max-width: 100%;
}

.showroom-text-block h3 {
    font-size: 1.5rem;
}

.showroom-text-block p {
    font-size: 1rem;
    text-align: center;
}

.showroom-text-block .show-all-btn {
    padding: 12px 20px;
    border-radius: 12px;
}

@media only screen and (max-width: 922px) {
    .showroom-text-block {
        gap: 0.5rem;
        margin: 1rem auto;
    }

    .showroom-text-block h3 {
        font-size: 1.5rem;
    }

    .showroom-text-block p {
        font-size: 1rem;
    }
}

.home-section-indicator {
    box-shadow: 0 0 22px #00000030;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 6px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    height: 66px;
}

.home-section-indicator .indicator-section-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
}

.home-section-indicator p,
.home-section-indicator h2 {
    margin: 0;
}

.home-section-indicator h2 {
    font-size: 18px;
}

.home-section-indicator:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(45deg, #fff 45%, transparent);
}

.home-section-indicator img {
    position: absolute;
    z-index: -2;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
}

.home-section-tabs .showroom-title {
    padding: 5px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #717171;
    font-size: 13px;
    margin-left: 6px;
}

.home-section-tabs .showroom-title i {
    background-color: #FCECE5;
    color: #EB6B31;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
}

@media (max-width: 912px) {
    .home-section-indicator {
        border-radius: 0 !important;
    }

    .home-section-indicator p,
    .home-section-indicator h2 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-section-tabs .showroom-tabs .showroom-tab-item {
        flex-grow: 0;
        flex-shrink: 0;
        min-width: 20%;
        border: 0;
    }

    .home-section-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        margin-right: 0;
        margin-left: 0;
        padding: 8px 0px 0 0;
    }

    .home-section-tabs .showroom-title {
        order: 0;
    }

    .home-section-tabs .showroom-title span {
        max-width: 44vw;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .show-all-btn {
        order: 1;
    }

    .home-section-tabs .showroom-tabs {
        position: relative;
        order: 2;
        margin: 0;
        width: 100%;
    }

    .home-section-tabs .showroom-tabs .showroom-tab-item:hover,
    .home-section-tabs .showroom-tabs .showroom-tab-item.selected {
        background: #f4f4f4;
        border: 0;
    }
}

.social-showroom-banner {
    margin-bottom: 1rem;
    width: calc(100% + var(--bs-gutter-x));
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
    aspect-ratio: 17.2;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    color: white;
    font-weight: bold;
    border: 1px solid transparent;
    border-radius: 20px;
}

.social-showroom-banner .social-icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.social-showroom-banner .social-button-area .social-icon {
    width: 24px;
    height: 24px;
    margin: 0;
}

.social-showroom-banner .text {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.social-showroom-banner .button {
    background-color: #adbde5;
    color: #246791;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 15px;
    text-decoration: none;
}

.social-showroom-banner .social-button-area {
    background: white;
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 6px 6px 6px 12px;
    align-items: center;
    gap: 2rem;
}

.social-showroom-banner .follow-button {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.social-showroom-banner .social-user-name {
    color: grey;
    font-size: 12px;
}

@media (max-width: 912px) {
    .social-showroom-banner {
        flex-direction: column;
        padding: 10px;
        gap: 0.5rem;
        background-size: cover;
        background-position: center center;
    }

    .social-showroom-banner .follow-button {
        flex-shrink: 0;
        text-wrap: nowrap;
    }

    .social-showroom-banner .social-user-name {
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .social-showroom-banner .social-button-area .social-icon {
        display: none;
    }

    .social-showroom-banner .text {
        font-size: 14px;
    }

    .social-showroom-banner .social-button-area {
        padding: 4px 4px 4px 5px;
        gap: 1rem;
    }
}

.front-showroom-products {
    display: flex;
    width: calc(100% + var(--bs-gutter-x));
    gap: 1rem;
    margin-bottom: 2rem;
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.front-showroom-products .left-image {
    width: 18%;
    flex-shrink: 0;
}

.front-showroom-products .item img {
    width: 100%;
    border-radius: 5px;
}

.front-showroom-products .title {
    font-size: 16px;
}

.front-showroom-products .price {
    color: green;
    font-size: 16px;
}

.front-showroom-products .rating {
    color: grey;
}

.front-showroom-products .item .item-image-area img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 110px;
}

.front-showroom-products .item-image-area {
    display: flex;
    flex-direction: row;
    gap: 0.6rem;
    align-items: center;
}

.front-showroom-products .item-text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.front-showroom-products .item-price {
    display: flex;
    flex-direction: column;
    padding: 10px 0 0 0;
}

.front-showroom-products .left-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.front-showroom-products .front-showroom-products-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    flex-shrink: 1;
}

.front-showroom-products .front-showroom-products-items .item {
    width: calc((100% - 1rem) / 3);
    display: flex;
    flex-direction: row;
    border: 1px solid #cacaca;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    gap: 1rem;
}

.ilan-list .slick-slide
{
    width: 193.14px !important;
}

.ilan-section-main .ilan-list .slick-slide
{
    width: 209.5px !important;
}

@media (max-width: 912px) {
    .front-showroom-products .left-image {
        display: none !important;
        visibility: hidden !important;
    }

    .front-showroom-products .front-showroom-products-items {
        padding: 0 0.5rem;
        overflow-x: auto;
    }

    .front-showroom-products .front-showroom-products-items .item {
        width: 100%;
    }
}


body.dark-theme .home-section-tabs:before {
    background-color: #212630;
    background: radial-gradient(circle at top left, #212630 50%, #00000024 90%);
}

body.dark-theme .home-section-tabs {
    background: #212630;
    border-color: #323948;
}

body.dark-theme .home-section-tabs .showroom-tabs .showroom-tab-item {
    color: #fff;
}

body.dark-theme .home-section-tabs .showroom-title {
    color: #c8c8c8;
}

body.dark-theme .home-section-tabs .showroom-title i {
    background-color: #4b3c36;
    color: #f66d00;
}

body.dark-theme .show-all-btn {
    border-left: 1px solid #262b36;
    color: #bdbdbd;
}

body.dark-theme .show-all-btn:hover {
    color: #fff !important;
}
