

/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/base.css?17895143612183*/
/* === БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ === */

/* Общие стили компонента */
.phoenix-object-detail {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

/* Контейнер с новой компоновкой: левый блок 80%, правый 20% */
.object-detail-container {
    display: grid;
    grid-template-columns: 80% 20%;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

.object-detail-main {
    width: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.object-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    animation: fadeInRight 0.6s ease-out;
}

.object-detail-full-width {
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out;
}

/* Общие элементы */
.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin: 50px 0;
    animation: shimmer 2s infinite;
}

/* Живые анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .object-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .object-detail-sidebar {
        position: relative;
        top: 0;
    }
    
    .phoenix-object-detail {
        width: 95%;
        padding: 20px 15px;
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/header.css?17895143611214*/
/* === ШАПКА ДЕТАЛЬНОЙ СТРАНИЦЫ === */

.detail-page-header {
    height: 300px;
    background: linear-gradient(135deg, #0052cc 0%, #ff4d4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.detail-header-content {
    width: 90%;
    max-width: 1600px;
    padding: 150px 24px 0;
    color: #ffffff;
    margin: 0 auto;
}

.detail-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.detail-header-meta {
    display: flex;
    gap: 24px;
    font-size: 16px;
}

.header-rating,
.header-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.header-rating i,
.header-location i {
    font-size: 14px;
}

.header-location-link {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.header-location-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.detail-return-link{display:inline-flex;align-items:center;gap:8px;margin:0 0 16px;color:#fff;text-decoration:none;font-weight:700}.detail-return-link:hover{text-decoration:underline}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/gallery.css?17895143618979*/
/* === ФОТОГАЛЕРЕЯ === */

.object-gallery {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 30px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 
        0 0 30px rgba(201, 162, 39, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Главное фото (слева, ~55%) */
.gallery-main {
    flex: 0 0 55%;
    height: 400px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.gallery-main:hover {
    border-color: #c9a227;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-no-photo {
    color: #666;
    font-size: 18px;
}

/* Панель превью (справа, ~45%) */
.gallery-thumbs-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

/* Сетка превью 3 колонки, ряды по контенту */
.gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(80px, auto);
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}

.gallery-thumbs-grid::-webkit-scrollbar {
    width: 4px;
}

.gallery-thumbs-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.gallery-thumbs-grid::-webkit-scrollbar-thumb {
    background: rgba(201, 162, 39, 0.5);
    border-radius: 2px;
}

.gallery-thumb {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.gallery-thumb:hover {
    border-color: #c9a227;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
    transform: scale(1.03);
}

.gallery-thumb.active {
    border-color: #c9a227;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.6);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навигация превью */
.gallery-thumbs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
}

.thumbs-nav-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.thumbs-nav-btn:hover {
    background: #e0e0e0;
}

.thumbs-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Счетчик */
.gallery-counter {
    text-align: center;
    font-size: 13px;
    color: #666;
    padding: 4px 0;
}

/* === LIGHTBOX === */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.gallery-lightbox.active {
    display: block !important;
    visibility: visible;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

/* Overlay лайтбокса галереи */
.gallery-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

/* Центральный контент лайтбокса */
.gallery-lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(100vw - 160px);
    z-index: 10;
}

/* Кнопка закрытия */
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #333;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gallery-lightbox-close:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

/* Стрелки навигации */
.gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gallery-lightbox-arrow:hover {
    background: #f0f0f0;
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-arrow-left {
    left: 30px;
}

.gallery-lightbox-arrow-right {
    right: 30px;
}

/* Контейнер картинки */
.gallery-lightbox-image-wrap {
    max-width: calc(100vw - 200px);
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image-wrap img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
}

/* Превью ПОД картинкой */
.gallery-lightbox-thumbs {
    display: flex;
    gap: 8px;
    max-width: 90%;
    overflow-x: auto;
    padding: 8px 0;
    margin-top: 12px;
    margin-bottom: 0;
    scrollbar-width: thin;
    scrollbar-color: #666 #333;
}

.gallery-lightbox-thumbs::-webkit-scrollbar {
    height: 6px;
}

.gallery-lightbox-thumbs::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.gallery-lightbox-thumbs::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 3px;
}

.gallery-lightbox-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    opacity: 0.5;
    transition: all 0.2s;
}

.gallery-lightbox-thumb:hover {
    opacity: 0.8;
    border-color: rgba(255,255,255,0.5);
}

.gallery-lightbox-thumb.active {
    opacity: 1;
    border-color: #ff385c;
}

.gallery-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Счетчик ПОД превью */
.gallery-lightbox-counter {
    color: #fff;
    font-size: 16px;
    margin-top: 8px;
    padding: 0;
}

/* === СЕКЦИЯ "ФОТОГРАФИИ ОТ ГОСТЕЙ" === */
.guest-photos-section {
    margin: 30px 0;
    padding: 25px 30px;
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 
        0 0 30px rgba(201, 162, 39, 0.15),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.guest-photos-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
}

.guest-photos-title i {
    color: #c9a227;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.8);
}

.guest-photos-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 162, 39, 0.5) #1a1a1a;
}

.guest-photos-scroll::-webkit-scrollbar {
    height: 6px;
}

.guest-photos-scroll::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.guest-photos-scroll::-webkit-scrollbar-thumb {
    background: rgba(201, 162, 39, 0.5);
    border-radius: 3px;
}

.guest-photo-item {
    flex: 0 0 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.guest-photo-item:hover {
    border-color: #c9a227;
    transform: scale(1.05);
    box-shadow: 
        0 0 20px rgba(201, 162, 39, 0.5),
        0 0 40px rgba(201, 162, 39, 0.3);
}

.guest-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.guest-photo-item:hover img {
    filter: brightness(1.1);
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/info.css?17895143618581*/
/* Современный дизайн для секции info.php - продающий лендинг */

.object-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовок объекта */
.object-header {
    text-align: center;
    margin-bottom: 40px;
}

.object-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.object-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #666;
}

.object-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff385c;
    font-weight: 600;
}

.object-rating i {
    color: #ffc107;
}

.meta-separator {
    color: #ddd;
}

.object-reviews-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.object-reviews-link:hover {
    color: #ff385c;
}

.object-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.object-location i {
    color: #ff385c;
}

/* Статистика - современные карточки */
.object-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.stat-separator {
    display: none;
}

/* Расширенная статистика */
.object-stats-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 30px;
    background: #f8f9ff;
    border-radius: 20px;
}

.object-stats-extended .stat-item {
    background: white;
    color: #667eea;
    padding: 20px;
    border: 2px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.object-stats-extended .stat-item i {
    font-size: 24px;
}

/* Разделитель */
.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 50px 0;
}

/* Информация о владельце */
.object-host {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
}

.host-avatar {
    flex-shrink: 0;
}

.host-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.host-info {
    flex-grow: 1;
}

.host-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.superhost-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.superhost-badge i {
    color: #ffc107;
}

.host-member-since {
    font-size: 16px;
    opacity: 0.9;
}

/* Тип объекта */
.object-type {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 2px solid #667eea;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.object-type i {
    font-size: 32px;
    color: #667eea;
    flex-shrink: 0;
}

.object-type strong {
    font-size: 20px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.object-type p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Описание */
.object-description {
    margin: 40px 0;
}

.object-description h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Особенности размещения - Grid Layout */
.object-features {
    margin: 50px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 30px;
}

.object-features h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.object-features h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 28px;
    color: #667eea;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 12px;
}

.feature-item strong {
    font-size: 18px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Секция характеристик */
.object-characteristics {
    margin: 30px 0;
}

.object-characteristics h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.characteristic-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.characteristic-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.characteristic-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.characteristic-item strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.characteristic-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 768px) {
    .object-title {
        font-size: 32px;
    }
    
    .object-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .object-stats-extended {
        grid-template-columns: 1fr;
    }
    
    .object-host {
        flex-direction: column;
        text-align: center;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .object-features {
        padding: 30px 20px;
    }
    
    .characteristics-grid {
        grid-template-columns: 1fr;
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/combined-info.css?17895143618655*/
/* Описание объекта */
.object-description-section {
    margin: -20px 0 40px 0;
}

.object-description-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main, #f8fafc);
    margin: 0 0 16px 0;
}

.description-content {
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary, #cbd5e1);
    transition: max-height 0.25s ease;
}

.description-content.object-description-collapsed {
    overflow: hidden;
}

.description-content.object-description-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg-main, #000));
}

.description-content.object-description-expanded {
    overflow: visible;
    max-height: none !important;
}

.description-content.object-description-expanded::after {
    display: none;
}

.description-content p {
    margin: 0 0 12px 0;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-toggle-btn {
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 18px;
    border: 1px solid var(--gold, #fbbf24);
    border-radius: 14px;
    background: transparent;
    color: var(--gold, #fbbf24);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.description-toggle-btn:hover {
    background: var(--gold, #fbbf24);
    color: #0f172a;
}

/* Объединенная секция: Правила дома + Хозяин + Особенности */

.combined-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 48px;
}

.combined-info-section .rules-column {
    grid-column: 1;
    grid-row: 1;
}

.combined-info-section .host-features-column {
    grid-column: 2;
    grid-row: 1 / 3;
}

.combined-info-section .property-features {
    grid-column: 1;
    grid-row: 2;
}

/* Левая колонка: Правила дома */
.rules-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rules-column .section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main, #f8fafc);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rules-column .section-title i {
    color: var(--gold, #fbbf24);
    font-size: 20px;
}

/* Список правил */
.rules-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rule-item i {
    font-size: 18px;
    color: var(--gold, #fbbf24);
    flex-shrink: 0;
    margin-top: 2px;
}

.rule-item.rule-not-allowed i {
    color: var(--gold, #fbbf24);
}

.rule-content {
    flex: 1;
}

.rule-content strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main, #f8fafc);
    margin-bottom: 2px;
}

.rule-content p {
    font-size: 13px;
    color: var(--text-secondary, #cbd5e1);
    margin: 0;
    line-height: 1.4;
}

/* Характеристики жилья в виде плиток */
.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.feature-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: transparent;
    border-radius: 20px;
    border: 1px solid var(--gold, #fbbf24);
}

.feature-tile i {
    font-size: 20px;
    color: var(--gold, #fbbf24);
}

.feature-info {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
}

.feature-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main, #f8fafc);
    line-height: 1;
}

.feature-label {
    font-size: 13px;
    color: var(--text-secondary, #cbd5e1);
}

/* Правая колонка: Хозяин + Особенности */
.host-features-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Карточка хозяина */
.host-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: transparent;
    border-radius: 12px;
    border: 2px solid var(--gold, #fbbf24);
}

.host-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-main, #0f172a);
}

.host-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-main, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder i {
    font-size: 28px;
    color: var(--text-secondary, #cbd5e1);
}

.host-details h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main, #f8fafc);
    margin: 0 0 4px 0;
}

.host-member-since {
    font-size: 13px;
    color: var(--text-secondary, #cbd5e1);
    margin: 0;
}

/* Имя хозяина и статус в одной строке */
.host-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.host-name-row h3 {
    margin: 0;
}

/* Бейдж статуса хозяина */
.owner-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.owner-status-badge.status-owner {
    background: rgba(100, 116, 139, 0.2);
    color: #94a3b8;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.owner-status-badge.status-verified {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.owner-status-badge.status-excellent {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    color: var(--gold, #fbbf24);
    border: 1px solid rgba(251, 191, 36, 0.4);
}

/* Подтверждение документов */
.host-verified {
    font-size: 12px;
    color: #4ade80;
    margin: 6px 0 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.host-verified i {
    font-size: 14px;
}

/* Аватар-плейсхолдер с инициалами */
.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold, #fbbf24), #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
}

/* Особенности размещения */
.host-features-column .section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main, #f8fafc);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.host-features-column .section-title i {
    color: var(--gold, #fbbf24);
    font-size: 20px;
}

/* Список особенностей */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    font-size: 18px;
    color: var(--gold, #fbbf24);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main, #f8fafc);
    margin-bottom: 2px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-secondary, #cbd5e1);
    margin: 0;
    line-height: 1.4;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .combined-info-section {
        gap: 20px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .combined-info-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .host-info-card {
        padding: 16px;
    }
    
    .host-avatar {
        width: 48px;
        height: 48px;
    }
    
    .host-details h3 {
        font-size: 15px;
    }
    
    .host-member-since {
        font-size: 12px;
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/amenities.css?17895143612173*/
/* Стили для секции удобств - продающий лендинг */

.object-amenities {
    margin: 60px 0;
    padding: 60px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.object-amenities h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.object-amenities h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: white;
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.amenity-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: white;
}

.amenity-item i {
    font-size: 24px;
    color: #667eea;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.amenity-item:hover i {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
    .object-amenities {
        padding: 40px 25px;
    }
    
    .object-amenities h2 {
        font-size: 28px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/rules.css?17895143613029*/
/* Стили для секции правил - продающий лендинг */

.object-rules {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(245, 87, 108, 0.3);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.object-rules h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.object-rules h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: white;
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: white;
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rule-header i {
    font-size: 32px;
    color: #f5576c;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f093fb15, #f5576c15);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.rule-card:hover .rule-header i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.rule-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.rule-content {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.rule-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #f5576c;
    margin-top: 10px;
}

.rule-time i {
    font-size: 20px;
}

.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li i {
    color: #f5576c;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rule-allowed {
    color: #28a745;
}

.rule-not-allowed {
    color: #dc3545;
}

/* Адаптивность */
@media (max-width: 768px) {
    .object-rules {
        padding: 40px 25px;
    }
    
    .object-rules h2 {
        font-size: 28px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/availability.css?17895143615159*/
/* Стили для секции доступности - продающий лендинг */

.object-availability {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.object-availability h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.availability-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.availability-calendar-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

/* Стили календаря */
.availability-calendar-wrapper .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.availability-calendar-wrapper .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.availability-calendar-wrapper .calendar-month {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.availability-calendar-wrapper .calendar-nav {
    display: flex;
    gap: 10px;
}

.availability-calendar-wrapper .calendar-nav button {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.availability-calendar-wrapper .calendar-nav button i {
    font-size: 16px;
    color: white;
}

.availability-calendar-wrapper .calendar-nav button:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
}

.availability-calendar-wrapper .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.availability-calendar-wrapper .calendar-weekday {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    padding: 10px 0;
}

.availability-calendar-wrapper .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    background: #f8f9ff;
    transition: all 0.3s;
    cursor: default;
}

.availability-calendar-wrapper .calendar-day.other-month {
    color: #ccc;
    background: transparent;
}

.availability-calendar-wrapper .calendar-day.today {
    border: 2px solid #667eea;
    font-weight: 700;
}

.availability-calendar-wrapper .calendar-day.booked {
    background: #e0e0e0;
    color: #999;
    position: relative;
}

.availability-calendar-wrapper .calendar-day.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #bbb;
    border-radius: 8px;
    z-index: -1;
}

.availability-calendar-wrapper .calendar-day.available:hover {
    background: #667eea;
    color: white;
    transform: scale(1.05);
}

/* Легенда */
.availability-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.availability-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.availability-legend .legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.availability-legend .legend-color.available {
    background: #f8f9ff;
}

.availability-legend .legend-color.booked {
    background: #bbb;
}

/* Информация */
.availability-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.availability-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    margin: 0;
}

.availability-info i {
    color: #ffc107;
    font-size: 18px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .object-availability {
        padding: 40px 25px;
    }
    
    .object-availability h2 {
        font-size: 28px;
    }
    
    .availability-calendar-wrapper {
        padding: 20px 15px;
    }
    
    .availability-calendar-wrapper .calendar-day {
        font-size: 13px;
    }
    
    .availability-legend {
        gap: 15px;
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/location.css?17895143617223*/
/* Стили для секции локации - продающий лендинг */

.object-location {
    margin: 60px 0;
    display: block !important;
}

.object-location > * {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.object-location h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.object-location h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 20px auto 0;
    border-radius: 2px;
}

.location-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-map-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

/* Переключатель */
.toggle-switch {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    cursor: pointer !important;
    user-select: none !important;
    background: #fff !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 48px;
    height: 26px;
    background: #e0e0e0;
    border-radius: 13px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.location-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-map-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    pointer-events: none !important;
}

.location-map-overlay > * {
    pointer-events: auto !important;
}

.location-title {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    margin: 0 !important;
}

.location-address-overlay {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
}

.location-address-overlay p {
    margin: 0 0 6px 0 !important;
    font-size: 15px !important;
    color: #333 !important;
}

.location-address-overlay strong {
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.location-address-overlay .location-note {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    color: #666 !important;
    margin: 6px 0 0 0 !important;
}

.location-address-overlay .location-note i {
    color: #667eea !important;
}

.location-map-controls {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
}

/* Что рядом - горизонтальное расположение */
.location-nearby {
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-nearby h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.nearby-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f0f0f0;
}

.nearby-list::-webkit-scrollbar {
    height: 6px;
}

.nearby-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.nearby-list::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9ff;
    border: 1px solid #e0e5ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nearby-item:hover {
    transform: translateY(-2px);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.nearby-item i {
    font-size: 20px;
    color: #667eea;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    flex-shrink: 0;
}

.nearby-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nearby-content strong {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.nearby-content span {
    font-size: 13px;
    color: #666;
}

/* О районе - на всю ширину внизу */
.location-district {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e0e5ff;
}

.location-district h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-district h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.location-district p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .location-info,
    .location-nearby,
    .location-district {
        padding: 25px 20px;
    }
    
    .object-location h2 {
        font-size: 28px;
    }
    
    .location-map-wrapper {
        height: 400px;
    }
    
    .nearby-list {
        flex-wrap: wrap;
    }
    
    .toggle-switch {
        font-size: 14px;
        padding: 8px 12px !important;
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/content.css?17895143618084*/
/* === КОНТЕНТ СТРАНИЦЫ === */
/* Основная информация, удобства, правила, календарь, локация, отзывы */

/* === ОСНОВНАЯ ИНФОРМАЦИЯ === */
.object-header {
    margin-bottom: 24px;
}

.object-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #222;
}

.object-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #717171;
    flex-wrap: wrap;
}

.object-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222;
    font-weight: 600;
}

.object-rating i {
    color: #ff385c;
}

.meta-separator {
    color: #ddd;
}

.object-reviews-link {
    color: #222;
    text-decoration: underline;
}

.object-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.object-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 24px;
}

.stat-separator {
    color: #ddd;
}

.section-divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 32px 0;
}

.object-host {
    display: flex;
    align-items: center;
    gap: 16px;
}

.host-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.host-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.superhost-badge {
    background: linear-gradient(135deg, #ff385c 0%, #ff8c00 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.host-member-since {
    font-size: 14px;
    color: #717171;
}

.object-type {
    display: flex;
    gap: 16px;
}

.object-type i {
    font-size: 24px;
    color: #222;
}

.object-type strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.object-type p {
    font-size: 14px;
    color: #717171;
    margin: 0;
}

.object-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 16px;
}

.description-text {
    font-size: 18px;
    line-height: 1.7;
    color: #222;
}

.show-more-btn {
    background: none;
    border: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === УДОБСТВА === */
.object-amenities h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 24px;
}

.amenities-section {
    margin-bottom: 24px;
}

.amenities-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #717171;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
}

.amenity-item i {
    font-size: 28px;
    color: #222;
    width: 36px;
}

.show-all-amenities-btn {
    background: none;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.show-all-amenities-btn:hover {
    background: #f7f7f7;
}

/* === ПРАВИЛА === */
.object-rules h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 24px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.rule-item i {
    font-size: 24px;
    color: #222;
    width: 28px;
}

.rule-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.rule-content span {
    font-size: 14px;
    color: #717171;
}

/* === КАЛЕНДАРЬ === */
.object-calendar h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.calendar-subtitle {
    font-size: 14px;
    color: #717171;
    margin: 0 0 24px;
}

.calendar-wrapper {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.calendar-legend {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.available {
    background: #e8f5e9;
    border: 1px solid #4caf50;
}

.legend-color.booked {
    background: #ffebee;
    border: 1px solid #f44336;
}

.legend-color.selected {
    background: #e3f2fd;
    border: 1px solid #2196f3;
}

.calendar-info {
    font-size: 14px;
    color: #717171;
}

.calendar-info i {
    color: #2196f3;
}

/* === ЛОКАЦИЯ === */
.object-location h2,
.object-location h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}

.location-map {
    margin-bottom: 24px;
}

.location-address {
    margin-bottom: 24px;
}

.location-address strong {
    font-size: 16px;
}

.location-note {
    font-size: 14px;
    color: #717171;
    margin-top: 8px;
}

.location-district p {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nearby-item i {
    font-size: 24px;
    color: #222;
    width: 32px;
}

.nearby-content strong {
    display: block;
    font-size: 16px;
}

.nearby-content span {
    font-size: 14px;
    color: #717171;
}

/* === ОТЗЫВЫ === */
.object-reviews h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.object-reviews h2 i {
    color: #ff385c;
}

.reviews-ratings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-label {
    font-size: 14px;
    min-width: 100px;
}

.rating-bar {
    flex: 1;
    height: 4px;
    background: #ebebeb;
    border-radius: 2px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #222;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 30px;
    text-align: right;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 24px;
}

.review-item {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 24px;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.review-date {
    font-size: 14px;
    color: #717171;
}

.review-rating i {
    color: #ff385c;
    font-size: 12px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    margin: 0;
}

.show-all-reviews-btn {
    background: none;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.show-all-reviews-btn:hover {
    background: #f7f7f7;
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/booking.css?178951436118338*/
/* === ФОРМА БРОНИРОВАНИЯ - ПРОДАЮЩИЙ ЛЕНДИНГ 20% === */

/* Стили для календаря в блоке бронирования */
.flatpickr-calendar.open {
    z-index: 9999 !important;
}

.booking-panel .flatpickr-calendar,
.flatpickr-calendar {
    background: #000000 !important;
    border: 1px solid #333333 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    z-index: 9999 !important;
}

.booking-panel .flatpickr-months,
.flatpickr-months {
    background: #000000 !important;
}

.booking-panel .flatpickr-month,
.flatpickr-month {
    color: #ffffff !important;
}

.booking-panel .flatpickr-current-month,
.flatpickr-current-month {
    color: #ffffff !important;
}

.booking-panel .flatpickr-weekdays,
.flatpickr-weekdays {
    background: #000000 !important;
}

.booking-panel .flatpickr-weekday,
.flatpickr-weekday {
    color: #cccccc !important;
}

.booking-panel .flatpickr-innerContainer,
.flatpickr-innerContainer {
    background: #000000 !important;
}

.booking-panel .flatpickr-days,
.flatpickr-days {
    background: #000000 !important;
}

/* Свободные даты - белые */
.booking-panel .flatpickr-day,
.flatpickr-day {
    color: #ffffff !important;
    background: transparent !important;
    border: 1px solid transparent !important;
}

.booking-panel .flatpickr-day:hover,
.flatpickr-day:hover {
    background: #1a1a1a !important;
    border-color: #d4a531 !important;
}

/* Неактивные даты (прошедшие) - серые */
.booking-panel .flatpickr-day.flatpickr-disabled,
.booking-panel .flatpickr-day.prevMonthDay,
.booking-panel .flatpickr-day.nextMonthDay,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #666666 !important;
    background: transparent !important;
}

/* Забронированные даты - серые */
.booking-panel .flatpickr-day.booked,
.flatpickr-day.booked {
    color: #666666 !important;
    background: #1a1a1a !important;
    text-decoration: line-through !important;
}

/* Выбранная дата - золотая */
.booking-panel .flatpickr-day.selected,
.booking-panel .flatpickr-day.startRange,
.booking-panel .flatpickr-day.endRange,
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #d4a531 !important;
    color: #000000 !important;
    border-color: #d4a531 !important;
}

/* Диапазон дат */
.booking-panel .flatpickr-day.inRange,
.flatpickr-day.inRange {
    background: rgba(212, 165, 49, 0.2) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

/* Сегодняшняя дата */
.booking-panel .flatpickr-day.today,
.flatpickr-day.today {
    border-color: #d4a531 !important;
}

/* Навигация календаря */
.booking-panel .flatpickr-prev-month,
.booking-panel .flatpickr-next-month,
.flatpickr-prev-month,
.flatpickr-next-month {
    fill: #d4a531 !important;
}

.booking-panel .flatpickr-prev-month:hover,
.booking-panel .flatpickr-next-month:hover,
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    fill: #ffffff !important;
}

/* Стрелки навигации */
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #d4a531 !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #ffffff !important;
}

/* Живые анимации для блока бронирования */
@keyframes floatBooking {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
    }
}

.booking-panel {
    position: sticky;
    top: 100px;
    border: none;
    border-radius: 25px;
    padding: 30px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    animation: glowPulse 3s infinite;
    z-index: 20000;
}

.booking-panel * {
    position: relative;
}

.booking-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.booking-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.booking-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.booking-price .price {
    font-size: 26px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.booking-price .per-night {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-price-note {
    text-align: center;
    margin: -4px 0 14px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.booking-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.booking-rating i {
    color: #ffc107;
}

.booking-dates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(6px, 1.2vw, 12px);
    width: 100%;
    min-width: 0;
    margin-bottom: 16px;
}

.date-field {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 16px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.date-field:hover {
    border-color: white;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.date-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #667eea;
}

.date-display {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    width: 100%;
}

.date-field input {
    border: none;
    background: none;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    color: #717171;
}

.booking-guests {
    position: relative;
    margin-bottom: 16px;
}

.booking-guests > label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: white;
}

.guests-selector {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.guests-selector:hover {
    border-color: white;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.guests-selector i {
    color: #667eea;
    font-size: 14px;
}

.guest-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guests-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
    margin-top: 8px;
    z-index: 100;
}

.guests-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.guests-label strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.guests-label span {
    font-size: 14px;
    color: #717171;
}

.guests-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guest-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #b0b0b0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.guest-btn:hover {
    border-color: #222;
}

.guest-count {
    font-size: 16px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.guests-close {
    width: 100%;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
}

.btn-book {
    width: 100%;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 15px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.no-charge {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0;
}

.booking-calculation {
    margin-top: 24px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: white;
}

.calc-label {
    color: white;
}

.calc-label i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: help;
}

.calc-value {
    font-weight: 600;
}

.calc-divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 16px 0;
}

.calc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

/* === AIR DATEPICKER КАСТОМИЗАЦИЯ === */
.air-datepicker-cell.-disabled-.booked-date {
    background: #ffebee !important;
    color: #f44336 !important;
    cursor: not-allowed;
}

.air-datepicker-cell.-disabled-.booked-date:hover {
    background: #ffcdd2 !important;
}

/* === АДАПТИВНОСТЬ === */

/* Ноутбуки (1200px - 1440px) */
@media (max-width: 1440px) {
    .booking-panel {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .booking-price .price {
        font-size: 22px;
    }
    
    .booking-price .per-night {
        font-size: 14px;
    }
    
    .booking-rating {
        font-size: 13px;
    }
    
    .booking-header {
        margin-bottom: 18px;
    }
    
    .date-field {
        padding: 12px;
    }
    
    .date-field label {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .date-display {
        font-size: 14px;
    }
    
    .guests-selector {
        padding: 12px;
        font-size: 14px;
    }
    
    .btn-book {
        padding: 14px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .calc-row {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .calc-total {
        font-size: 16px;
    }
    
    .booking-calculation {
        margin-top: 18px;
    }
}

/* Маленькие ноутбуки (1024px - 1200px) */
@media (max-width: 1200px) {
    .booking-panel {
        padding: 20px 16px;
        border-radius: 16px;
        top: 80px;
    }
    
    .booking-price .price {
        font-size: 20px;
    }
    
    .booking-price .per-night {
        font-size: 13px;
    }
    
    .booking-rating {
        font-size: 12px;
    }
    
    .booking-header {
        margin-bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .booking-dates {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .date-field {
        padding: 10px;
        border-radius: 10px;
    }
    
    .date-field label {
        font-size: 9px;
        margin-bottom: 4px;
    }
    
    .date-display {
        font-size: 13px;
    }
    
    .booking-guests {
        margin-bottom: 12px;
    }
    
    .booking-guests > label {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .guests-selector {
        padding: 10px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .btn-book {
        padding: 12px;
        font-size: 14px;
        border-radius: 10px;
        letter-spacing: 0.5px;
    }
    
    .no-charge {
        font-size: 12px;
        margin: 10px 0;
    }
    
    .calc-row {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .calc-total {
        font-size: 15px;
    }
    
    .booking-calculation {
        margin-top: 14px;
    }
    
    .calc-divider {
        margin: 12px 0;
    }
}

@media (max-width: 1024px) {
    .object-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-panel {
        position: static;
        padding: 24px 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .booking-header {
        flex-direction: row;
        align-items: center;
    }
    
    .booking-price .price {
        font-size: 24px;
    }
    
    .date-field {
        padding: 14px;
    }
    
    .date-display {
        font-size: 15px;
    }
    
    .btn-book {
        padding: 16px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .object-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-main {
        grid-row: auto;
        height: 300px;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .reviews-ratings {
        grid-template-columns: 1fr;
    }
}

/* === ПОХОЖИЕ ОБЪЕКТЫ === */
.object-detail-full-width {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.object-similar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    box-sizing: border-box;
    overflow: hidden;
}

.object-similar h2 { font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.similar-carousel, .similar-objects-viewport { width: 100%; max-width: 100%; overflow: hidden; }
.similar-objects-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: similarObjectsMarquee 45s linear infinite;
    will-change: transform;
}
.similar-object-card {
    flex: 0 0 clamp(220px, 23vw, 292px);
    min-width: 0;
    max-width: 292px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.similar-object-card:hover { transform: translateY(-4px); }
.similar-object-image { width: 100%; height: 200px; border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.similar-object-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.similar-object-info { padding: 0 4px; min-width: 0; }
.similar-object-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 14px; min-width: 0; }
.similar-rating { display: flex; align-items: center; gap: 4px; font-weight: 600; flex: 0 0 auto; }
.similar-rating i { color: #ff385c; font-size: 12px; }
.similar-location, .similar-object-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.similar-location { color: #717171; }
.similar-object-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.similar-object-type, .similar-object-price { font-size: 14px; }
.similar-object-type { color: #717171; margin-bottom: 8px; }
.similar-object-price strong { font-weight: 600; color: #222; }
.similar-carousel {
    position: relative;
    min-width: 0;
    padding-inline: 52px;
}
.similar-objects-viewport { width: 100%; max-width: 100%; overflow: hidden; }
.similar-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(0,0,0,.75);
    color: #fff;
    cursor: pointer;
}
.similar-carousel-arrow:hover { background: var(--phoenix-gold, #d4a531); color: #000; }
.similar-carousel-arrow--prev { left: 4px; }
.similar-carousel-arrow--next { right: 4px; }
@media (max-width: 900px) {
    .similar-carousel { padding-inline: 0; }
    .similar-carousel-arrow--prev { left: 8px; }
    .similar-carousel-arrow--next { right: 8px; }
}
.similar-objects-viewport:hover .similar-objects-track,
.similar-carousel:focus-within .similar-objects-track { animation-play-state: paused; }

@keyframes similarObjectsMarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 10px)); } }
@media (prefers-reduced-motion: reduce) { .similar-objects-track { animation: none; } }

/* small desktop proportional booking fix v2 */
@media (min-width: 768px) and (max-width: 1024px) {
    .booking-panel,
    .booking-panel * { box-sizing: border-box; min-width: 0; }
    .booking-panel { width: min(100%, 500px); max-width: calc(100vw - 32px); margin-inline: auto; overflow: visible; }
    .booking-dates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(6px, 1.5vw, 12px); width: 100%; max-width: 100%; }
    .booking-dates > .date-field,
    .booking-dates .date-display,
    .booking-dates .date-field input,
    .booking-guests,
    .guests-selector,
    .btn-book { width: 100%; max-width: 100%; min-width: 0; }
    .booking-dates .date-display { overflow-wrap: anywhere; word-break: break-word; }
    .booking-calendar-popup,
    .booking-guests-popup { width: min(600px, calc(100vw - 32px)); max-width: calc(100vw - 32px); box-sizing: border-box; overflow-x: hidden; }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/booking-popups.css?178951436112477*/
﻿/* === КАЛЕНДАРЬ БРОНИРОВАНИЯ === */
.booking-dates {
    position: relative;
}

.booking-calendar-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.05);
    padding: 0;
    z-index: 99999;
    width: 620px;
    max-width: calc(100vw - 40px);
    display: none;
    user-select: none;
    overflow: visible;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Позиционирование для дочерних absolute элементов */
.booking-calendar-popup > * {
    position: relative;
}

.booking-calendar-popup > .calendar-close-btn {
    position: absolute !important;
}

/* Кнопка закрытия календаря */
.calendar-close-btn {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid #ddd !important;
    background: #ffffff !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    z-index: 9999 !important;
    font-size: 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.calendar-close-btn:hover {
    background: #f0f0f0 !important;
    color: #000 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Черная подложка для календаря */
.booking-calendar-popup::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

.calendar-navigation {
    position: absolute;
    top: 35px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 30;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.calendar-nav-btn:hover {
    background: #ffffff;
    border-color: #000000;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.calendar-months-container {
    padding: 50px 20px 24px;
    background: #ffffff !important;
    position: relative;
}

/* Переопределение темной темы календаря */
.booking-calendar-popup .calendar-months-container,
.booking-calendar-popup .calendar-month,
.booking-calendar-popup .calendar-weekdays,
.booking-calendar-popup .calendar-days {
    background: #ffffff !important;
}

.booking-calendar-popup .calendar-month-title {
    color: #111111 !important;
}

.booking-calendar-popup .weekday {
    color: #9999aa !important;
}

.calendar-grid-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.calendar-month {
    flex: 1;
    background: #ffffff;
}

.calendar-month-title {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #111111;
    text-transform: capitalize;
    letter-spacing: -0.3px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 16px;
    background: #ffffff;
}

.weekday {
    font-size: 13px;
    color: #9999aa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    background: #ffffff;
}

.day {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.day.is-start,
.day.is-end {
    background: #ff385c !important;
    color: #ffffff !important;
    font-weight: 700;
}

.day.is-in-range {
    background: rgba(255, 56, 92, 0.1) !important;
    color: #222222 !important;
    border-radius: 0;
}

.day.is-in-range.is-start {
    border-radius: 50% 0 0 50%;
}

.day.is-in-range.is-end {
    border-radius: 0 50% 50% 0;
}

.day:hover:not(.empty):not(.disabled) {
    background: #f4f4f9;
    color: #000000;
    transform: scale(1.02);
}

.day.empty {
    cursor: default;
}

.day.disabled {
    color: #999999;
    background: transparent !important;
    cursor: not-allowed;
    font-weight: 400;
}

/* Забронированные даты - серый фон */
.day.booked {
    background: #e5e5e5 !important;
    color: #999999 !important;
    cursor: not-allowed;
    position: relative;
}

.day.booked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(150, 150, 150, 0.15) 3px,
        rgba(150, 150, 150, 0.15) 6px
    );
    border-radius: 50%;
    pointer-events: none;
}

/* Сегодняшняя дата */
.day.today {
    border: 2px solid #d4a531 !important;
    font-weight: 700;
    position: relative;
}

.day .today-badge {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a531;
    color: #000;
    font-size: 8px;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1.2;
}

.weekday.holiday,
.day.holiday {
    color: #ff3b30 !important;
    background: #ffffff;
}

.day.holiday.is-start,
.day.holiday.is-end {
    color: #ffffff !important;
    background: #ff385c !important;
}

.day.holiday.is-in-range {
    color: #ff3b30 !important;
    background: rgba(255, 56, 92, 0.1);
}

/* Тултип с количеством суток */
.calendar-tooltip {
    position: fixed;
    background: #111111;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    pointer-events: none;
    z-index: 2000;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    transform: translate(-50%, -130%);
}

.calendar-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #111111;
}

.calendar-nights-tooltip {
    position: fixed !important;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4b5 100%) !important;
    color: #1a1a1a !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    z-index: 999999999 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    pointer-events: none !important;
    border: 2px solid #d4af37 !important;
}

.calendar-footer {
    padding: 20px 30px;
    border-top: 1px solid #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-reset-btn {
    background: linear-gradient(135deg, #ff385c 0%, #ff8c00 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.2);
}

.calendar-reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 56, 92, 0.3);
}

.calendar-reset-btn i {
    font-size: 16px;
}

.date-display {
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #222;
}

.date-display:hover {
    border-color: #222;
}

.date-field {
    cursor: pointer;
}

.date-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
}

/* === ПОПАП ГОСТЕЙ === */
.booking-guests-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 5000;
    display: none;
    border: 1px solid rgba(0,0,0,0.08);
}

.guests-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.guests-counter__text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
}

.guests-counter__text span {
    font-size: 13px;
    color: #717171;
}

.guests-counter__editing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guests-counter__button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #222;
    font-size: 14px;
}

.guests-counter__button:hover {
    border-color: #222;
    background: #f7f7f7;
}

.guests-counter__button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guests-counter__value {
    font-size: 16px;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
    color: #222;
}

.guests-divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 8px 0;
}

.guests-pets {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.guests-pets__text {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.guests-pets__switcher {
    width: 48px;
    height: 28px;
    background: #ebebeb;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
}

.guests-pets__switcher input {
    display: none;
}

.switcher-dot {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.guests-pets__switcher input:checked ~ .switcher-dot {
    left: 23px;
}

.guests-pets__switcher:has(input:checked) {
    background: #222222;
}

.guests-ready-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff385c 0%, #ff8c00 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.2);
}

.guests-ready-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 56, 92, 0.3);
}

.guests-selector {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    font-size: 14px;
    color: #222;
}

.guests-selector:hover {
    border-color: #222;
}

.booking-guests {
    position: relative;
    margin-bottom: 16px;
}

.booking-guests label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
}




/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/reviews.css?178951436119755*/
/* Стили для секции отзывов */

.object-reviews {
    margin: 60px 0;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Шапка с кнопкой */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.reviews-header h2 i {
    color: #ff385c;
}

.write-review-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Горизонтальная фотогалерея */
.reviews-photo-gallery {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e0e5ff;
}

.reviews-photo-gallery h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.photo-gallery-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f0f0f0;
}

.photo-gallery-scroll::-webkit-scrollbar {
    height: 6px;
}

.photo-gallery-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.photo-gallery-scroll::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.gallery-photo-item {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-photo-item:hover {
    transform: scale(1.05);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Рейтинги */
.reviews-ratings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.rating-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 15px;
}

.rating-label {
    font-size: 15px;
    color: #333;
}

.rating-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.rating-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 30px;
    text-align: right;
}

/* Список отзывов */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.review-item {
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.review-date {
    font-size: 14px;
    color: #666;
}

.review-rating {
    display: flex;
    gap: 4px;
}

.review-rating i {
    color: #ff385c;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #484848;
    margin: 0;
}

.review-pros,
.review-cons,
.review-impression {
    margin-top: 16px;
}

.review-pros strong,
.review-cons strong,
.review-impression strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-pros strong i {
    color: #00a699;
}

.review-cons strong i {
    color: #ff385c;
}

.review-impression strong i {
    color: #717171;
}

.review-pros p,
.review-cons p,
.review-impression p {
    color: #484848;
    line-height: 1.6;
    margin: 0;
    padding-left: 24px;
}

.gallery-photo-clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-photo-clickable:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Фотографии в отзывах */
.review-photos {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.review-photo-item {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.review-photo-item:hover {
    transform: scale(1.05);
}

.review-photo-clickable {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Lightbox стили */
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: fixed;
    top: 5vh;
    left: 5vw;
    width: 90vw;
    height: 90vh;
    z-index: 1001;
    pointer-events: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #222;
    transition: all 0.2s ease;
    z-index: 1002;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

#lightbox-image {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.lightbox-counter {
    pointer-events: auto;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    z-index: 1003;
}

.show-all-reviews-btn {
    width: 100%;
    padding: 16px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.show-all-reviews-btn:hover {
    background: #667eea;
    color: white;
}

/* Попап формы отзыва */
.review-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.review-form-popup.active {
    display: flex;
}

.review-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.review-form-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    padding: 40px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-form-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-form-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.review-form-container h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.review-form-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

/* Форма */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.required {
    color: #ff385c;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Загрузка фото */
.photo-upload-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.photo-upload-label {
    padding: 30px;
    border: 2px dashed #667eea;
    border-radius: 12px;
    background: #f8f9ff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.photo-upload-label:hover {
    background: #f0f2ff;
    border-color: #5568d3;
}

.photo-upload-label i {
    font-size: 32px;
    color: #667eea;
}

.photo-upload-label span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.photo-upload-label small {
    font-size: 13px;
    color: #666;
}

.photo-preview-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.photo-preview-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.photo-preview-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(255, 56, 92, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.photo-preview-remove:hover {
    background: #ff385c;
    transform: scale(1.1);
}

/* Кнопки формы */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-cancel {
    flex: 1;
    padding: 14px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    border-color: #c0c0c0;
    background: #f8f8f8;
}

.btn-submit {
    flex: 2;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .reviews-ratings {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .review-form-container {
        padding: 30px 20px;
    }
    
    .gallery-photo-item {
        width: 150px;
        height: 120px;
    }
}

/* Выбор звёзд рейтинга */
.star-rating-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-rating-input .star-input {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating-input .star-input:hover,
.star-rating-input .star-input.active {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating-input .star-input.active {
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.star-rating-input .rating-text {
    margin-left: 12px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Плюсы и минусы в отзывах */
.review-pros,
.review-cons,
.review-impression {
    margin-bottom: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.review-pros {
    border-left: 3px solid #4CAF50;
}

.review-cons {
    border-left: 3px solid #f44336;
}

.review-impression {
    border-left: 3px solid #2196F3;
}

.review-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.review-label i {
    margin-right: 6px;
}

.review-pros .review-label i {
    color: #4CAF50;
}

.review-cons .review-label i {
    color: #f44336;
}

.review-impression .review-label i {
    color: #2196F3;
}

.review-pros p,
.review-cons p,
.review-impression p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Фото в отзывах - черный фон с неоновым свечением */
.review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 
        0 0 20px rgba(201, 162, 39, 0.15),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.review-photos::before {
    content: "Фото от гостя";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #0a0a0a;
    padding: 2px 12px;
    font-size: 12px;
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.review-photo-item {
    width: 130px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.review-photo-item:hover {
    transform: scale(1.08);
    border-color: #c9a227;
    box-shadow: 
        0 0 15px rgba(201, 162, 39, 0.5),
        0 0 30px rgba(201, 162, 39, 0.3);
}

.review-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.review-photo-item:hover img {
    filter: brightness(1.1);
}

/* === LIGHTBOX ДЛЯ ФОТО ОТЗЫВОВ === */
.review-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.review-lightbox.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.review-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.review-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.review-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.review-lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.review-lightbox-arrow-left {
    left: 20px;
}

.review-lightbox-arrow-right {
    right: 20px;
}

.review-lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.review-lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

.review-lightbox-thumbs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10001;
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
}

.review-lightbox-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    border: 2px solid transparent;
}

.review-lightbox-thumb:hover {
    opacity: 0.9;
}

.review-lightbox-thumb.active {
    opacity: 1;
    border-color: var(--accent-color, #c9a227);
    transform: scale(1.1);
}

.review-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/style.mobile.css?17895143619950*/
/**
 * Мобильные стили детальной страницы объекта (max-width: 767px)
 * Модуль: konsultante.sutochno
 * Импортирует адаптивные стили для всех модулей
 */

@media (max-width: 767px) {
    /* === БАЗОВЫЕ СТИЛИ === */
    .phoenix-object-detail {
        width: 100%;
        padding: 0;
    }

    .object-detail-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 20px;
        padding: 0 16px;
    }

    .object-detail-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 20px 20px 0 0;
    }

    .object-detail-full-width {
        margin-top: 40px;
        padding: 0 16px;
    }

    .section-divider {
        margin: 30px 0;
    }

    /* === ШАПКА === */
    .detail-page-header {
        padding: 20px 16px;
        margin-bottom: 0;
    }

    .detail-header-content h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .detail-header-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
    }

    /* === ГАЛЕРЕЯ === */
    .object-gallery {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 20px;
    }

    .gallery-main {
        flex: none;
        width: 100%;
        height: 250px;
        border-radius: 0;
    }

    .gallery-thumbs-panel {
        padding: 0 8px;
    }

    .gallery-thumbs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        max-height: 80px;
        overflow: hidden;
    }

    .gallery-thumb {
        height: 60px;
    }

    .gallery-thumbs-nav {
        display: none;
    }

    .gallery-counter {
        font-size: 12px;
    }

    /* Lightbox мобильный */
    .gallery-lightbox-content {
        max-width: 100vw;
        padding: 0;
    }

    .gallery-lightbox-image-wrap {
        max-width: 100vw;
        max-height: 50vh;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .gallery-lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .gallery-lightbox-arrow-left {
        left: 10px;
    }

    .gallery-lightbox-arrow-right {
        right: 10px;
    }

    .gallery-lightbox-thumbs {
        max-width: 100%;
        padding: 8px 16px;
    }

    .gallery-lightbox-thumb {
        width: 60px;
        height: 45px;
    }

    /* === ИНФОРМАЦИЯ === */
    .object-info-section {
        padding: 20px 16px;
    }

    .object-info-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-item {
        padding: 12px;
    }

    .info-value {
        font-size: 16px;
    }

    /* === УДОБСТВА === */
    .amenities-section {
        padding: 20px 16px;
    }

    .amenities-section h2 {
        font-size: 20px;
    }

    .amenities-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .amenity-item {
        padding: 12px;
        font-size: 14px;
    }

    .amenity-item i {
        font-size: 18px;
        width: 24px;
    }

    .show-all-amenities {
        margin-top: 16px;
        padding: 12px;
        font-size: 14px;
    }

    /* === ПРАВИЛА === */
    .rules-section {
        padding: 20px 16px;
    }

    .rules-section h2 {
        font-size: 20px;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rule-item {
        padding: 12px;
    }

    /* === КАЛЕНДАРЬ ДОСТУПНОСТИ === */
    .availability-section {
        padding: 20px 16px;
    }

    .availability-section h2 {
        font-size: 20px;
    }

    .availability-calendar {
        padding: 16px;
    }

    .calendar-nav {
        margin-bottom: 16px;
    }

    .calendar-nav button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .calendar-weekdays {
        font-size: 11px;
    }

    .calendar-days {
        gap: 2px;
    }

    .calendar-day {
        font-size: 13px;
        padding: 8px 4px;
    }

    .availability-legend {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .legend-item {
        font-size: 12px;
    }

    /* === ЛОКАЦИЯ === */
    .location-section {
        padding: 20px 16px;
    }

    .location-section h2 {
        font-size: 20px;
    }

    .location-map {
        height: 250px;
        border-radius: 12px;
    }

    .location-address {
        font-size: 14px;
        margin-top: 12px;
    }

    /* === ФОРМА БРОНИРОВАНИЯ (мобильная фиксированная панель) === */
    .booking-panel {
        position: relative;
        border-radius: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        animation: none;
    }

    .booking-panel:hover {
        transform: none;
        box-shadow: none;
    }

    .booking-header {
        margin-bottom: 0;
    }

    .booking-price .price {
        font-size: 20px;
        color: #1a202c;
    }

    .booking-price .per-night {
        font-size: 14px;
        color: #718096;
    }

    .booking-rating {
        color: #1a202c;
    }

    .booking-dates,
    .booking-guests,
    .booking-calculation,
    .no-charge {
        display: none;
    }

    .btn-book {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 12px;
    }

    /* Полноэкранный попап бронирования */
    .booking-popup-mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 2000;
        overflow-y: auto;
        padding: 20px 16px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .booking-popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e7eb;
    }

    .booking-popup-close {
        width: 40px;
        height: 40px;
        border: none;
        background: #f3f4f6;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
    }

    /* === ОТЗЫВЫ === */
    .reviews-section {
        padding: 20px 16px;
    }

    .reviews-section h2 {
        font-size: 20px;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .reviews-rating-big {
        font-size: 48px;
    }

    .reviews-ratings {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .reviews-list {
        gap: 16px;
    }

    .review-card {
        padding: 16px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .review-author-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .reviews-photo-gallery {
        margin: 24px 0 !important;
        padding: 0 16px !important;
    }

    .reviews-photo-gallery h3 {
        font-size: 18px !important;
    }

    .photo-gallery-scroll {
        gap: 8px !important;
    }

    .gallery-photo-item {
        flex: 0 0 150px !important;
        height: 110px !important;
    }

    /* === ПОХОЖИЕ ОБЪЕКТЫ === */
    .similar-objects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .similar-object-image {
        height: 180px;
    }

    .similar-object-title {
        font-size: 15px;
    }

    /* === ПОПАПЫ БРОНИРОВАНИЯ === */
    .booking-popups-overlay {
        padding: 0;
    }

    .booking-popup-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 16px;
    }

    .popup-close {
        top: 10px;
        right: 10px;
    }

    /* Календарь в попапе */
    .popup-calendar {
        padding: 0;
    }

    .popup-calendar .calendar-weekdays {
        font-size: 12px;
    }

    .popup-calendar .calendar-day {
        padding: 10px 6px;
        font-size: 14px;
    }

    /* Гости в попапе */
    .guests-popup {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        padding: 24px 16px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
        margin-top: 0;
    }

    .guests-row {
        padding: 16px 0;
    }

    .guests-label strong {
        font-size: 18px;
    }

    .guest-btn {
        width: 40px;
        height: 40px;
    }

    .guest-count {
        font-size: 18px;
    }

    /* Safe area для iPhone */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        .object-detail-sidebar {
            padding-bottom: calc(12px + env(safe-area-inset-bottom));
        }

        .object-detail-main {
            padding-bottom: 100px;
        }
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/style.tablet.css?17895143614743*/
/**
 * Планшетные стили детальной страницы объекта (768px - 1024px)
 * Модуль: konsultante.sutochno
 */

@media (min-width: 768px) and (max-width: 1024px) {
    /* === БАЗОВЫЕ СТИЛИ === */
    .phoenix-object-detail {
        width: 95%;
        padding: 30px 20px;
    }

    .object-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .object-detail-sidebar {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .object-detail-full-width {
        margin-top: 50px;
    }

    /* === ШАПКА === */
    .detail-page-header {
        padding: 30px;
    }

    .detail-header-content h1 {
        font-size: 28px;
    }

    .detail-header-meta {
        font-size: 15px;
    }

    /* === ГАЛЕРЕЯ === */
    .object-gallery {
        gap: 6px;
        margin-bottom: 24px;
    }

    .gallery-main {
        flex: 0 0 50%;
        height: 350px;
    }

    .gallery-thumbs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        max-height: 350px;
    }

    .gallery-thumb {
        height: auto;
        aspect-ratio: 4/3;
    }

    /* Lightbox планшетный */
    .gallery-lightbox-content {
        max-width: calc(100vw - 100px);
    }

    .gallery-lightbox-image-wrap {
        max-width: calc(100vw - 120px);
        max-height: 55vh;
    }

    .gallery-lightbox-arrow {
        width: 50px;
        height: 50px;
    }

    .gallery-lightbox-arrow-left {
        left: 20px;
    }

    .gallery-lightbox-arrow-right {
        right: 20px;
    }

    .gallery-lightbox-thumb {
        width: 70px;
        height: 52px;
    }

    /* === ИНФОРМАЦИЯ === */
    .object-info-section {
        padding: 24px;
    }

    .object-info-section h2 {
        font-size: 22px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* === УДОБСТВА === */
    .amenities-section {
        padding: 24px;
    }

    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-item {
        padding: 14px;
    }

    /* === ПРАВИЛА === */
    .rules-section {
        padding: 24px;
    }

    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* === КАЛЕНДАРЬ ДОСТУПНОСТИ === */
    .availability-section {
        padding: 24px;
    }

    .availability-calendar {
        padding: 20px;
    }

    .calendar-day {
        padding: 10px 6px;
        font-size: 14px;
    }

    /* === ЛОКАЦИЯ === */
    .location-section {
        padding: 24px;
    }

    .location-map {
        height: 300px;
    }

    /* === ФОРМА БРОНИРОВАНИЯ === */
    .booking-panel {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .booking-price .price {
        font-size: 24px;
    }

    .booking-dates {
        gap: 10px;
    }

    .date-field {
        padding: 14px;
    }

    .btn-book {
        padding: 16px;
        font-size: 16px;
    }

    /* === ОТЗЫВЫ === */
    .reviews-section {
        padding: 24px;
    }

    .reviews-summary {
        flex-direction: row;
        gap: 24px;
    }

    .reviews-ratings {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-list {
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    /* === ПОХОЖИЕ ОБЪЕКТЫ === */
    .similar-objects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .similar-object-image {
        height: 180px;
    }

    /* === ПОПАПЫ === */
    .booking-popup-content {
        max-width: 500px;
        margin: 60px auto;
        border-radius: 20px;
    }

    .guests-popup {
        max-width: 400px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Portrait orientation */
    @media (orientation: portrait) {
        .object-gallery {
            flex-direction: column;
        }

        .gallery-main {
            flex: none;
            width: 100%;
            height: 300px;
        }

        .gallery-thumbs-grid {
            grid-template-columns: repeat(4, 1fr);
            max-height: 100px;
        }

        .info-grid {
            grid-template-columns: 1fr;
        }

        .amenities-list {
            grid-template-columns: 1fr;
        }
    }
}

/* End */


/* Start:/local/components/konsultante.sutochno/object-detail/templates/.default/css/theme-dark-gold.css?178951436136043*/
/* === ТЕМА: PHOENIX DARK === */
/* Цвета: черный #000, золотой #d4a531, белый #fff, серый #ccc */

/* ========== ШАПКА СТРАНИЦЫ (вне .phoenix-object-detail) ========== */
.detail-page-header {
    background: #000000 !important;
    border-bottom: 1px solid #333333 !important;
}

.detail-header-content h1 {
    color: #ffffff !important;
}

.header-rating,
.header-location {
    color: #cccccc !important;
}

.header-rating i {
    color: #d4a531 !important;
}

.header-location i {
    color: #d4a531 !important;
}

/* ========== БАЗОВЫЕ СТИЛИ ========== */
.phoenix-object-detail {
    background: #000000 !important;
    color: #ffffff !important;
}

/* ========== ЗАГОЛОВКИ ========== */
.phoenix-object-detail h1,
.phoenix-object-detail h2,
.phoenix-object-detail h3,
.phoenix-object-detail h4,
.phoenix-object-detail .object-title,
.phoenix-object-detail .section-title,
.object-info h2,
.object-amenities h2,
.object-rules h2,
.object-calendar h2,
.object-location h2,
.object-reviews h2,
.object-availability h2,
.location-title {
    color: #ffffff !important;
    text-shadow: none !important;
}

/* ========== ТЕКСТ - КОНТРАСТНЫЙ ========== */
.phoenix-object-detail p,
.phoenix-object-detail span,
.phoenix-object-detail li,
.phoenix-object-detail .description-text,
.phoenix-object-detail .review-text,
.phoenix-object-detail .rule-content span,
.phoenix-object-detail .nearby-content span,
.phoenix-object-detail .host-member-since,
.phoenix-object-detail .object-meta,
.phoenix-object-detail .calendar-subtitle,
.availability-subtitle,
.availability-info p,
.location-district p,
.object-type p,
.feature-item p,
.characteristic-item p {
    color: #cccccc !important;
}

/* Карточки и блоки */
.phoenix-object-detail .object-info-card,
.phoenix-object-detail .booking-card,
.phoenix-object-detail .amenities-section,
.phoenix-object-detail .rules-section,
.phoenix-object-detail .location-section,
.phoenix-object-detail .reviews-section,
.phoenix-object-detail .object-amenities {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 16px !important;
    padding: 24px !important;
}

/* Цена - золотой */
.phoenix-object-detail .price-value,
.phoenix-object-detail .object-price,
.phoenix-object-detail .booking-price {
    color: #d4a531 !important;
    font-weight: 700 !important;
}

/* Кнопки - золотые с черным текстом */
.phoenix-object-detail .btn-primary,
.phoenix-object-detail .booking-btn,
.phoenix-object-detail .btn-book {
    background: #d4a531 !important;
    color: #000000 !important;
    border: none !important;
    font-weight: 600 !important;
}

.phoenix-object-detail .btn-primary:hover,
.phoenix-object-detail .booking-btn:hover,
.phoenix-object-detail .btn-book:hover {
    background: #e0b545 !important;
}

/* Вторичные кнопки */
.phoenix-object-detail .btn-secondary,
.phoenix-object-detail .btn-outline {
    background: transparent !important;
    border: 1px solid #d4a531 !important;
    color: #d4a531 !important;
}

.phoenix-object-detail .btn-secondary:hover,
.phoenix-object-detail .btn-outline:hover {
    background: rgba(212, 165, 49, 0.1) !important;
}

/* Иконки - золотые */
.phoenix-object-detail .fa,
.phoenix-object-detail .fas,
.phoenix-object-detail .far,
.phoenix-object-detail i[class*="fa-"] {
    color: #d4a531 !important;
}

/* Звезды рейтинга */
.phoenix-object-detail .rating-stars i,
.phoenix-object-detail .star-rating i,
.header-rating i {
    color: #d4a531 !important;
}

/* Разделители */
.phoenix-object-detail .section-divider,
.phoenix-object-detail hr {
    background: #333333 !important;
    border: none !important;
    height: 1px !important;
}

/* Секция удобств */
.phoenix-object-detail .amenities-category-title,
.phoenix-object-detail .amenity-category h4 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #333333 !important;
}

.phoenix-object-detail .amenity-item {
    background: #2a2a2a !important;
    border: 1px solid #333333 !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.phoenix-object-detail .amenity-item:hover {
    border-color: #d4a531 !important;
}

.phoenix-object-detail .amenity-item i {
    width: 24px !important;
    text-align: center !important;
    color: #d4a531 !important;
}

.phoenix-object-detail .amenity-item span,
.phoenix-object-detail .amenity-item .amenity-name {
    color: #ffffff !important;
}

/* Кнопка показать все */
.phoenix-object-detail .show-all-amenities,
.phoenix-object-detail .btn-show-more {
    background: transparent !important;
    border: 1px solid #d4a531 !important;
    color: #d4a531 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    margin-top: 16px !important;
}

.phoenix-object-detail .show-all-amenities:hover,
.phoenix-object-detail .btn-show-more:hover {
    background: rgba(212, 165, 49, 0.15) !important;
}

/* Галерея */
.phoenix-object-detail .gallery-section {
    border-radius: 16px !important;
    overflow: hidden !important;
}

.phoenix-object-detail .gallery-thumbnail {
    border: 2px solid transparent !important;
}

.phoenix-object-detail .gallery-thumbnail:hover,
.phoenix-object-detail .gallery-thumbnail.active {
    border-color: #d4a531 !important;
}

/* Информация об объекте */
.phoenix-object-detail .object-meta,
.phoenix-object-detail .object-features {
    background: #1a1a1a !important;
    border-radius: 12px !important;
    padding: 16px !important;
}

.phoenix-object-detail .meta-item,
.phoenix-object-detail .feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #333333 !important;
}

.phoenix-object-detail .meta-item:last-child,
.phoenix-object-detail .feature-item:last-child {
    border-bottom: none !important;
}

/* Календарь */
.phoenix-object-detail .availability-calendar {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 16px !important;
}

.phoenix-object-detail .calendar-header {
    background: #2a2a2a !important;
    border-bottom: 1px solid #333333 !important;
    color: #ffffff !important;
}

.phoenix-object-detail .calendar-day {
    color: #ffffff !important;
}

.phoenix-object-detail .calendar-day.selected {
    background: #d4a531 !important;
    color: #000000 !important;
}

/* Карта */
.phoenix-object-detail .location-map {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #333333 !important;
}

/* Отзывы */
.phoenix-object-detail .review-card {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
}

.phoenix-object-detail .review-author {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.phoenix-object-detail .review-date {
    color: #666666 !important;
}

.phoenix-object-detail .review-text {
    color: #888888 !important;
}

/* Правила */
.phoenix-object-detail .rules-list {
    list-style: none !important;
    padding: 0 !important;
}

.phoenix-object-detail .rules-list li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #333333 !important;
    color: #888888 !important;
}

.phoenix-object-detail .rules-list li:last-child {
    border-bottom: none !important;
}

/* Форма бронирования */
.phoenix-object-detail .booking-form input,
.phoenix-object-detail .booking-form select {
    background: #2a2a2a !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px !important;
}

.phoenix-object-detail .booking-form input:focus,
.phoenix-object-detail .booking-form select:focus {
    border-color: #d4a531 !important;
    outline: none !important;
}

.phoenix-object-detail .booking-form label {
    color: #888888 !important;
    font-weight: 500 !important;
}

/* Бейджи */
.phoenix-object-detail .badge,
.phoenix-object-detail .status-badge {
    background: #d4a531 !important;
    color: #000000 !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
}

/* Скрытые секции */
.phoenix-object-detail .amenities-hidden {
    display: none;
}

.phoenix-object-detail .amenities-hidden.visible {
    display: block;
}

/* Ссылки */
.phoenix-object-detail a {
    color: #d4a531 !important;
    text-decoration: none !important;
}

.phoenix-object-detail a:hover {
    color: #e0b545 !important;
}

/* Скроллбар */
.phoenix-object-detail ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.phoenix-object-detail ::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.phoenix-object-detail ::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

.phoenix-object-detail ::-webkit-scrollbar-thumb:hover {
    background: #d4a531;
}

/* ========== ПЕРЕКРЫТИЕ ГРАДИЕНТОВ ИЗ info.css ========== */

/* Статистика - ЗОЛОТАЯ окантовка и текст */
.phoenix-object-detail .stat-item,
.stat-item {
    background: #000000 !important;
    color: #d4a531 !important;
    border: 2px solid #d4a531 !important;
    box-shadow: none !important;
}

.stat-item span,
.stat-item strong,
.phoenix-object-detail .stat-item span,
.phoenix-object-detail .stat-item strong {
    color: #d4a531 !important;
}

/* Владелец - убираем розовый градиент */
.phoenix-object-detail .object-host,
.object-host {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #333333 !important;
    box-shadow: none !important;
}

.object-host .host-name,
.object-host .host-member-since {
    color: #ffffff !important;
}

.superhost-badge {
    background: #d4a531 !important;
    color: #000000 !important;
}

/* Тип объекта */
.phoenix-object-detail .object-type,
.object-type {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    box-shadow: none !important;
}

.object-type strong {
    color: #ffffff !important;
}

/* Особенности - убираем градиент */
.phoenix-object-detail .object-features,
.object-features {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 16px !important;
}

.object-features h2::after {
    background: #d4a531 !important;
}

.feature-item {
    background: #2a2a2a !important;
    border: 1px solid #333333 !important;
    box-shadow: none !important;
}

.feature-item i {
    color: #d4a531 !important;
    background: #333333 !important;
}

.feature-item strong {
    color: #ffffff !important;
}

/* Характеристики */
.characteristic-item {
    background: #2a2a2a !important;
}

.characteristic-item i {
    background: #d4a531 !important;
    color: #000000 !important;
}

.characteristic-item strong {
    color: #ffffff !important;
}

/* Кнопка "показать больше" */
.show-more-btn {
    background: #d4a531 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

/* ========== ПЕРЕКРЫТИЕ ГРАДИЕНТОВ ИЗ availability.css ========== */

/* Секция доступности - убираем фиолетовый градиент */
.phoenix-object-detail .object-availability,
.object-availability {
    background: #000000 !important;
    border: 1px solid #333333 !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    padding: 40px !important;
}

.object-availability h2 {
    color: #ffffff !important;
    text-shadow: none !important;
}

.availability-subtitle {
    color: #cccccc !important;
}

/* Календарь внутри availability */
.availability-calendar-wrapper {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    box-shadow: none !important;
}

.availability-calendar-wrapper .calendar-month {
    color: #d4a531 !important;
}

.availability-calendar-wrapper .calendar-nav button {
    background: #d4a531 !important;
    box-shadow: none !important;
}

.availability-calendar-wrapper .calendar-nav button i {
    color: #000000 !important;
}

.availability-calendar-wrapper .calendar-weekday {
    color: #d4a531 !important;
}

.availability-calendar-wrapper .calendar-day {
    background: #2a2a2a !important;
    color: #d4a531 !important;
}

.availability-calendar-wrapper .calendar-day.holiday {
    color: #ff9b9b !important;
}

.availability-calendar-wrapper .calendar-day.today {
    border-color: #d4a531 !important;
}

.availability-calendar-wrapper .calendar-day.booked {
    background: #333333 !important;
    color: #666666 !important;
}

.availability-calendar-wrapper .calendar-day.booked.holiday {
    color: #ff9b9b !important;
}

.availability-calendar-wrapper .calendar-day.available:hover {
    background: #d4a531 !important;
    color: #000000 !important;
}

@media (min-width: 769px) {
    .availability-calendar-wrapper .calendar-day {
        font-size: 40px;
    }
}

/* Легенда */
.availability-legend .legend-item {
    color: #cccccc !important;
}

.availability-legend .legend-color.available {
    background: #2a2a2a !important;
    border: 1px solid #d4a531 !important;
}

.availability-legend .legend-color.booked {
    background: #333333 !important;
    border: 1px solid #666666 !important;
}

/* Информация */
.availability-info {
    background: #1a1a1a !important;
}

.availability-info i {
    color: #d4a531 !important;
}

/* ========== ПЕРЕКРЫТИЕ ГРАДИЕНТОВ ИЗ location.css ========== */

/* Заголовок локации */
.object-location h2::after {
    background: #d4a531 !important;
}

/* Карта */
.location-map-wrapper {
    border: 1px solid #333333 !important;
    box-shadow: none !important;
}

.location-title {
    background: #1a1a1a !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.location-address-overlay {
    background: #1a1a1a !important;
    box-shadow: none !important;
}

.location-address-overlay p,
.location-address-overlay strong {
    color: #ffffff !important;
}

.location-address-overlay .location-note {
    color: #cccccc !important;
}

.location-address-overlay .location-note i {
    color: #d4a531 !important;
}

/* Переключатель */
.toggle-switch {
    background: #1a1a1a !important;
    box-shadow: none !important;
}

.toggle-label {
    color: #ffffff !important;
}

.toggle-slider {
    background: #333333 !important;
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider {
    background: #d4a531 !important;
}

/* Что рядом */
.location-nearby {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    box-shadow: none !important;
}

.location-nearby h3 {
    color: #ffffff !important;
}

.nearby-item {
    background: #2a2a2a !important;
    border: 1px solid #333333 !important;
}

.nearby-item:hover {
    border-color: #d4a531 !important;
    box-shadow: none !important;
}

.nearby-item i {
    color: #d4a531 !important;
    background: #1a1a1a !important;
}

.nearby-content strong {
    color: #ffffff !important;
}

.nearby-content span {
    color: #cccccc !important;
}

/* О районе */
.location-district {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.location-district h3 {
    color: #ffffff !important;
}

.location-district h3::before {
    background: #d4a531 !important;
}

.location-district p {
    color: #cccccc !important;
}

/* Скроллбар nearby */
.nearby-list::-webkit-scrollbar-track {
    background: #1a1a1a !important;
}

.nearby-list::-webkit-scrollbar-thumb {
    background: #d4a531 !important;
}

/* ========== ПРАВИЛА РАЗМЕЩЕНИЯ ========== */
.phoenix-object-detail .object-rules,
.object-rules {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 16px !important;
    padding: 30px !important;
}

.object-rules h2 {
    color: #ffffff !important;
}

.rule-item {
    border-bottom: 1px solid #333333 !important;
}

.rule-item i {
    color: #d4a531 !important;
}

.rule-content strong {
    color: #ffffff !important;
}

.rule-content span {
    color: #cccccc !important;
}

/* ========== БОКОВАЯ ПАНЕЛЬ БРОНИРОВАНИЯ ========== */
.booking-panel {
    background: #000000 !important;
    border: 2px solid #d4a531 !important;
    box-shadow: 0 10px 40px rgba(212, 165, 49, 0.2) !important;
    animation: none !important;
}

.booking-panel:hover {
    box-shadow: 0 15px 50px rgba(212, 165, 49, 0.3) !important;
}

.booking-price .price {
    color: #d4a531 !important;
    text-shadow: none !important;
}

.booking-price .per-night {
    color: #cccccc !important;
}

.booking-rating {
    color: #ffffff !important;
}

.booking-rating i {
    color: #d4a531 !important;
}

/* Поля дат */
.date-field {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.date-field:hover {
    border-color: #d4a531 !important;
    background: #1a1a1a !important;
    box-shadow: none !important;
    transform: none !important;
}

.date-field label {
    color: #d4a531 !important;
}

.date-display,
.date-field input {
    color: #ffffff !important;
}

/* Селектор гостей */
.booking-guests > label {
    color: #d4a531 !important;
}

.guests-selector {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}

.guests-selector:hover {
    border-color: #d4a531 !important;
    background: #1a1a1a !important;
    box-shadow: none !important;
    transform: none !important;
}

.guests-selector i {
    color: #d4a531 !important;
}

/* Popup гостей */
.guests-popup {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.guests-label strong {
    color: #ffffff !important;
}

.guests-label span {
    color: #cccccc !important;
}

.guest-btn {
    background: #000000 !important;
    border-color: #d4a531 !important;
    color: #d4a531 !important;
}

.guest-btn:hover {
    background: #d4a531 !important;
    color: #000000 !important;
}

.guest-count {
    color: #ffffff !important;
}

.guests-close {
    background: #d4a531 !important;
    color: #000000 !important;
}

/* Кнопка бронирования */
.btn-book {
    background: #d4a531 !important;
    color: #000000 !important;
    box-shadow: 0 5px 20px rgba(212, 165, 49, 0.3) !important;
}

.btn-book:hover {
    background: #e6b93d !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(212, 165, 49, 0.4) !important;
}

.no-charge {
    color: #cccccc !important;
}

/* Расчет стоимости */
.calc-row {
    color: #ffffff !important;
}

.calc-label {
    color: #cccccc !important;
}

.calc-label i {
    color: #d4a531 !important;
}

.calc-value {
    color: #ffffff !important;
}

.calc-divider {
    border-color: #333333 !important;
}

.calc-total {
    color: #d4a531 !important;
}

/* ========== ПРАВИЛА И ОСОБЕННОСТИ - В ОДНУ СТРОКУ ========== */
.phoenix-object-detail .object-detail-main .object-rules,
.phoenix-object-detail .object-detail-main .object-features {
    width: 48% !important;
    display: inline-block !important;
    vertical-align: top !important;
    margin-right: 2% !important;
}

.phoenix-object-detail .object-detail-main .object-features {
    margin-right: 0 !important;
}

/* ========== КНОПКА НАПИСАТЬ ОТЗЫВ ========== */
.write-review-btn {
    background: #d4a531 !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.write-review-btn:hover {
    background: #e6b93d !important;
    color: #000000 !important;
}

.show-all-reviews-btn {
    background: transparent !important;
    color: #d4a531 !important;
    border: 2px solid #d4a531 !important;
}

.show-all-reviews-btn:hover {
    background: #d4a531 !important;
    color: #000000 !important;
}

/* ========== СЕКЦИЯ ОТЗЫВОВ ========== */
.object-reviews {
    background: #000000 !important;
}

.object-reviews h2 {
    color: #ffffff !important;
}

.review-card {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.review-author {
    color: #ffffff !important;
}

.review-date {
    color: #888888 !important;
}

.review-text {
    color: #cccccc !important;
}

.review-rating i {
    color: #d4a531 !important;
}

/* Заголовок отзывов */
.reviews-header {
    background: transparent !important;
}

.reviews-header h2 i {
    color: #d4a531 !important;
}

/* Рейтинги */
.reviews-ratings {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 12px !important;
    padding: 20px !important;
}

.rating-item {
    color: #ffffff !important;
}

.rating-label {
    color: #cccccc !important;
}

.rating-bar {
    background: #333333 !important;
}

.rating-fill {
    background: #d4a531 !important;
}

.rating-value {
    color: #d4a531 !important;
}

/* Карточка отзыва */
.review-item {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 12px !important;
}

.author-avatar {
    background: #d4a531 !important;
    color: #000000 !important;
}

.author-info strong {
    color: #ffffff !important;
}

.review-date {
    color: #888888 !important;
}

.review-pros strong,
.review-cons strong,
.review-impression strong {
    color: #ffffff !important;
}

.review-pros i {
    color: #4caf50 !important;
}

.review-cons i {
    color: #f44336 !important;
}

.review-impression i {
    color: #d4a531 !important;
}

/* Попап формы отзыва */
.review-form-container {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
}

.review-form-container h3 {
    color: #ffffff !important;
}

.review-form-subtitle {
    color: #cccccc !important;
}

.review-form label {
    color: #cccccc !important;
}

.review-form input,
.review-form textarea {
    background: #2a2a2a !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #d4a531 !important;
}

.review-form .btn-cancel {
    background: transparent !important;
    color: #cccccc !important;
    border: 1px solid #333333 !important;
}

.review-form .btn-submit {
    background: #d4a531 !important;
    color: #000000 !important;
}

.photo-upload-label {
    background: #2a2a2a !important;
    border: 2px dashed #333333 !important;
    color: #cccccc !important;
}

.photo-upload-label:hover {
    border-color: #d4a531 !important;
}

.review-form-close {
    color: #cccccc !important;
}

.review-form-close:hover {
    color: #d4a531 !important;
}

/* ========== ПЕРЕОПРЕДЕЛЕНИЕ БЕЛЫХ ФОНОВ НА ЧЕРНЫЕ ========== */

/* Галерея */
.object-gallery,
.gallery-grid,
.thumbs-nav-btn,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    background: #1a1a1a !important;
}

/* Отзывы */
.review-item,
.show-all-reviews-btn,
.reviews-modal-content,
.btn-cancel {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}

/* Локация */
.location-nearby,
.nearby-icon,
.location-toggle {
    background: #1a1a1a !important;
}

/* Информация */
.object-stats-extended .stat-item,
.host-info-detailed,
.characteristic-card {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}

/* Бронирование */
.date-field:hover,
.guests-selector:hover,
.guests-dropdown,
.guest-counter-btn,
.btn-book {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}

/* Попапы бронирования */
.calendar-popup,
.guests-popup,
.booking-guests-popup,
.calendar-nav-btn,
.pet-option {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}

/* Попап выбора гостей - чёрная подложка */
.booking-guests-popup {
    background: #000000 !important;
    border: 1px solid var(--phoenix-gold) !important;
}

.booking-guests-popup .guests-counter__text strong {
    color: #ffffff !important;
}

.booking-guests-popup .guests-counter__text span {
    color: #999999 !important;
}

.booking-guests-popup .guests-counter__button {
    background: #1a1a1a !important;
    border-color: var(--phoenix-gold) !important;
    color: #ffffff !important;
}

.booking-guests-popup .guests-counter__button:hover {
    background: var(--phoenix-gold) !important;
    color: #000000 !important;
}

.booking-guests-popup .guests-counter__count {
    color: #ffffff !important;
}

.booking-guests-popup .pet-checkbox-label {
    color: #ffffff !important;
}

.booking-guests-popup .guests-ready-btn {
    background: var(--phoenix-gold) !important;
    color: #000000 !important;
}

.switcher-dot {
    background: #d4a531 !important;
}

/* Доступность */
.availability-calendar-wrapper {
    background: #000000 !important;
    border: 1px solid #333333 !important;
    right: 20px !important;
}

/* Календарь - чёрная подложка */
.calendar-dropdown,
.calendar-popup {
    background: #000000 !important;
    border: 1px solid #333333 !important;
    right: 20px !important;
}

/* Мобильные стили */
.mobile-booking-bar,
.mobile-calendar-modal {
    background: #000000 !important;
}

/* Правила и удобства - декоративные линии */
.object-rules::after,
.object-amenities::after {
    background: #d4a531 !important;
}

.rule-card:hover,
.amenity-item:hover {
    background: #2a2a2a !important;
}

/* Календарь */
.calendar-day,
.calendar-header {
    color: #ffffff !important;
}

.calendar-day:hover {
    background: #333333 !important;
}

.calendar-day.selected,
.calendar-day.in-range {
    background: #d4a531 !important;
    color: #000000 !important;
}

.calendar-day.booked {
    background: #333333 !important;
    color: #666666 !important;
}

/* Кнопки навигации */
.thumbs-nav-btn,
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: #2a2a2a !important;
    border-color: #333333 !important;
    color: #d4a531 !important;
}

.thumbs-nav-btn:hover,
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #333333 !important;
    border-color: #d4a531 !important;
}

/* ========== ОСОБЕННОСТИ И ПРАВИЛА В ОДНУ ЛИНИЮ ========== */
.features-rules-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    margin: 30px 0 !important;
    align-items: stretch !important;
    width: 100% !important;
}

.features-half,
.rules-half {
    flex: 1 1 50% !important;
    min-width: 0 !important;
    max-width: 50% !important;
    box-sizing: border-box !important;
}

.object-features-box,
.object-rules {
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 16px !important;
    padding: 24px !important;
    height: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.object-features-box h2,
.object-rules h2 {
    color: #ffffff !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

.object-features-box .features-list,
.object-rules .rules-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.object-features-box .feature-item,
.object-rules .rule-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    background: #2a2a2a !important;
    border-radius: 10px !important;
}

.object-features-box .feature-item i,
.object-rules .rule-item i {
    color: #d4a531 !important;
    width: 24px !important;
    text-align: center !important;
}

.object-features-box .feature-item span,
.object-rules .rule-item span,
.object-rules .rule-content span,
.object-rules .rule-content strong {
    color: #ffffff !important;
}

.no-features {
    color: #666666 !important;
}

/* ========== ГЛОБАЛЬНЫЙ ЧЕРНЫЙ ФОН ========== */
body,
html,
.bx-wrapper,
#content,
.content,
main,
article {
    background: #000000 !important;
}

/* Убираем белый фон у всех элементов внутри детальной страницы */
.phoenix-object-detail *:not(img):not(svg):not(path):not(circle) {
    background-color: transparent;
}

/* Восстанавливаем нужные фоны */
.phoenix-object-detail .object-info-card,
.phoenix-object-detail .booking-card,
.phoenix-object-detail .amenities-section,
.phoenix-object-detail .rules-section,
.phoenix-object-detail .location-section,
.phoenix-object-detail .reviews-section,
.phoenix-object-detail .object-amenities,
.phoenix-object-detail .object-features-box,
.phoenix-object-detail .object-rules,
.phoenix-object-detail .amenity-item,
.phoenix-object-detail .feature-item,
.phoenix-object-detail .rule-item,
.phoenix-object-detail .review-item,
.phoenix-object-detail .calendar-popup,
.phoenix-object-detail .guests-popup,
.phoenix-object-detail .availability-calendar-wrapper {
    background: #1a1a1a !important;
}

/* ========== ПОЛНОЭКРАННЫЙ LIGHTBOX ДЛЯ ФОТО ========== */
.gallery-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    display: none;
}

.gallery-lightbox.active {
    display: block !important;
}

.gallery-lightbox-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 1 !important;
}

.gallery-lightbox-content {
    position: absolute !important;
    top: 2vh !important;
    left: 2vw !important;
    right: 2vw !important;
    bottom: 2vh !important;
    transform: none !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.gallery-lightbox-image-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.gallery-lightbox-image-wrap img,
#gallery-lightbox-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 8px !important;
}

.gallery-lightbox-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 100 !important;
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #d4a531 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 24px !important;
}

.gallery-lightbox-close:hover {
    background: #333 !important;
}

.gallery-lightbox-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    color: #d4a531 !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 24px !important;
}

.gallery-lightbox-arrow:hover {
    background: #333 !important;
}

.gallery-lightbox-arrow-left {
    left: 30px !important;
}

.gallery-lightbox-arrow-right {
    right: 30px !important;
}

.gallery-lightbox-thumbs {
    display: flex !important;
    gap: 8px !important;
    margin-top: 20px !important;
    overflow-x: auto !important;
    max-width: 90vw !important;
    padding: 10px !important;
}

.gallery-lightbox-thumb {
    flex: 0 0 80px !important;
    height: 60px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    opacity: 0.6 !important;
}

.gallery-lightbox-thumb.active {
    border-color: #d4a531 !important;
    opacity: 1 !important;
}

.gallery-lightbox-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.gallery-lightbox-counter {
    color: #ffffff !important;
    margin-top: 15px !important;
    font-size: 16px !important;
}

/* Keep booking calendar dates readable inside the white popup. */
.booking-calendar-popup .day.available:not(.holiday):not(.is-start):not(.is-end) {
    color: #222222 !important;
}

.booking-calendar-popup .day.available.holiday:not(.is-start):not(.is-end) {
    color: #ff3b30 !important;
}

.booking-calendar-popup .day.available:hover:not(.is-start):not(.is-end) {
    color: #111111 !important;
}


/* Guests popup: keep the pets label readable on the dark theme. */
.booking-guests-popup .guests-pets__text {
    color: #ffffff !important;
}

/* End */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/base.css?17895143612183 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/header.css?17895143611214 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/gallery.css?17895143618979 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/info.css?17895143618581 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/combined-info.css?17895143618655 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/amenities.css?17895143612173 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/rules.css?17895143613029 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/availability.css?17895143615159 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/location.css?17895143617223 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/content.css?17895143618084 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/booking.css?178951436118338 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/booking-popups.css?178951436112477 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/reviews.css?178951436119755 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/style.mobile.css?17895143619950 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/style.tablet.css?17895143614743 */
/* /local/components/konsultante.sutochno/object-detail/templates/.default/css/theme-dark-gold.css?178951436136043 */
