.hotel-restaurants-section {
    width: 100%;
    padding: 80px 0;
    background-color: #F5F5F5A6;
    font-family: "Monserrat", Sans-serif !important;
}

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

.hotel-restaurants-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.hotel-restaurants-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.hotel-restaurants-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    padding: 30px;
    overflow-anchor: none; /* без автоматично скролване при промяна на височината */
}

.hotel-restaurant-item {
    border-bottom: 1px solid #0000001A;
    scroll-margin-top: 60px;
}

.hotel-restaurant-item:last-child {
    border-bottom: none;
}

.hotel-restaurant-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-restaurant-title-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hotel-restaurant-header:hover .hotel-restaurant-name {
    color: var(--hotel-accent);
}

.hotel-restaurant-name {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0;
    transition: color 0.3s ease;
}

.hotel-restaurant-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 25px;
    background: var(--hotel-accent-55);
    border-radius: 3px;
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;
}

.hotel-restaurant-item.active .hotel-restaurant-header .hotel-restaurant-name {
    font-size: 18px;
    font-weight: 400;
}

.hotel-restaurant-container-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #2F2F2F4D;
    border-radius: 50%;
}
.hotel-restaurant-toggle {
    font-size: 32px;
    color: #2F2F2F4D;
    transition: transform 0.3s ease;
    user-select: none;
    font-weight: 300;
}

.hotel-restaurant-item.active .hotel-restaurant-toggle {
    transform: rotate(180deg);
}

.hotel-restaurant-item.active .hotel-restaurant-header .hotel-restaurant-container-toggle {
    border-color: #2F2F2F;
}
.hotel-restaurant-item.active .hotel-restaurant-header .hotel-restaurant-toggle {
    color: #2F2F2F;
} 

.hotel-restaurant-content {
    max-height: 0;
    overflow: hidden;
}

.hotel-restaurant-item.active .hotel-restaurant-content {
    max-height: 2000px;
    padding-bottom: 25px;
}

.hotel-restaurant-accent-text {
    font-size: 16px;
    color: #2F2F2F;
    line-height: 22px;
}

.hotel-restaurant-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--hotel-accent-15);
    padding: 18px 40px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.hotel-restaurant-detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}

.hotel-restaurant-detail-item:first-child {
    padding-top: 0;
}

.hotel-restaurant-detail-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.hotel-restaurant-detail-icon {
    font-size: 22px;
    color: #2F2F2F;
    width: 30px;
    text-align: left;
    flex-shrink: 0;
}

.hotel-restaurant-detail-icon img {
    width: 100%;
    height: auto;
    max-height: 28px;
    object-fit: contain;
    display: block;
}

.hotel-restaurant-detail-label {
    font-size: 16px;
    font-weight: 400;
    color: #2F2F2F;
    margin-right: 5px;
}

.hotel-restaurant-detail-value {
    font-size: 16px;
    font-weight: 300;
    color: #616161;
    line-height: 1.5;
}

.hotel-restaurant-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
    margin-bottom: 30px;
}

.hotel-restaurant-menus {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
}

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

.hotel-restaurant-menu-btn.primary {
    background-color: #2F2F2F;
    color: #FFFFFF;
}

.hotel-restaurant-menu-btn:hover,
.hotel-restaurant-menu-btn.primary:hover {
    background-color: var(--hotel-accent-2);
    color: #2f2f2f;
    border-color: var(--hotel-accent-2);
}

.hotel-restaurants-gallery-column {
    position: sticky;
    top: 20px;
}

.hotel-restaurants-gallery-column.mobile {
    display: none;
}

.hotel-restaurant-gallery {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hotel-restaurant-gallery.active {
    display: grid;
}

.hotel-restaurant-gallery-item {
    width: 100%;
    height: 290px;
    border-radius: 6px;
    overflow: hidden;
}

.hotel-restaurant-gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    height: 250px;
}

.hotel-restaurant-gallery-item:nth-child(4) {
    grid-column: 1 / -1;
    height: 340px;
}

.hotel-restaurant-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hotel-restaurant-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.hotel-restaurant-extra-bars {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #D1C5B5;
}

.hotel-restaurant-bar-btn {
    padding: 12px 30px;
    background-color: transparent;
    color: #2F2F2F;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #D1C5B5;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hotel-restaurant-bar-btn:hover {
    background-color: var(--hotel-accent);
    color: #FFFFFF;
    border-color: var(--hotel-accent);
}
.hotel-restaurant-detail-title-container {
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 14px;
}
@media (max-width: 992px) {
    .hotel-restaurants-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hotel-restaurants-gallery-column:not(.mobile) {
        display: none;
    }
    
    .hotel-restaurants-gallery-column.mobile {
        display: block;
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery {
        grid-template-columns: 1fr 3fr;
        gap: 15px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item {
        width: 100%;
        height: auto;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(1) {
        grid-column: 1 / -1;
        height: 179px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(2) {
        height: 137px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(3) {
        height: 147px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(4) {
        grid-column: 1 / -1;
        height: 179px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(5) {
        height: 137px;
    }
    
    .hotel-restaurants-gallery-column {
        position: relative;
        top: 0;
    }
    
    .hotel-restaurant-gallery {
        grid-template-columns: 1fr;
    }
    
    .hotel-restaurant-gallery-item:first-child {
        grid-column: 1;
        height: 300px;
    }
    
    .hotel-restaurant-gallery-item {
        height: 250px;
    }
    .hotel-restaurant-menus{
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .hotel-restaurant-details{
        padding: 30px 16px;
    }
    .hotel-restaurant-detail-item{
        flex-direction: column;
        align-items: flex-start;
    }
    .hotel-restaurants-section {
        padding: 60px 0 90px 0;
    }
    .hotel-restaurant-item {
        padding: 0 15px;
    }
    .hotel-restaurants-accordion{
        padding: 0;
    }
    .hotel-restaurant-header{
        padding: 14px 7px;
        border-bottom: 1px solid #0000001A;
    }
    
    .hotel-restaurant-item.active .hotel-restaurant-header {
        border-bottom: none;
    }
    
    .hotel-restaurant-item:last-child .hotel-restaurant-header {
        border-bottom: none;
    }
    .hotel-restaurant-container-toggle{
        min-width: 30px;
        min-height: 30px;
    }
    .hotel-restaurant-detail-label{
        font-weight: 500;
    }
    .hotel-restaurant-detail-value{
        padding: 0 20px 0 45px;
    }
    .hotel-restaurant-item{
        border-bottom: none;
    }

    .hotel-restaurants-description p {
        margin-bottom: 0;
    }
    .hotel-restaurants-container{
        padding: 0 14px;
    }
    .hotel-restaurants-title {
        font-size: 32px;
    }
    
    .hotel-restaurants-header {
        margin-bottom: 40px;
    }
    
    .hotel-restaurant-name {
        font-size: 20px;
    }
    
    .hotel-restaurant-menus {
      display: none;
    }
    
    .hotel-restaurant-menu-btn,
    .hotel-restaurant-bar-btn {
        text-align: center;
        justify-content: center;
    }
    
    .hotel-restaurant-extra-bars {
        flex-direction: column;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery {
        grid-template-columns: 1fr 3fr;
        gap: 8px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item {
        width: 100%;
        height: auto;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(1) {
        grid-column: 1 / -1;
        height: 137px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(2) {
        height: 147px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(3) {
        height: 147px;
    }
    
    .hotel-restaurants-gallery-column.mobile .hotel-restaurant-gallery-item:nth-child(4) {
        grid-column: 1 / -1;
        height: 179px;
    }
    
}
