.slider-box {
    margin:150px 0 50px;
    padding:0 20px;
    position:relative;
    background:url('/images/green-fon.jpg') 50% 25% no-repeat;
}
.slider-box:before {
    content:'';
    position:absolute;
    width:290px;height:240px;
    top:-125px;left:calc(50% - 120px);
    background:url('/images/igro.png') 0 0 no-repeat;
    z-index:1000;
}
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius:20px;
    padding:60px 0 10px;
    background:#fdfaf3;
    border:5px solid #C62A32;
}
.slider-container h2 {
    text-align: center;
    margin-bottom:10px;
    color:#295D44;
    font-size:40px;
    position: relative;
    font-family: "Finlandica-Bold";
    font-weight:normal;
}
.slider-utochnenie {
    text-align:center;
    font-family: "Finlandica-Medium";
    font-size:21px;
    display:block;
    padding:0 20px;
    margin:0 auto 40px;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slide h2 {
    text-align: center;
    margin-bottom:20px;
    color:#333;
    font-family: "Finlandica-Bold";
    font-size:28px;
    position: relative;
    font-weight:normal;
    line-height:150%;
}
.slide-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom:5px;
}
.slide-image {
    width: 100%;
    max-width: 768px;
    height: 512px;
    object-fit: cover;
    border-radius: 10px;
}
.slide-content {
    padding:0 10px;
    text-align: center;
}
.slider-icon-user {
    position:relative;
    display:inline-block;
    margin:0 2px;
}
.slider-icon-user:before {
    content:'';
    position:absolute;
    width:42px;height:42px;
    top:-21px;left:-20px;
    background:url('/images/person.png') 0 0 no-repeat;
}
.slider-icon-plus {
    position:relative;
    display:inline-block;
    margin:0 0 0 12px;
}
.slider-icon-plus:before {
    content:'';
    position:absolute;
    width:42px;height:42px;
    top:-21px;left:-20px;
    background:url('/images/plus.png') 0 0 no-repeat;
}
.room-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position:relative;
}
.room-name i {
    color: #20c997;
    font-size: 1.5rem;
}
.pricing {
    position: relative;
    background:url('/images/podarochek.png') center 0 no-repeat;
    min-height:238px;
    margin-bottom:-40px;    
    width:273px;
    padding-top:30px;
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:center;
}
.old-price {
    text-decoration: line-through;
    font-size:20px;
    margin-bottom:10px;
    color: #ccc;
    font-family: "Finlandica-Regular";
    font-weight:normal;
    margin-top:60px;
}
.new-price {
    font-size:24px;
    color: #fff;
    font-family: "Finlandica-Medium";
    font-weight:normal;
}
.plus-price {
    font-size:18px;
    color: #fff;
    font-family: "Finlandica-Medium";
    font-weight:normal;
    margin-top:15px;
}

.gift-icon {
    position: absolute;
    top: -15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.slider-btn {
    position: absolute;
    top:45%;
    transform: translateY(-50%);
    background:#0b512f;
    border: none;
    width:80px;
    height:80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    border:5px solid #fdfaf3;
    transition: all 0.3s ease;
    z-index: 10;
}
.slider-btn:hover {
    background: #C62A32;
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.prev {
    left:25px;
}
.next {
    right:25px;
}
.snowflake {
    position: absolute;
    color: #0d6efd;
    font-size: 1.5rem;
    opacity: 0.7;
    z-index: -1;
}

@media (max-width: 900px) {
    .slide {
        min-width:auto;
        padding:0 20px;
        width:calc(100% - 40px);
    }
    .slider-btn {
        width:60px;
        height:60px;
        border:3px solid #fdfaf3;
    }
    .prev {
        left:5px;
    }
    .next {
        right:5px;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .slide-image {
        height: 250px;
    }
    
    .room-name {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 1.7rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .slider-container h2 {
        font-size:20px;
    }
    .slider-utochnenie {
        font-size:18px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }
    
    .slide-image {
        height: 200px;
    }
    
    .room-name {
        font-size: 1.3rem;
    }
    
    .new-price {
        font-size: 1.5rem;
    }
    .slider-box {
        padding:0;
    }
}