        /* Базовые стили страницы */
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #fcfbfa;
            color: #2b2b2b;
        }
        
        /* Расширение стандартного контейнера до 1600px под макет */
        @media (min-width: 1600px) {
            .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
                max-width: 1600px;
            }
        }

        /* Плавные переходы для интерактивных элементов */
        a, button, .savu-card, img, .category-box {
            transition: all 0.25s ease-in-out;
        }

        /* ШАПКА САЙТА (БЭМ: .page-header) */
        .page-header {
            border-bottom: 1px solid #eaeaea;
            font-size: 0.85rem;
        }
        .page-header__logo-title {
            font-family: 'Playfair Display', serif;
            margin: 0; 
            font-weight: 700;
            letter-spacing: 6px; 
            font-size: 2.4rem;
        }
        .page-header__logo-subtitle {
            font-size: 0.65rem; 
            letter-spacing: 2px;
        }
        .page-header__lang-toggle {
            font-size: 0.85rem;
            font-weight: bold;
            color: #2b2b2b;
            text-decoration: none;
        }
        .page-header__lang-toggle:hover {
            color: #b39359;
        }

        /* Универсальная золотая кнопка */
        .button-gold {
            background-color: #b39359;
            color: #ffffff !important;
            border-radius: 20px;
            padding: 8px 24px;
            font-size: 0.85rem;
            font-weight: 600;
            border: none;
            text-decoration: none;
            display: inline-block;
        }
        .button-gold:hover {
            background-color: #9e804b;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179, 147, 89, 0.3);
        }

        /* ГЛАВНАЯ НАВИГАЦИЯ (БЭМ: .main-nav) */
        .main-nav__link {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            color: #2b2b2b !important;
            padding: 5px 0;
            border-bottom: 1px solid transparent;
        }
        .main-nav__link:hover {
            color: #b39359 !important;
            border-bottom-color: #b39359;
        }

        /* ХИРО-СЛАЙДЕР С БАННЕРОМ (БЭМ: .hero-slider) */
        .hero-slider {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
        }
        .hero-slider__item {
            height: 580px; 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .hero-slider__content-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #ffffff;
            padding-bottom: 80px; 
        }
        .hero-slider__title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: normal;
            margin-bottom: 5px;
        }
        .hero-slider__title--italic {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: #f1d5a5;
            margin-bottom: 15px;
        }
        .hero-slider__description {
            max-width: 650px;
            font-size: 1rem;
            opacity: 0.95;
            margin: 0 auto 40px auto; 
            line-height: 1.6;
        }

        /* Статичное перекрытие для позиционирования поиска (БЭМ: .hero-overlay) */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            pointer-events: none;
        }
        .hero-overlay__interactive {
            pointer-events: auto;
            width: 100%;
            margin-top: 180px; 
        }

        /* Форма поиска (БЭМ: .search-bar) */
        .search-bar {
            max-width: 780px;
            margin: 0 auto;
            background: #ffffff;
            padding: 8px;
            border-radius: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .search-bar__input {
            border: none;
            padding-left: 20px;
        }
        .search-bar__input:focus {
            box-shadow: none;
        }

        /* ИКОНКИ КАТЕГОРИЙ (БЭМ: .category-box) — ОБНОВЛЕНО */
        .category-link {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }
        .category-box {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 10px 4px;
            height: 100%;
        }
        .category-box__icon-wrapper {
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }
        .category-box__icon {
            font-size: 1.6rem;
            color: #b39359;
            line-height: 1;
        }
        .category-box__title {
            font-size: 0.72rem;
            font-weight: 700;
            color: #2b2b2b;
            text-transform: uppercase;
            margin-bottom: 3px;
            letter-spacing: 0.5px;
        }
        .category-box__subtitle {
            font-size: 0.65rem;
            color: #767676;
            margin: 0;
            line-height: 1.3;
        }
        .category-link:hover .category-box {
            background-color: #fcf8f0;
        }
        
        /* Убираем последний разделитель в ряду */
        @media (min-width: 992px) {
            .category-row .col-lg-1:not(:last-child) .category-box {
                border-right: 1px solid #e5e5e5;
            }
        }

        /* КАРТОЧКИ ГИДА (БЭМ: .savu-card) */
        .savu-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .savu-card {
            border: none;
            background: transparent;
        }
        .savu-card__image-wrap {
            overflow: hidden;
            border-radius: 4px;
        }
        .savu-card__image {
            object-fit: cover;
            height: 240px;
            width: 100%;
        }
        .savu-card-link:hover .savu-card__image {
            transform: scale(1.05);
        }
        .savu-card-link:hover .savu-card__title {
            color: #b39359;
        }
        .savu-card__badge {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #b39359;
            font-weight: 700;
        }
        .savu-card__title {
            font-size: 0.95rem;
            font-weight: bold;
            margin: 5px 0;
        }

        /* СТОРИЗ / НОВОСТИ (БЭМ: .story-tile) */
        .story-link {
            display: block;
            text-decoration: none;
        }
        .story-tile {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            height: 280px;
        }
        .story-tile__image {
            transition: transform 0.4s ease;
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            filter: brightness(0.55);
        }
        .story-link:hover .story-tile__image {
            transform: scale(1.06);
        }
        .story-link:hover .story-tile__title {
            text-decoration: underline;
        }
        .story-tile__content {
            position: absolute;
            bottom: 0;
            padding: 16px;
            z-index: 2;
        }
        .story-tile__tag {
            font-size: 0.6rem; 
            color: #f1d5a5;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
        }
        .story-tile__title {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: bold;
        }

        /* СЕТЬ КРЕАТОРОВ (БЭМ: .creator-profile, .cooperation-box) */
        .creator-link {
            text-decoration: none;
            color: inherit;
            display: inline-block;
        }
        .creator-profile__avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            padding: 3px;
            border: 2px solid #b39359;
            object-fit: cover;
        }
        .creator-link:hover .creator-profile__avatar {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(179, 147, 89, 0.3);
        }
        .creator-link:hover .creator-profile__name {
            color: #b39359;
        }
        .cooperation-box {
            background: #fdfaf4;
            border: 1px solid #f3ebd8;
            border-radius: 8px;
        }

        /* ПРОМО БАННЕР (БЭМ: .promo-banner) */
        .promo-banner-link {
            text-decoration: none;
            display: block;
        }
        .promo-banner {
            background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?q=80&w=1600') center/cover;
            color: #ffffff;
            border-radius: 6px;
            padding: 80px 60px;
        }
        .promo-banner__heading {
            font-family: 'Playfair Display', serif;
        }
        .promo-banner-link:hover .promo-banner {
            filter: brightness(1.05);
        }

        /* НАПРАВЛЕНИЯ / ГОРОДА (БЭМ: .city-card) */
        .city-link {
            display: block;
            height: 100%;
            text-decoration: none;
        }
        .city-card {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            height: 190px;
            width: 100%;
        }
        .city-card__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.65);
            transition: transform 0.35s ease, filter 0.35s ease;
        }
        .city-link:hover .city-card__image {
            transform: scale(1.05);
            filter: brightness(0.75);
        }
        .city-card__overlay {
            position: absolute;
            bottom: 12px;
            left: 12px;
            right: 12px;
            color: #ffffff;
            z-index: 2;
        }
        .city-card__title {
            margin: 0; 
            font-weight: 700;
            text-transform: uppercase; 
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .city-card__link-text {
            font-size: 0.65rem;
            opacity: 0.8;
            display: block;
            margin-top: 2px;
        }

        /* Специальные брейкпоинты для сеток из 12 и 8 колонок в один ряд */
        @media (min-width: 992px) {
            .row-cols-lg-12 > * {
                flex: 0 0 auto;
                width: 8.333333%;
            }
        }
        @media (min-width: 1200px) {
            .row-cols-xl-8 > * {
                flex: 0 0 auto;
                width: 12.5%;
            }
        }

        /* РЕЦЕПТЫ (БЭМ: .recipe-card) */
        .recipe-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .recipe-card {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            height: 200px;
        }
        .recipe-card__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.65);
        }
        .recipe-link:hover .recipe-card__image {
            transform: scale(1.05);
            filter: brightness(0.75);
        }
        .recipe-card__content {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: #ffffff;
        }
        .recipe-card__tag {
            font-size: 0.65rem;
            text-transform: uppercase;
            color: #f1d5a5;
            display: block;
            margin-bottom: 2px;
        }
        .recipe-card__title {
            font-size: 0.95rem;
            font-weight: bold;
            margin: 0;
        }

        /* СЕКЦИЯ ПАРТНЕРОВ (БЭМ: .partner-brands) */
        .partner-brands__item {
            text-decoration: none;
            color: #4a4a4a;
            display: block;
        }
        .partner-brands__item:hover {
            color: #b39359;
            transform: scale(1.05);
        }

        /* ПОДВАЛ САЙТА (БЭМ: .page-footer) */
        .page-footer {
            background-color: #0a192f;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        .page-footer__title {
            color: #ffffff;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .page-footer__link {
            color: #a0aec0;
            text-decoration: none;
        }
        .page-footer__link:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .page-footer__social-icon {
            color: #a0aec0;
        }
        .page-footer__social-icon:hover {
            color: #b39359;
        }

        /* Стили для ссылок «Смотреть все» */
        .view-all-button:hover {
            color: #b39359 !important;
        }
        .view-all-button:hover i {
            transform: translateX(4px);
            display: inline-block;
            transition: transform 0.2s;
        }
