/* HoReCa Block */

.horeca-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em;
    background-image: url(../../../../assets/images/horeca-background-2.png);
    /* background-position: bottom;
    background-repeat: round;
    background-size: cover; */
    background-position: bottom;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: auto;
}

.horeca-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    gap: 1em;
}

.horeca-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #000;
    margin: 0;
}

.horeca-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #000;
    margin: 0;
}

.horeca-cta,
.horeca-collection-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5em;
    padding: 20px;
    width: auto;
    height: 55px;
    backdrop-filter: blur(24px);
    background-color: #151515;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
}

.horeca-cta:hover,
.horeca-collection-btn:hover {
    background-color: #151515db;
    transition: ease .3s;
}

.horeca-subimage {
    width: 100%;
    height: auto;
}

.horeca-body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    width: auto;
    gap: 4em;
    padding: 4em;
}

.horeca-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 757px;
    width: auto;
    gap: 10em;
}

.horeca-left-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 3em;
}

.horeca-left-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 3em;
}

.horeca-logo {
    width: 280px;
    height: 131px;
}

.horeca-tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-radius: 15px;
    padding: 5px;
    width: auto;
    background-color: #0d0d0d;
}

.horeca-tabs .tab-btn {
    border-radius: 10px;
    border: none;
    padding: 20px 30px;
    width: auto;
    background-color: transparent;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    white-space: nowrap;
    color: #fff;
    cursor: pointer;
}

.horeca-tabs .tab-btn.is-active {
    background-color:#e41d2f;
}

.horeca-tabs .tab-btn:focus-visible{
    outline: 2px solid #e41d2f;
}

.horeca-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    gap: .5em;
}

.tab-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #0d0d0d;
    margin: 0;
}

.tab-sub {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: rgba(13, 13, 13, 0.5);
    margin: 0;
}

.horeca-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 757px;
    height: 757px;
    overflow: hidden;
}

.tab-wrapper {
    position: absolute;
    top: 0; 
    left: 0;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border: 11px solid #fff;
    border-radius: 10px;
    box-shadow: 0 -46px 57px 0 rgba(50, 59, 70, 0.2);
    background-color: #fff;
    opacity: 0;
    pointer-events: none; 
    will-change: opacity, transform;
}

.tab-img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    will-change: opacity, transform;
    transition: opacity .55s, transform .55s;
}

.tab-wrapper.is-active {
    opacity: 1;
    pointer-events: auto;
}

.tab-img.is-active {
    opacity: 1;
}
