/* ====================================
   COMPLEX DETAIL PAGE STYLES
   ==================================== */

/* ====================================
   BASE CONTAINER
   ==================================== */
   .container {
    margin: 0 auto;
}

@media (max-width: 1752px) {
    .container {
        width: 100% !important;
        max-width: unset !important;
        padding: 0 15px;
    }
}

/* ====================================
   PAGE CONTAINER
   ==================================== */
.page-container {
    margin-top: 105px;
}

@media (max-width: 480px) {
    .page-container {
        margin-top: 78px;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */
.complex-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.complex-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(0.5);
}

.complex-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.complex-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max-width);
    height: fit-content;
}

@media (max-width: 1752px) {
    .complex-hero__content {
        width: 100% !important;
        max-width: unset !important;
    }
}

.complex-hero__inner {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.complex-hero__branding {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

.complex-hero__logo {
    flex-shrink: 0;
}

.complex-hero__logo img {
    width: auto;
    height: 125px;
    object-fit: contain;
}

.complex-hero__name {
    font-family: var(--font-family-secondary);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

/* ====================================
   SECTION TITLES
   ==================================== */
.section-title {
    font-size: 84px;
    font-weight: 800;
    line-height: 125%;
    color: var(--color-primary);
    text-align: center;
    font-family: var(--font-family-secondary);
    margin-bottom: 56px;
}

.title-eat {
    margin-bottom: 16px;
}

/* ====================================
   COMPLEX DESCRIPTION SECTION
   ==================================== */
.complex-description {
    padding: 60px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.complex-description__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 0;
}

.complex-description__image {
    position: relative;
}

.complex-description__image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.08;
    border-radius: 24px;
    z-index: -1;
}

.complex-description__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4.5 / 4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.complex-description__image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.complex-description__text {
    position: relative;
}

.complex-description__text::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.complex-description__title {
    font-family: var(--font-family-secondary);
    font-weight: 800;
    font-size: 44px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.complex-description__paragraphs {
    color: #333;
}

.complex-description__paragraphs p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
}

.complex-description__paragraphs p:first-of-type {
    font-size: 19px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 22px;
}

.complex-description__paragraphs p:last-child {
    margin-bottom: 0;
}

/* Feature Cards */
.complex-description__features {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d9347 100%);
    border-radius: 11px;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-content {
    text-align: left;
}

.feature-value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 3px;
    font-family: var(--font-family-secondary);
}

.feature-label {
    font-size: 13px;
    color: #666;
    line-height: 1.2;
    font-weight: 500;
}

/* ====================================
   ACCOMMODATION SECTION
   ==================================== */
.accommodation {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 0;
}

.room-types-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.room-type-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.room-type-item:last-child {
    margin-bottom: 0;
}

.room-type-info {
    flex: 1;
    min-width: 0;
    padding: 0;
}

.room-type-name {
    font-size: 32px;
    font-weight: 900;
    color: #2A2F2C;
    margin-bottom: 24px;
    font-family: var(--font-family-secondary);
    letter-spacing: 1.5px;
    line-height: 1;
}

.room-features {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.feature {
    border: 1px solid var(--color-primary);
    border-radius: 500px;
    color: var(--color-primary);
    padding: 9px 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}

.room-details {
    margin-bottom: 20px;
}

.room-detail {
    display: flex;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.1;
}

.detail-label {
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 16px;
}

.detail-value {
    color: #333;
}

.room-description {
    color: #000000;
    font-size: 18px;
    line-height: 125%;
    margin-bottom: 24px;
    max-width: 706px;
}

/* ====================================
   UNIVERSAL GALLERY STYLES
   (for rooms, leisure, services)
   ==================================== */
.room-gallery,
.leisure-gallery,
.service-gallery {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 847px;
}

.main-room-image,
.main-leisure-image,
.main-service-image {
    width: 575px;
    max-width: 100%;
    aspect-ratio: 575 / 635;
}

.main-room-image img,
.main-leisure-image img,
.main-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
    display: block;
}

.room-thumbnails,
.leisure-thumbnails,
.service-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 262px;
    max-width: 100%;
}

.room-thumbnails img,
.leisure-thumbnails img,
.service-thumbnails img {
    width: 100%;
    aspect-ratio: 262 / 205;
    object-fit: cover;
    border-radius: 45px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block;
}

.room-thumbnails img:hover,
.leisure-thumbnails img:hover,
.service-thumbnails img:hover {
    opacity: 0.8;
}

