.summer-slider-section {
    width: 100%;
    height: 670px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    font-family: "Monserrat", Sans-serif !important;
}

.summer-slide-left-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    background-color: #F5F5F5A6;
}

.summer-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.summer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, visibility 0.6s;
}

.summer-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.summer-slide-background {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.summer-slide-view-container {
    position: relative;
    width: 50%;
    max-width: 50%;
    margin: 0;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: max(30px, calc((100% - min(1348px, 100%)) / 2));
    padding-right: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    z-index: 3;
    min-width: 0;
}

.summer-slide-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 60px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.summer-slide-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summer-slide-counter {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #2f2f2f;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    max-width: 100%;
}

.summer-slide-counter-current {
    font-size: 18px;
    font-weight: 500;
}

.summer-slide-counter-line {
    position: relative;
    flex: 1 1 auto;
    min-width: 48px;
    max-width: 220px;
    height: 2px;
    background: #1E1E1E80;
    overflow: hidden;
}

.summer-slide-counter-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--hotel-accent, #2f2f2f);
    transition: width 0.3s ease;
}

.summer-slide-counter-total {
    font-size: 18px;
    font-weight: 300;
}

.summer-slide-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    min-width: 0;
}

.summer-slide-badge {
    padding: 3px 20px;
    color: #2F2F2F;
    font-size: 16px;
    font-weight: 400;
    border-radius: 3px;
    background: var(--hotel-accent-55);
}

.summer-slide-title {
    font-size: 30px;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0;
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.summer-slide-description-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summer-slide-description-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.summer-description-arrow {
    font-size: 46px;
    color: #2f2f2f;
    flex-shrink: 0;
    margin-top: -30px;
    color: var(--hotel-accent);
}

.summer-slide-description-item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: #2f2f2f;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.summer-slide-button-wrapper {
    margin-bottom: 20px;
}

.summer-slide-button {
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    background: #2f2f2f;
    color: #FFFFFF;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    border-radius: 6px;
}

.summer-slide-button:hover {
    background: var(--hotel-accent-2);
    color: #2f2f2f;
}

.summer-slider-navigation {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 10px;
}

.summer-slider-nav-button {
    background: transparent;
    border: 1px solid transparent;
    color: #2F2F2F;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 4px 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}

.summer-slider-nav-button:focus {
    border: 1px solid #2F2F2F;
    background: #FFFFFF;
    color: #2F2F2F
}
.summer-slider-nav-button .arrow {
    display: flex;
    align-items: center;
}
.summer-slider-nav-button .arrow img {
    display: block;
    width: auto;
    height: 48px;
}

.summer-slider-nav-button.prev {
    flex-direction: row;
    background: var(--hotel-accent-35);
    box-shadow: none;
}
.summer-slider-nav-button:hover.prev {
    border: 1px solid #2F2F2F;
}

.summer-slider-nav-button.next {
    flex-direction: row-reverse;
    text-align: right;
}
.summer-slider-nav-button:hover.next {
    border: 1px solid #2F2F2F;
    background: #FFFFFF;
    color: #2F2F2F;
}

.summer-slider-nav-text {
    display: flex;
    gap: 8px;
}

.summer-slider-nav-label {
    font-size: 18px;
    color: #2F2F2F;
}
.summer-slider-navigation .summer-slider-nav-button.next .summer-slider-nav-text {
    font-weight: 500 !important;
}

.summer-slider-nav-title {
    font-size: 18px;
    font-weight: 300;
    max-width: min(290px, 100%);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .summer-slide-content {
        padding: 30px 40px;
    }
    
    .summer-slide-title {
        font-size: 26px;
    }
    
    .summer-slide-description-item p {
        font-size: 15px;
        line-height: 27px;
    }
    
    .summer-slider-navigation {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .summer-slider-section {
        height: auto;
        margin: 30px 0 60px;
    }
    
    .summer-slider-wrapper {
        height: auto;
    }
    
    .summer-slide {
        position: static;
        height: auto;
        display: none;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
    }
    
    .summer-slide.active {
        display: flex;
    }
    
    .summer-slide-background {
        position: relative;
        left: 0;
        width: 100%;
        height: 350px;
        order: 2;
    }
    
    .summer-slide-left-panel {
        display: none;
    }
    
    .summer-slide-header {
        flex-direction: column;
    }
    .summer-slide-counter {
        justify-content: center;
        width: 100%;
    }
    
    .summer-slide-counter-line {
        flex: 1;
        min-width: 0;
        width: auto;
    }
    
    .summer-slide-counter-line-fill {
        background: var(--hotel-accent);
    }
    
    .summer-slide-view-container {
        position: relative;
        order: 1;
        background: #fff;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 14px;
        box-sizing: border-box;
    }
    
    .summer-slide-content {
        padding: 0;
        height: auto;
        max-width: 100%;
        gap: 30px;
    }
    
    .summer-slide-main-content {
        text-align: center;
        gap: 20px;
    }
    
    .summer-slide-title {
        font-size: 30px;
        line-height: 34px;
        font-weight: 300;
    }
    
    .summer-slide-description-list {
        gap: 5px !important;
    }
    
    .summer-slide-description-item p {
        font-size: 16px;
        line-height: 26px;
        text-align: left;
    }
    
    .summer-description-arrow {
        margin-top: -15px;
        font-size: 28px;
    }
    
    .summer-slide-button {
        text-align: center;
        width: fit-content;
        max-width: none;
        padding: 16px 20px;
    }
    
    .summer-slider-navigation {
        margin-top: 0;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .summer-slider-nav-button {
        width: 70px;
        height: 50px;
        justify-content: center;
        padding: 10px;
    }
    
    .summer-slider-nav-text,
    .summer-slider-nav-label,
    .summer-slider-nav-title {
        display: none;
    }
}