/* =============================================================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ — личный кабинет и формы авторизации
   (не входили в исходный макет главной страницы)
   ============================================================================= */

/* Формы регистрации / входа */
.savu-auth-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

/* Личный кабинет — сайдбар */
.savu-dashboard__sidebar {
    width: 240px;
    min-height: calc(100vh - 80px);
    background: #fcf8f0;
    border-right: 1px solid #eaeaea;
}
.savu-dashboard__sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.savu-dashboard__org-name { font-size: 0.85rem; }
.savu-dashboard__nav-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    color: #2b2b2b;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 2px;
}
.savu-dashboard__nav-item:hover { background: #ffffff; }
.savu-dashboard__nav-item.active {
    background: #b39359;
    color: #ffffff;
}
.savu-dashboard__content { background: #ffffff; }

@media (max-width: 768px) {
    .savu-dashboard__sidebar { width: 100%; min-height: auto; }
}


/* =============================================================================
   SAVÙ — Places Catalog & Single Place Styles
   Add to assets/css/main.css
   ============================================================================= */


/* =============================================================================
   CATALOG — archive-place.php
   ============================================================================= */

.savu-catalog__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}
.savu-catalog__count {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Active filter badges */
.savu-filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #fdf5e6;
    border: 1px solid #e8d9b5;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #b39359;
    text-decoration: none;
    transition: all 0.2s;
}
.savu-filter-badge:hover {
    background: #b39359;
    color: #ffffff;
    border-color: #b39359;
}
.savu-filter-badge--clear {
    background: transparent;
    color: #888;
    border-color: #ddd;
}
.savu-filter-badge--clear:hover {
    background: #f0f0f0;
    color: #333;
    border-color: #ccc;
}

/* -----------------------------------------------------------------------
   Sidebar Filters
   ----------------------------------------------------------------------- */
.savu-filters {
    position: sticky;
    top: 20px;
}

.savu-filters__group {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.savu-filters__group:last-child {
    border-bottom: none;
}

.savu-filters__heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 12px;
}

.savu-filters__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.savu-filters__list li {
    margin-bottom: 2px;
}

.savu-filters__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #444;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.savu-filters__item:hover {
    background: #fdf5e6;
    color: #b39359;
}
.savu-filters__item.active {
    background: #b39359;
    color: #ffffff;
    font-weight: 600;
}
.savu-filters__item.active .savu-filters__count {
    color: rgba(255,255,255,0.75);
}