/* ====================================
   SINGLE PHOTO LAYOUT
   Якщо є тільки одне фото без thumbnails
   ==================================== */
.room-gallery > .main-room-image:only-child,
.leisure-gallery > .main-leisure-image:only-child,
.service-gallery > .main-service-image:only-child {
    width: 100%;
    max-width: 847px;
    aspect-ratio: 847 / 635;
}

.room-gallery > .main-room-image:only-child img,
.leisure-gallery > .main-leisure-image:only-child img,
.service-gallery > .main-service-image:only-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
}

/* ====================================
   LEISURE SECTION
   ==================================== */
.leisure {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 0;
}

.leisure-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.leisure-left {
    flex: 1;
    min-width: 0;
}

.leisure-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.leisure-tag {
    border: 1px solid var(--color-primary);
    border-radius: 500px;
    color: var(--color-primary);
    padding: 9px 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}

.leisure-description {
    color: #000000;
    font-size: 18px;
    line-height: 125%;
    max-width: 701px;
}

.leisure-description p {
    margin-bottom: 20px;
}

.leisure-description p:last-child {
    margin-bottom: 0;
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-info {
    flex: 1;
    min-width: 0;
}

.service-name {
    font-size: 32px;
    font-weight: 900;
    color: #2A2F2C;
    margin-bottom: 24px;
    font-family: var(--font-family-secondary);
    letter-spacing: 1.5px;
    line-height: 1;
}

.service-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-description {
    color: #333;
    font-size: 18px;
    line-height: 125%;
    margin-bottom: 24px;
    max-width: 706px;
}

/* ====================================
   DINING SECTION
   ==================================== */
.dining {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 0;
}

.dining-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    background: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 25px;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: #fff;
}

.dining-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.dining-left {
    flex: 1;
}

.dining-right {
    flex-shrink: 0;
}

.dining-description {
    color: #000000;
    font-size: 18px;
    line-height: 125%;
    max-width: 701px;
}

.dining-description p {
    margin-bottom: 20px;
}

/* Menu Swiper */
.menu-swiper-container {
    position: relative;
    width: 100%;
    max-width: 575px;
}

.menu-swiper {
    width: 100%;
    aspect-ratio: 575 / 635;
    position: relative;
    border-radius: 45px;
    overflow: visible;
}

.menu-swiper .swiper-wrapper {
    height: 100%;
}

.menu-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.menu-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
    display: block;
}

/* Menu Swiper Navigation */
.menu-button-prev,
.menu-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--color-primary);
}

.menu-button-prev {
    left: 10px;
}

.menu-button-next {
    right: 10px;
}

.menu-button-prev:hover,
.menu-button-next:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.menu-button-prev.swiper-button-disabled,
.menu-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Menu Swiper Pagination */
.menu-pagination {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.menu-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #C8DCCB;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.menu-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* ====================================
   EVENTS SECTION
   ==================================== */
.events {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.event-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1138px;
}

.event-image {
    position: relative;
    flex: 0 0 468px;
    aspect-ratio: 4 / 3; /* або будь-яке інше співвідношення */
    overflow: hidden;
  }

  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.event-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    /* flex-direction: column; */
    
    gap: 12px;
}

.event-date,
.event-location {
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #89898961;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    gap: 5px;
    display: flex;
    align-items: center;
}

.event-info {
    flex: 1;
    background: var(--color-primary);
    color: #fff;
    padding: 50px 24px ;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.25;
}

.event-description {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 32px;
 
}

.event-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 400;
    font-size: 18px;
    align-self: flex-start;
}

.event-link:hover {
    opacity: 0.8;
}
/* ====================================
   REVIEWS SECTION
   ==================================== */
.reviews {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 0;
}

.reviews-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-direction: column;
}

.reviews-left {
    width: 100%;
}

