.hotel-offers-section {
    width: 100%;
    padding: 80px 0 150px 0;
    font-family: "Monserrat", Sans-serif !important;
}

.hotel-offers-container {
    max-width: 1348px;
    padding: 0 80px;
    margin: 0 auto;
}

.hotel-offers-header {
    text-align: center;
    margin-bottom: 10px;
}

.hotel-offers-title {
    font-size: 42px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.hotel-offers-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hotel-offers-switch {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}

.hotel-offers-switch-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #D9D0C4;
    border: 1px solid #D9D0C4;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.35s ease;
    z-index: 0;
    pointer-events: none;
}

.hotel-offers-switch-btn {
    position: relative;
    z-index: 1;
    padding: 12px 30px;
    background: #FFFFFF;
    color: #616161;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    transition: color 0.6s ease, border-color 0.3s ease, opacity 0.3s ease;
    text-align: center;
    min-width: 200px;
    opacity: 0.5;
}

.hotel-offers-switch-btn:first-of-type:not(:last-of-type) {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.hotel-offers-switch-btn:last-of-type:not(:first-of-type) {
    border-radius: 0 6px 6px 0;
}

.hotel-offers-switch-btn:only-of-type {
    border-radius: 6px;
}

.hotel-offers-switch-btn.active {
    background: transparent;
    color: #2F2F2F;
    border-color: transparent;
    opacity: 1;
}

.hotel-offers-switch-btn:hover:not(.active) {
    background: #F5F5F5;
    color: #2F2F2F;
    opacity: 1;
}

.hotel-offers-list {
    display: none;
    flex-direction: column;
    gap: 60px;
}

.hotel-offers-list.active {
    display: flex;
}


.hotel-offer-card {
    display: grid;
    grid-template-columns: 295px 1fr auto;
    gap: 60px;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #D1C5B5;
}

.hotel-offer-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hotel-offer-image {
    width: 295px;
    height: 270px;
    border-radius: 6px;
    overflow: hidden;
}

.hotel-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-offer-content {
    flex: 1;
}

.hotel-offer-name {
    font-size: 30px;
    font-weight: 400;
    color: #2F2F2F;
    margin: 0 0 20px;
}

.hotel-offer-text {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
    margin: 0;
}

.hotel-offer-link {
    color: var(--hs-color-primary, #A8875E);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: underline !important;
    display: inline-block;
    margin-top: 20px;
}

.hotel-offer-arrow a{
    width: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F2F2F;
    font-size: 70px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hotel-offer-card:hover .hotel-offer-arrow a {
    transform: translateX(15px);
}

.hotel-offer-arrow a:hover {
    color: #A8875E;
}
@media (max-width: 992px) {
    .hotel-offer-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hotel-offer-image {
        width: 100%;
        height: 290px;
    }
    
    .hotel-offer-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hotel-offers-container {
        padding: 0 14px;
    }
    .hotel-offers-section {
        padding: 40px 0;
    }
    
    .hotel-offers-title {
        font-size: 32px;
    }
    
    .hotel-offers-header {
        margin-bottom: 40px;
    }
    
    .hotel-offers-list{
        gap: 0;
    }

    /* Мобилен дизайн: бутоните вертикално, един под друг */
    .hotel-offers-switch {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 40px;
        align-items: center;
        border-bottom: 1px solid #D1C5B533;
        padding-bottom: 40px;
    }
    
    .hotel-offers-switch-slider {
        display: none;
    }
    
    .hotel-offers-switch-btn {
        width: 240px;
        padding: 6px 10px;
        font-size: 16px;
        border-radius: 6px;
        border: 1px solid transparent;
        opacity: 1;
    }
    
    .hotel-offers-switch-btn:first-child,
    .hotel-offers-switch-btn:last-child {
        border-radius: 6px;
        border-right: 1px solid transparent;
    }
    
    .hotel-offers-switch-btn.active {
        background: #D1C5B5;
        color: #524F4A;
        border-color: #D1C5B5;
    }
    
    .hotel-offers-switch-btn:not(.active) {
        background: #F7F7F7;
        color: #BBBBBB;
        border-color: #E8E8E8;
    }
    
    .hotel-offers-switch-btn:hover:not(.active) {
        background: #F0F0F0;
        color: #999999;
    }
    
    .hotel-offer-name {
        font-size: 20px;
    }
    
    /* Слайдър за мобилно – ако има повече от 1 оферта */
    .hotel-offers-list {
        position: relative;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hotel-offers-slider-wrapper {
        display: flex !important;
        transition: transform 0.3s ease;
        gap: 0 !important;
        will-change: transform;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
    }

    .hotel-offers-list .hotel-offer-card {
        min-width: 0 !important;
        max-width: none !important;
        width: auto !important;
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: stretch !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        border-bottom: none !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .hotel-offers-list .hotel-offer-card > *:not(.hotel-offer-arrow) {
        box-sizing: border-box !important;
    }

    .hotel-offers-list .hotel-offer-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        flex-shrink: 1 !important;
        text-align: center !important;
    }

    .hotel-offers-list .hotel-offer-image {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
        flex-shrink: 1 !important;
        overflow: hidden !important;
    }

    .hotel-offers-list .hotel-offer-image img {
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
        display: block !important;
        box-sizing: border-box !important;
        border-radius: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hotel-offers-list .hotel-offer-text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin: 0 !important;
        flex-shrink: 1 !important;
        overflow: hidden !important;
    }

    .hotel-offers-list .hotel-offer-name {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        flex-shrink: 1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hotel-offers-list .hotel-offer-link {
        display: inline-block !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
    }

    .hotel-offers-list .hotel-offer-text p {
        margin: 0 !important;
        padding: 0 !important;
    }

    .hotel-offers-list .hotel-offer-arrow {
        display: none !important;
    }

    .hotel-offers-slider-arrows {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 0;
        margin: -30px 0 20px;
    }

    .hotel-offers-slider-arrow {
        width: auto;
        height: auto;
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: opacity 0.3s ease;
        color: #2F2F2F;
        padding: 0;
        user-select: none;
    }

    .hotel-offers-slider-arrow:hover,
    .hotel-offers-slider-arrow:active {
        background-color: transparent;
    }

    .hotel-offers-slider-arrow.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

    .hotel-offers-slider-arrow img {
        width: auto;
        height: 80px;
        display: block;
        transition: opacity 0.3s ease;
    }

    .hotel-offers-slider-arrow:hover img {
        opacity: 0.7;
    }

    .hotel-offers-slider-arrow.disabled img {
        opacity: 0.3;
    }
}

/* Desktop – слайдърът да не се прилага */
@media (min-width: 769px) {
    .hotel-offers-section .hotel-offers-slider-wrapper {
        display: flex !important;
        flex-direction: column !important;
        transform: none !important;
        gap: 60px !important;
        overflow: visible !important;
    }
    .hotel-offers-section .hotel-offers-slider-arrows {
        display: none !important;
    }
}

.hotel-offers-button-wrapper {
    text-align: center;
    margin-top: 60px;
}

.hotel-offers-view-all-btn {
    display: inline-block;
    padding: 18px 30px;
    background-color: transparent;
    color: #2F2F2F;
    border: 1px solid #D1C5B5;
    font-size: 16px;
    font-weight: 300;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hotel-offers-view-all-btn:hover {
    background-color: #D1C5B5;
    color: #2f2f2f;
    border: 1px solid #D1C5B5;
}

@media (max-width: 768px) {
    .hotel-offers-button-wrapper {
        margin-top: 40px;
    }
    
    .hotel-offers-view-all-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