.savu-filters__count {
    font-size: 0.72rem;
    color: #aaa;
}

/* Price buttons */
.savu-filters__price-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}
.savu-filters__price-btn:hover {
    border-color: #b39359;
    color: #b39359;
}
.savu-filters__price-btn.active {
    background: #b39359;
    border-color: #b39359;
    color: #ffffff;
}

/* -----------------------------------------------------------------------
   Place Cards (used in archive AND similar places on single)
   ----------------------------------------------------------------------- */
.savu-place-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.savu-place-card {
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}
.savu-place-card-link:hover .savu-place-card {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.savu-place-card__image-wrap {
    position: relative;
    overflow: hidden;
}
.savu-place-card__image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.savu-place-card-link:hover .savu-place-card__image {
    transform: scale(1.05);
}
.savu-place-card__image--placeholder {
    height: 210px;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c5aa80;
}

/* Badges overlaid on image */
.savu-place-card__price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #f1d5a5;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.savu-place-card__booking-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(179, 147, 89, 0.92);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card body */
.savu-place-card__body {
    padding: 14px 16px 16px;
}
.savu-place-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.savu-place-card__type {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b39359;
}
.savu-place-card__score {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2b2b2b;
    display: flex;
    align-items: center;
    gap: 3px;
}
.savu-place-card__score .bi-star-fill {
    color: #f5b93e;
    font-size: 0.7rem;
}
.savu-place-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
    color: #2b2b2b;
    transition: color 0.2s;
}
.savu-place-card-link:hover .savu-place-card__title {
    color: #b39359;
}
.savu-place-card__city {
    font-size: 0.78rem;
    color: #888;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.savu-place-card__city .bi {
    font-size: 0.7rem;
}
.savu-place-card__desc {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.45;
}