.reviews-right {
    flex: 1;
    width: 100%;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 289px;
    width: fit-content;
    gap: 24px;
    border-radius: 24px;
    padding: 18px 26px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.rating-summary-con {
    display: flex;
    flex-direction: row;
    gap: 13px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
}

.rating-score {
    font-size: 43px;
    font-weight: 400;
    line-height: 100%;
    color: #000000A6;
    width: fit-content;
}

.rating-stars {
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    margin-bottom: 3px;
}

.star {
    font-size: 24px;
    line-height: 1;
    color: #ddd;
}

.star--filled {
    color: var(--color-primary);
}

.star--filled-white {
    color: var(--color-white);
}

.star--partial {
    background: linear-gradient(90deg, #46A351 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-count {
    font-size: 16px;
    line-height: 1;
    color: #0000008C;
}

/* Reviews Swiper Container */
.reviews-swiper {
    position: relative;
    width: 100%;
    padding: 0 0 50px 0; /* Без відступів для стрілок */
}

.reviews-swiper .swiper-wrapper {
    margin-bottom: 40px;
    display: flex !important;
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.reviews-swiper .review-card {
    width: 100%;
    height: 100%;
}

.review-card {
    background-color: var(--color-primary);
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.review-avatar {
    display: flex;
}

.review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    width: 58px;
    border-radius: 58px;
    margin-right: 12px;
    background: #D9D9D9;
}
.review-info {
        display: flex;
    flex-direction: column;
    justify-content: center;
}
.review-author {
    font-size: 16px;
    font-weight: 600;
    /* margin-bottom: 10px; */
}

.review-text {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Reviews Swiper Navigation - Hidden */
.reviews-button-prev,
.reviews-button-next {
    display: none;
}

/* Reviews Swiper Pagination */
.reviews-pagination {
    position: relative;
    bottom: -5px;
    text-align: center;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #C8DCCB;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    /* width: 32px; */
    /* border-radius: 6px; */
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 18px 32px;
    border: none;
    line-height: 1.2;
    border-radius: 45px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    max-width: 372px;
    width: 100%;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
}

.btn--primary:hover {
    background-color: #3a8a44;
    transform: translateY(-2px);
}

/* ====================================
   RESPONSIVE: 1400px
   ==================================== */
@media (max-width: 1400px) {
    .room-gallery,
    .leisure-gallery,
    .service-gallery {
        flex-direction: column;
        width: 100%;
    }

    .main-room-image,
    .main-leisure-image,
    .main-service-image {
        width: 100%;
        max-width: 100%;
    }

    .room-thumbnails,
    .leisure-thumbnails,
    .service-thumbnails {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .room-thumbnails img,
    .leisure-thumbnails img,
    .service-thumbnails img {
        flex: 1;
        width: calc((100% - 20px) / 3);
    }

    /* Single photo - full width на планшетах */
    .room-gallery > .main-room-image:only-child,
    .leisure-gallery > .main-leisure-image:only-child,
    .service-gallery > .main-service-image:only-child {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 575 / 635;
    }
}

/* ====================================
   RESPONSIVE: 1300px
   ==================================== */
@media (max-width: 1300px) {
    .reviews-swiper {
        padding: 0 0 50px 0;
    }

    /* Menu Swiper - рівномірне зменшення */
    .dining-right {
        flex-shrink: 1;
    }

    .menu-swiper-container {
        max-width: 480px;
    }

}

/* ====================================
   RESPONSIVE: 1000px
   ==================================== */
@media (max-width: 1000px) {
    .section-title {
        font-size: 64px;
        margin-bottom: 40px;
    }

    .complex-description,
    .accommodation,
    .dining,
    .leisure,
    .events,
    .services,
    .reviews {
        padding: 56px 0;
    }

    .room-types-list,
    .services-list {
        gap: 40px;
    }

    .room-type-item,
    .service-item,
    .leisure-content,
    .dining-content {
        gap: 40px;
    }

    /* Complex Description - БЕЗ фото на планшетах */
    .complex-description__content {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 900px;
        margin: 0 auto;
    }

    .complex-description__image {
        display: none;
    }

    .complex-description__text {
        text-align: center;
    }

    .complex-description__text::before {
        display: block;
        margin: 0 auto 24px;
    }

    .complex-description__title {
        font-size: 40px;
    }

    .complex-description__features {
        justify-content: center;
        gap: 20px;
        margin-top: 36px;
    }

    .feature-item {
        flex: 0 1 calc(33.333% - 14px);
        min-width: 170px;
    }

    /* Menu Swiper - продовжуємо зменшення */
    .menu-swiper-container {
        max-width: 420px;
    }
}

/* ====================================
   RESPONSIVE: TABLETS (768px)
   ==================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .complex-description,
    .accommodation,
    .dining,
    .leisure,
    .events,
    .services,
    .reviews {
        padding: 48px 0;
    }

    .complex-hero {
        display: flex;
        flex-direction: column-reverse;
        min-height: 400px;
        /* padding-bottom: 15px; */
    }

    .section-title {
        font-size: 48px;
        margin-bottom: 40px;
    }
    .title-eat {
        margin-bottom: 16px;
    }
    

    .complex-hero__branding {
        display: flex;
        position: absolute;
        gap: 16px;
    }

    .complex-hero__background {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        filter: none;
        margin: 0 auto;
        width: calc(100vw - 30px);
    }

    .complex-hero__image {
        filter: brightness(0.5);
        border-radius: 25px;
    }

    .complex-hero__logo img {
        width: auto;
        height: 135px;
    }

    .complex-hero__name {
        font-size: 32px;
    }

    .complex-description__content {
        flex-direction: column;
        gap: 32px;
    }

    .complex-description__image {
        display: none;
    }

    .complex-description__text {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .complex-description__text::before {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }

    .complex-description__title {
        font-size: 32px;
        margin: 12px 0 20px 0;
    }

    .complex-description__paragraphs p {
        font-size: 18px;
    }

    .complex-description__features {
        gap: 16px;
        justify-content: center;
    }

    .feature-item {
        flex: 0 1 calc(50% - 8px);
        min-width: 160px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-value {
        font-size: 22px;
    }

    .feature-label {
        font-size: 12px;
    }

    .room-type-item {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .room-types-list {
        gap: 40px;
    }

    .services-list {
        gap: 40px;
    }

    .room-type-info {
        width: 100%;
    }

    .room-description {
        margin-bottom: 24px;
    }

    .room-gallery,
    .leisure-gallery,
    .service-gallery {
        flex-direction: column;
        width: 100%;
    }

    .main-room-image,
    .main-leisure-image,
    .main-service-image {
        width: 100%;
        aspect-ratio: 708 / 635;
        display: flex;
    }

    .main-room-image img,
    .main-leisure-image img,
    .main-service-image img {
        width: 100%;
        height: 100%;
        border-radius: 45px;
    }

    .room-thumbnails,
    .leisure-thumbnails,
    .service-thumbnails {
        flex-direction: row;
        width: 100%;
        height: auto;
        gap: 10px;
    }

    .room-thumbnails img,
    .leisure-thumbnails img,
    .service-thumbnails img {
        flex: 1;
        width: calc((100% - 20px) / 3);
        height: auto;
        aspect-ratio: 229 / 205;
        border-radius: 45px;
    }

    /* Single photo - full width на tablets */
    .room-gallery > .main-room-image:only-child,
    .leisure-gallery > .main-leisure-image:only-child,
    .service-gallery > .main-service-image:only-child {
        width: 100%;
    }

    .leisure-content,
    .service-item {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .leisure-left,
    .service-info {
        width: 100%;
    }

    .dining-content {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .dining-right {
        flex: none;
        width: 100%;
    }

    .dining-filters {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: 16px;
    }

    /* Menu Swiper - Tablets */
    .menu-swiper-container {
        width: 100%;
        max-width: 100%;
    }

    .menu-swiper {
        aspect-ratio: 708 / 635;
    }

    .menu-image img {
        border-radius: 45px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-image {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .event-image img {
        height: 100%;
    }

    .event-info {
        padding: 30px 20px;
    }

    .event-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .event-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .reviews-content {
        flex-direction: column;
        gap: 32px;
    }

    .reviews-left {
        flex: none;
        width: 100%;
    }

    .reviews-swiper {
        padding: 0 0 40px 0;
    }

    .review-card {
        padding: 18px;
    }

    .review-avatar {
        align-self: left;
    }

    .room-type-name {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .room-features {
        margin-bottom: 24px;
    }

    .feature {
        font-size: 16px;
        padding: 8px 14px;
    }

    .room-detail {
        font-size: 16px;
    }

    .room-description {
        font-size: 16px;
    }

    .service-name {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-description {
        font-size: 16px;
    }

    .leisure-tag {
        font-size: 16px;
        padding: 8px 14px;
    }

    .leisure-description,
    .dining-description {
        font-size: 16px;
    }

    .btn {
        font-size: 20px;
        padding: 16px 28px;
        max-width: none;
    }

    /* Rating Summary - Full Width Layout */
    .rating-summary {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 24px;
        padding-left: 110px;
        gap: 18px;
        background: linear-gradient(135deg, #46A351 0%, #3d9347 100%);
        position: relative;
        overflow: hidden;
        box-shadow: 0px 6px 12px rgba(70, 163, 81, 0.3);
        flex-direction: column;
        align-items: stretch;
    }

    .rating-summary::before {
        content: '★';
        font-size: 80px;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 1;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
        color: white;
    }

    .rating-summary-con {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        flex: none;
    }

    .rating-score {
        font-size: 56px;
        color: #FFFFFF;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        min-width: 80px;
    }

    .rating-info {
        align-items: flex-start;
        flex: 1;
    }

    .rating-stars {
        margin-bottom: 6px;
        gap: 2px;
    }

    .star {
        font-size: 26px;
        color: rgba(255, 255, 255, 0.3);
    }

    .star--filled {
        color: #ffffff;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .star--partial {
        background: linear-gradient(90deg, #FFD700 50%, rgba(255, 255, 255, 0.3) 50%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .rating-count {
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        font-weight: 500;
    }

    .rating-summary .btn {
        width: 100%;
        background: #FFFFFF;
        color: var(--color-primary);
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    .rating-summary .btn:hover {
        background: #f8f8f8;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

}

@media (min-width: 768px) {
    .service-item {
        align-items: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .breadcrumb-container--complex-detail .breadcrumb--dark .breadcrumb__link {
        color: #000000;
    }

    .breadcrumb-container--complex-detail .breadcrumb__separator svg path {
        stroke: #BDC1C0;
    }

    .breadcrumb-container--complex-detail .breadcrumb--dark .breadcrumb__current {
        color: #000000;
    }

    .breadcrumb-container--complex-detail .page-title {
        color: var(--color-primary) !important;
    }
}

/* ====================================
   RESPONSIVE: MOBILE (480px)
   ==================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .complex-hero {
        min-height: 430px;
        position: relative;
        justify-content: flex-end;
        flex-direction: column-reverse;
        padding-bottom: 15px;

    }

    .breadcrumb-container--complex-detail .page-title {
        margin-bottom: 0;
    }

    .complex-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: var(--hero-bg-image);
        background-size: cover;
        background-position: center;
        filter: brightness(0.5);
        z-index: 0;
    }

    .complex-hero__image {
        display: none;
    }

    .complex-hero__content {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .complex-hero__inner {
        width: 100%;
    }

    .complex-hero__background {
        z-index: 4;
        margin: auto;
        width: 100%;
    }

    .complex-hero__branding {
        display: flex;
        gap: 12px;
        margin: 0;
        padding: 0 !important;
        flex-direction: column;
        text-align: center;
        position: relative;
    }

    .complex-hero__name {
        display: none;
        color: #FFFFFF;
    }

    .complex-description,
    .accommodation,
    .dining,
    .leisure,
    .events,
    .services,
    .complex-reviews,
    .complex-contact,
    .faq {
        padding: 32px 0;
    }

    .section-title,
    .complex-reviews__title,
    .complex-contact__title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .complex-description__content {
        flex-direction: column;
        gap: 24px;
    }

    .complex-description__image {
        display: none;
    }

    .complex-description__text {
        max-width: 100%;
        text-align: center;
    }

    .complex-description__text::before {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }

    .complex-description__title {
        font-size: 24px;
        margin: 10px 0 16px 0;
    }

    .complex-description__paragraphs p {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 16px;
    }

    .complex-description__features {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .feature-item {
        flex: 1 1 100%;
        width: 100%;
        min-width: auto;
        padding: 16px 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-value {
        font-size: 20px;
    }

    .feature-label {
        font-size: 11px;
    }

    .room-type-name {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .room-features {
        margin-bottom: 16px;
    }

    .feature {
        font-size: 14px;
        padding: 7px 14px;
    }

    .room-details {
        margin-bottom: 14px;
    }

    .room-detail {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .room-description {
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 18px;
    }

    .room-type-item {
        gap: 24px;
    }

    .room-types-list {
        gap: 32px;
    }

    .services-list {
        gap: 32px;
    }

    .room-gallery,
    .leisure-gallery,
    .service-gallery {
        gap: 10px;
    }

    .main-room-image img,
    .main-leisure-image img,
    .main-service-image img {
        border-radius: 16px;
    }

    .room-thumbnails,
    .leisure-thumbnails,
    .service-thumbnails {
        gap: 10px;
    }

    .room-thumbnails img,
    .leisure-thumbnails img,
    .service-thumbnails img {
        width: calc((100% - 20px) / 3);
        border-radius: 16px;
    }

    /* Single photo - на мобільних */
    .room-gallery > .main-room-image:only-child,
    .leisure-gallery > .main-leisure-image:only-child,
    .service-gallery > .main-service-image:only-child {
        width: 100%;
        aspect-ratio: auto;
        height: auto;
        max-height: 500px;
    }

    .room-gallery > .main-room-image:only-child img,
    .leisure-gallery > .main-leisure-image:only-child img,
    .service-gallery > .main-service-image:only-child img {
        border-radius: 16px;
    }

    .dining-filters {
        gap: 8px;
        margin-bottom: 24px;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 14px;
    }

    .dining-description,
    .leisure-description {
        font-size: 14px;
        line-height: 140%;
    }

    .dining-description p,
    .leisure-description p {
        margin-bottom: 14px;
    }

    .leisure-tag {
        font-size: 14px;
        padding: 7px 14px;
    }

    .leisure-tags {
        margin-bottom: 20px;
    }

    /* Menu Swiper - Mobile */
    .menu-swiper-container {
        width: 100%;
        max-width: 100%;
        padding-bottom: 50px;
    }

    .menu-swiper {
        width: 100%;
        height: auto;
        max-height: 500px;
        aspect-ratio: auto;
    }

    .menu-image {
        width: 100%;
        height: auto;
        max-height: 500px;
    }

    .menu-image img {
        width: 100%;
        height: auto;
        max-height: 500px;
        border-radius: 16px;
    }

    .menu-button-prev,
    .menu-button-next {
        width: 40px;
        height: 40px;
    }

    .menu-pagination {
        bottom: -35px;
    }

    .event-card {
        margin-bottom: 0;
    }

    .event-image {
        aspect-ratio: 16 / 9;
    }

    .event-image img {
        width: 100%;
        height: 100%;
    }

    .event-info {
        padding: 20px 16px;
    }

    .event-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .event-description {
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 16px;
    }

    .event-link {
        font-size: 14px;
    }

    .event-date,
    .event-location {
        font-size: 14px;
        padding: 6px 12px;
    }

    .events-list {
        gap: 24px;
    }

    .service-name {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .service-description {
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 18px;
    }

    .service-badge {
        font-size: 12px;
        padding: 5px 10px;
        margin-bottom: 14px;
    }

    .services-list {
        gap: 50px;
    }

    /* Rating Summary - Mobile Full Width Layout */
    .rating-summary {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        min-height: 105px;
        padding: 20px;
        margin-bottom: 20px;
        gap: 16px;
        background: #FFFFFF;
        position: relative;
        overflow: visible;
        box-shadow: 0px 3px 6px 0px #0000001A,
                    1px 10px 10px 0px #00000017,
                    2px 23px 14px 0px #0000000D,
                    3px 42px 17px 0px #00000003,
                    5px 65px 18px 0px #00000000,
                    0px 1px 4px 0px #00000040;
        border-radius: 20px;
        flex-direction: column;
        align-items: stretch;
            align-items: center;
    }

    .rating-summary::before {
        display: none;
    }

    .rating-summary-con {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        flex: none;
    }

    .rating-score {
        font-size: 48px;
        color: #333333;
        font-weight: 700;
        text-shadow: none;
        min-width: auto;
        line-height: 1;
    }

    .rating-info {
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
    }

    .rating-stars {
        gap: 4px;
        margin-bottom: 6px;
    }

    .star {
        font-size: 24px;
        color: #E0E0E0;
    }

    .star--filled {
        color: var(--color-primary);
        filter: none;
    }

    .star--partial {
        background: linear-gradient(90deg, var(--color-primary) 50%, #E0E0E0 50%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .rating-count {
        color: #666666;
        font-size: 14px;
        font-weight: 500;
    }

    .rating-summary .btn {
        position: absolute;
        bottom: -22px;
        left: 0;
        right: 0;
        width: fit-content;
        background: var(--color-primary);
        color: #FFFFFF;
        font-weight: 700;
        box-shadow: none;
        transition: all 0.3s ease;
        font-size: 18px;
        padding: 14px 24px;
        border-radius: 45px;
        margin: 0 auto;
        
    }

    .rating-summary .btn:hover {
        background: #3d9347;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(70, 163, 81, 0.3);
    }

    .review-card {
        padding: 16px;
        gap: 12px;
    }

    .avatar-placeholder {
        width: 48px;
        height: 48px;
        margin-right: 10px;
    }

    .review-author {
        font-size: 14px;
        /* margin-bottom: 8px; */
    }

    .review-text {
        font-size: 13px;
        line-height: 140%;
    }

    .btn {
        font-size: 18px;
        padding: 14px 24px;
    }
}