/* Pagination */
.savu-pagination .page-link {
    border-radius: 6px !important;
    margin: 0 2px;
    color: #2b2b2b;
    border-color: #eaeaea;
    font-size: 0.85rem;
}
.savu-pagination .page-item.active .page-link {
    background-color: #b39359;
    border-color: #b39359;
}
.savu-pagination .page-link:hover {
    background-color: #fdf5e6;
    color: #b39359;
    border-color: #e8d9b5;
}

/* Empty state */
.savu-empty-state__icon {
    font-size: 3rem;
    color: #d4c5a5;
}


/* =============================================================================
   SINGLE PLACE — single-place.php
   ============================================================================= */

/* Hero */
.savu-place-hero {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}
.savu-place-hero__inner {
    padding: 60px 0 48px;
}

.savu-place-hero__breadcrumb {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.savu-place-hero__breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.savu-place-hero__breadcrumb a:hover { color: #f1d5a5; }
.savu-place-hero__breadcrumb span { opacity: 0.5; }

.savu-place-hero__type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f1d5a5;
    border: 1px solid rgba(241,213,165,0.5);
    padding: 3px 10px;
    border-radius: 20px;
}

.savu-place-hero__open-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.savu-place-hero__open-badge--open {
    background: rgba(34,197,94,0.2);
    color: #86efac;
}
.savu-place-hero__open-badge--closed {
    background: rgba(239,68,68,0.2);
    color: #fca5a5;
}
.savu-place-hero__open-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.savu-place-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.15;
}

.savu-place-hero__location {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* Score in hero */
.savu-place-hero__score {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 8px;
}
.savu-place-hero__score-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f1d5a5;
    line-height: 1;
}
.savu-place-hero__score-stars {
    display: flex;
    gap: 2px;
    font-size: 0.8rem;
    color: #f5b93e;
}
.savu-place-hero__score-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
}

/* Badges */
.savu-place-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.savu-place-hero__badge {
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(179,147,89,0.25);
    border: 1px solid rgba(179,147,89,0.5);
    color: #f1d5a5;
    padding: 4px 12px;
    border-radius: 20px;
}

/* CTA actions in hero */
.savu-place-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* -----------------------------------------------------------------------
   Single place body
   ----------------------------------------------------------------------- */
.savu-place-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    border-left: 3px solid #b39359;
    padding-left: 20px;
    margin-bottom: 0;
}

.savu-place-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #3a3a3a;
}
.savu-place-content p { margin-bottom: 1.2em; }

/* Tags */
.savu-place-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.savu-place-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #e0d4bc;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #7a6a50;
    text-decoration: none;
    transition: all 0.2s;
}
.savu-place-tag:hover {
    background: #b39359;
    border-color: #b39359;
    color: #ffffff;
}
.savu-place-tag--cuisine {
    background: #fdf5e6;
    border-color: #e8d9b5;
    color: #b39359;
    font-weight: 600;
}

/* Section heading */
.savu-section-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2b2b2b;
    padding-bottom: 12px;
    border-bottom: 2px solid #b39359;
    display: inline-block;
}

/* Score breakdown */
.savu-score-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.savu-score-item__label {
    font-size: 0.8rem;
    color: #666;
    width: 90px;
    flex-shrink: 0;
}
.savu-score-item__bar {
    flex: 1;
    height: 5px;
    background: #eaeaea;
    border-radius: 3px;
    overflow: hidden;
}
.savu-score-item__fill {
    height: 100%;
    background: linear-gradient(to right, #b39359, #f1d5a5);
    border-radius: 3px;
    transition: width 0.4s ease;
}
.savu-score-item__value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #2b2b2b;
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

/* Opening hours */
.savu-hours-grid {
    display: grid;
    gap: 2px;
}
.savu-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}
.savu-hours-row:nth-child(even) { background: #fafafa; }
.savu-hours-row--today {
    background: #fdf5e6 !important;
    font-weight: 600;
    color: #b39359;
}
.savu-hours-row__day { color: #555; font-weight: 600; }
.savu-hours-row--today .savu-hours-row__day { color: #b39359; }

/* Gallery thumbs */
.savu-gallery-thumb {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}
.savu-gallery-thumb__image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}
.savu-gallery-thumb:hover .savu-gallery-thumb__image {
    transform: scale(1.06);
}

/* Review teaser */
.savu-review-teaser {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    padding: 16px;
    transition: box-shadow 0.2s;
}
.savu-review-teaser:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.savu-review-teaser__image {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}
.savu-review-teaser__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b39359;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.savu-review-teaser__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 6px;
}
.savu-review-teaser__cta {
    font-size: 0.8rem;
    color: #b39359;
}

/* -----------------------------------------------------------------------
   Right sidebar
   ----------------------------------------------------------------------- */
.savu-place-sidebar__logo {
    text-align: center;
}
.savu-place-sidebar__logo-img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.savu-place-sidebar__card {
    background: #fcfaf6;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}
.savu-place-sidebar__card-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 14px;
}

.savu-place-sidebar__row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #444;
}
.savu-place-sidebar__row:last-child { margin-bottom: 0; }
.savu-place-sidebar__row .bi {
    color: #b39359;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.savu-place-sidebar__row a {
    color: #444;
    text-decoration: none;
    word-break: break-word;
}
.savu-place-sidebar__row a:hover { color: #b39359; }

/* Social icons in sidebar */
.savu-place-sidebar__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eaeaea;
    color: #555;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}
.savu-place-sidebar__social:hover {
    background: #b39359;
    border-color: #b39359;
    color: #ffffff;
}

/* Similar places section */
.savu-similar-places {
    border-top: 1px solid #eaeaea;
}

/* -----------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */
@media (max-width: 991px) {
    .savu-filters {
        position: static;
    }
    .savu-place-hero__title {
        font-size: 2rem;
    }
    .savu-place-hero {
        min-height: 360px;
    }
    .savu-place-hero__actions {
        flex-direction: column;
    }
    .savu-place-hero__actions .btn,
    .savu-place-hero__actions .button-gold {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .savu-catalog__title { font-size: 1.5rem; }
    .savu-place-hero__title { font-size: 1.6rem; }
}
