/* ============================================ */
/* styles.css - RedVelvet (Бордовая тема)       */
/* ============================================ */

/* --- Подключение шрифтов --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- Сброс стилей и базовые настройки --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3436;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Стилизация полосы прокрутки --- */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #fdf0f3;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    border-radius: 10px;
    border: 2px solid #fdf0f3;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6B162F 0%, #4F1022 100%);
}

/* Для Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #8B1E3F #fdf0f3;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1e272e;
    margin-bottom: 0.5rem;
}

h1 { 
    font-size: 2.8rem; 
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
h2 { 
    font-size: 2.2rem; 
    margin-bottom: 1.5rem;
    text-align: center;
    color: #8B1E3F;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    border-radius: 3px;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

a {
    color: #8B1E3F;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}
a:hover {
    color: #6B162F;
    text-decoration: none;
    transform: translateY(-1px);
}

/* --- Утилиты --- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    text-align: center;
    color: #636e72;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* --- Кнопки --- */
.btn, .btn-primary, .btn-outline, .btn-read {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    line-height: 1.2;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-primary, .btn-read {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(139, 30, 63, 0.3);
}
.btn-primary:hover, .btn-read:hover {
    background: linear-gradient(135deg, #6B162F 0%, #4F1022 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 30, 63, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: #8B1E3F;
    color: #8B1E3F;
}
.btn-outline:hover {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

/* --- Шапка --- */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(139, 30, 63, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #8B1E3F;
    width: 100%;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
}
.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

/* Городской селектор */
.city-selector {
    position: relative;
    margin-left: 20px;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
}
.city-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #8B1E3F;
    border: 1px solid #f5ccd6;
}
.city-current i {
    color: #8B1E3F;
}
.city-selector:hover .city-current {
    background: linear-gradient(135deg, #fbe4e9 0%, #f5ccd6 100%);
}
.city-dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    width: 280px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1003;
    border: 1px solid #f5ccd6;
}
.city-selector:hover .city-dropdown {
    opacity: 1;
    visibility: visible;
    top: 55px;
}
.city-search {
    padding: 15px;
    border-bottom: 1px solid #f5ccd6;
}
.city-search input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #fbe4e9;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.city-search input:focus {
    border-color: #8B1E3F;
    outline: none;
}
.city-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #8B1E3F #fdf0f3;
}
.city-list::-webkit-scrollbar {
    width: 6px;
}
.city-list::-webkit-scrollbar-track {
    background: #fdf0f3;
}
.city-list::-webkit-scrollbar-thumb {
    background: #8B1E3F;
    border-radius: 10px;
}
.city-item {
    display: block;
    padding: 12px 20px;
    color: #2d3436;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.city-item:hover {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    text-decoration: none;
    color: #8B1E3F;
    padding-left: 30px;
}
.city-item.all-cities {
    border-top: 2px solid #f5ccd6;
    margin-top: 5px;
    font-weight: 700;
    color: #8B1E3F;
}

/* Навигация */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #8B1E3F;
    cursor: pointer;
    padding: 5px;
    z-index: 1004;
    flex-shrink: 0;
    transition: all 0.3s;
}
.menu-toggle.active {
    color: #6B162F;
    transform: rotate(90deg);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-close {
    display: none;
}
.nav-item {
    position: relative;
}
.nav-item > a {
    color: #2d3436;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.nav-item > a:hover {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    color: #8B1E3F;
}
.nav-item.active > a {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
}
.nav-item.active > a i {
    color: white;
}

/* Выпадающее меню */
.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    left: auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.15);
    width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    border: 1px solid #f5ccd6;
}
.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 50px;
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2d3436;
    font-size: 0.95rem;
}
.dropdown-menu li a i {
    width: 20px;
    color: #8B1E3F;
}
.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    color: #8B1E3F;
}

/* --- Герой-секция --- */
.hero {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
    width: 100%;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-overlay {
    width: 100%;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}
.hero h1 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    opacity: 0.95;
}

/* Популярные города на главной */
.popular-cities {
    margin-top: 40px;
}
.popular-cities p {
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.popular-cities a {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    font-size: 1rem;
}
.popular-cities a:hover {
    background: white;
    color: #8B1E3F;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.popular-cities a:last-child {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    font-weight: 700;
}

/* Городской hero */
.city-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    background-size: cover !important;
    background-position: center !important;
    margin-top: -80px;
    padding-top: 80px;
    width: 100%;
    position: relative;
}
.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.9) 0%, rgba(107, 22, 47, 0.95) 100%);
    z-index: 1;
}
.city-hero .container {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.city-hero h1 {
    color: white;
    -webkit-text-fill-color: white;
    font-size: 2.5rem;
}
.city-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero для списка городов */
.cities-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
}
.cities-hero .hero-overlay {
    width: 100%;
    padding: 40px 20px;
}
.cities-hero h1 {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

/* --- Hero для статей --- */
.articles-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.articles-hero .hero-overlay {
    width: 100%;
    padding: 40px 20px;
}
.articles-hero h1 {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

/* --- Хлебные крошки --- */
.breadcrumbs {
    padding: 20px 0;
    font-size: 0.95rem;
    color: #b2bec3;
}
.breadcrumbs a {
    color: #636e72;
    padding: 5px 10px;
    border-radius: 30px;
}
.breadcrumbs a:hover {
    background: #fdf0f3;
    color: #8B1E3F;
}
.breadcrumbs span {
    color: #8B1E3F;
    font-weight: 600;
    padding: 5px 10px;
    background: #fdf0f3;
    border-radius: 30px;
}

/* --- Сетки --- */
.cities-grid, .places-grid, .grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}
.categories-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

/* --- Карточки --- */
.city-card, .place-card, .category-card-large {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid #fbe4e9;
}
.city-card:hover, .place-card:hover, .category-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.2);
    border-color: #8B1E3F;
}

/* Карточка города */
.city-card {
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, white 0%, #fdf0f3 100%);
}
.city-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #8B1E3F;
}
.city-stats {
    display: flex;
    gap: 15px;
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 15px;
}
.city-stats i {
    color: #8B1E3F;
    margin-right: 5px;
}
.city-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #8B1E3F;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s;
}
.city-card:hover .city-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Карточка места */
.place-card {
    position: relative;
    cursor: pointer;
}
.place-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.place-card > *:not(.place-card-link) {
    position: relative;
    z-index: 1;
}

/* VIP бейдж */
.vip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #1e272e;
    padding: 4px 0;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.7rem;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(241, 196, 15, 0.3);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    width: 45px;
    text-align: center;
    min-width: 45px;
}
.place-photo {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.place-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.place-card:hover .place-photo img {
    transform: scale(1.1);
}
.photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(139, 30, 63, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    z-index: 3;
}
.place-photo .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(139, 30, 63, 0.9);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 3;
    backdrop-filter: blur(5px);
}
.place-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.place-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.place-info h3 a {
    color: inherit;
}
.place-info h3 a:hover {
    color: #8B1E3F;
}
.place-meta {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 10px;
}
.place-meta span {
    display: block;
    margin-bottom: 5px;
}
.place-meta i {
    color: #8B1E3F;
    width: 18px;
    margin-right: 5px;
}
.place-description {
    font-size: 0.95rem;
    color: #636e72;
    margin-bottom: 15px;
    flex-grow: 1;
}
.place-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.price-from {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B1E3F;
}
.price-hour {
    font-size: 0.8rem;
    color: #b2bec3;
}

/* Карточка категории */
.category-card-large {
    flex-direction: row;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, white 0%, #fdf0f3 100%);
}
.category-card-large.active {
    border-color: #8B1E3F;
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
}
.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: white;
}
.category-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #8B1E3F;
}
.category-count {
    font-size: 0.9rem;
    color: #636e72;
}

/* --- Карточки статей (для главной) --- */
.article-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    border: 1px solid #fbe4e9;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8B1E3F;
    min-height: 3.5rem;
}
.article-card p {
    color: #636e72;
    margin-bottom: 25px;
    flex-grow: 1;
}
.article-card .btn-primary {
    align-self: flex-start;
    margin-top: auto;
}

/* --- СТИЛИ ДЛЯ СТРАНИЦЫ СТАТЕЙ (НОВЫЕ) --- */
.articles-list-section {
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.article-card-large {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #fbe4e9;
    display: flex;
    flex-direction: column;
}

.article-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.2);
    border-color: #8B1E3F;
}

.article-category {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8B1E3F;
    margin-bottom: 15px;
    align-self: flex-start;
    border: 1px solid #f5ccd6;
}

.article-card-large h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1e272e;
}

.article-excerpt {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #95a5a6;
}

.article-date i {
    margin-right: 5px;
    color: #8B1E3F;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8B1E3F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-read-more:hover {
    gap: 15px;
    color: #6B162F;
}

.no-articles {
    text-align: center;
    padding: 80px 20px;
    color: #95a5a6;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    border: 1px solid #fbe4e9;
    margin: 40px 0;
}

.no-articles i {
    color: #fbe4e9;
    margin-bottom: 20px;
}

/* --- Фильтры категорий статей --- */
.categories-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: white;
    color: #8B1E3F;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- СТИЛИ ДЛЯ ДЕТАЛЬНОЙ СТРАНИЦЫ СТАТЬИ (НОВЫЕ) --- */
.article-hero {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    padding: 60px 0;
    color: white;
    margin-top: -80px;
    padding-top: 140px;
}

.article-content {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.article-body {
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-body h2 {
    margin: 40px 0 20px;
    text-align: left;
    left: 0;
    transform: none;
    color: #8B1E3F;
    font-size: 1.8rem;
}

.article-body h2::after {
    left: 0;
    transform: none;
}

.article-body h3 {
    margin: 30px 0 15px;
    color: #1e272e;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body strong {
    color: #8B1E3F;
}

/* Релевантные места по теме статьи */
.relevant-places {
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    border-radius: 24px;
    border: 1px solid #f5ccd6;
}

.relevant-places h3 {
    color: #8B1E3F;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

.places-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.place-mini-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.1);
    border: 1px solid #fbe4e9;
    transition: all 0.3s;
}

.place-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 30, 63, 0.15);
    border-color: #8B1E3F;
}

.place-mini-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.place-mini-info {
    padding: 15px;
}

.place-mini-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.place-mini-info h4 a {
    color: #1e272e;
    text-decoration: none;
}

.place-mini-info h4 a:hover {
    color: #8B1E3F;
}

.place-mini-city {
    color: #636e72;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.place-mini-price {
    font-weight: 700;
    color: #8B1E3F;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.btn-place-mini {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
}

.btn-place-mini:hover {
    background: linear-gradient(135deg, #6B162F 0%, #4F1022 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.3);
    color: white;
}

/* Похожие статьи */
.similar-articles {
    margin: 50px 0;
}

.similar-articles h3 {
    color: #8B1E3F;
    margin-bottom: 20px;
}

.similar-list {
    list-style: none;
}

.similar-list li {
    margin-bottom: 10px;
}

.similar-list a {
    display: block;
    padding: 15px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #fbe4e9;
    color: #1e272e;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.similar-list a:hover {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
    transform: translateX(5px);
    border-color: transparent;
}

/* Сайдбар статьи */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-block {
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    margin-bottom: 30px;
    border: 1px solid #fbe4e9;
}

.sidebar-block h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fbe4e9;
    color: #8B1E3F;
}

.sidebar-categories,
.sidebar-cities {
    list-style: none;
}

.sidebar-categories li,
.sidebar-cities li {
    margin-bottom: 10px;
}

.sidebar-categories a,
.sidebar-cities a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #2d3436;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar-categories a:hover,
.sidebar-cities a:hover {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    color: #8B1E3F;
    padding-left: 20px;
}

.sidebar-categories a i {
    width: 20px;
    color: #8B1E3F;
}

.sidebar-cities a {
    font-weight: 400;
}

/* --- Категории навигация --- */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}
.category-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: white;
    border: 2px solid #fbe4e9;
    border-radius: 50px;
    color: #2d3436;
    font-weight: 600;
    transition: all 0.3s;
}
.category-link i {
    color: #8B1E3F;
}
.category-link:hover {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    border-color: transparent;
    color: white;
}
.category-link:hover i {
    color: white;
}

/* --- Поиск --- */
.search-bar {
    max-width: 500px;
    margin: 30px auto 0 auto;
}
.search-bar input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 60px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}
.search-bar input:focus {
    outline: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

/* --- Стили для no-places --- */
.no-places {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    border: 2px solid #fbe4e9;
    margin: 40px 0;
}
.no-places i {
    color: #8B1E3F;
    opacity: 0.5;
    margin-bottom: 20px;
}
.no-places h3 {
    color: #8B1E3F;
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.no-places p {
    color: #636e72;
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.categories-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.categories-mini .btn-outline {
    padding: 12px 25px;
    font-size: 1rem;
}

/* --- Детальная страница места --- */
.place-hero {
    padding: 50px 0;
    background: linear-gradient(135deg, #fdf0f3 0%, #ffffff 100%);
}
.place-hero h1 {
    font-size: 2.5rem;
}
.place-hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.place-hero-info {
    flex: 2;
    min-width: 300px;
}
.place-hero-price {
    flex: 1;
    min-width: 250px;
}
.price-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.1);
    border: 2px solid #fbe4e9;
}
.price-card .price-from {
    font-size: 2.2rem;
    font-weight: 800;
    color: #8B1E3F;
}
.price-unit {
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 20px;
}
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.place-badges {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}
.badge {
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
}
.badge.vip { background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%); color: #1e272e; }
.badge.new { background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%); color: white; }
.place-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #636e72;
    font-size: 0.95rem;
}
.info-item i {
    color: #8B1E3F;
    width: 18px;
}

/* --- Другие города --- */
.nearby-cities {
    padding: 50px 0;
    background: #fdf0f3;
}
.cities-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.city-mini-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.1);
    text-decoration: none;
    color: #2d3436;
    transition: all 0.3s;
    border: 1px solid #fbe4e9;
}
.city-mini-card:hover {
    background: #8B1E3F;
    color: white;
    transform: translateY(-3px);
}
.city-mini-card:hover .city-places {
    color: white;
}
.city-name {
    font-weight: 600;
}
.city-places {
    font-size: 0.85rem;
    color: #8B1E3F;
}
.city-mini-card i {
    opacity: 0;
    transition: all 0.3s;
}
.city-mini-card:hover i {
    opacity: 1;
    color: white;
}

/* --- SEO-блоки --- */
.seo-block {
    background: white;
    padding: 60px;
    border-radius: 30px;
    margin: 50px auto;
    border: 2px solid #fbe4e9;
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.1);
    max-width: 1000px;
    text-align: center;
}
.seo-block h2 {
    color: #8B1E3F;
    border-left: none;
    padding-left: 0;
    margin-bottom: 25px;
    text-align: center;
}
.seo-block h2::after {
    left: 50%;
    transform: translateX(-50%);
}
.seo-block h3 {
    color: #8B1E3F;
    margin: 30px 0 15px 0;
    text-align: center;
}
.seo-block ul, .seo-block ol {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.seo-block li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}
.seo-block li:before {
    content: "✓";
    color: #8B1E3F;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.seo-block p {
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Подвал --- */
.footer {
    background: linear-gradient(135deg, #1e272e 0%, #2d3436 100%);
    color: #b2bec3;
    padding: 60px 0 20px 0;
    margin-top: 60px;
    border-top: 4px solid #8B1E3F;
    width: 100%;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-column p {
    margin-bottom: 10px;
}
.footer-column a {
    color: #b2bec3;
    transition: all 0.3s;
}
.footer-column a:hover {
    color: #8B1E3F;
    padding-left: 5px;
    text-decoration: none;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* --- Кнопка "Наверх" --- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 10px 20px rgba(139, 30, 63, 0.4);
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 30, 63, 0.5);
}

/* --- Адаптивность --- */
@media (max-width: 1200px) {
    .nav-item > a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    .details-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    
    .nav-item > a {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    /* Адаптивность для страниц статей */
    .article-content {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .places-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 25px 30px;
        transition: right 0.3s ease;
        z-index: 1003;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
    .nav-menu.active {
        right: 0;
    }
    
    .nav-close {
        display: none;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-item > a {
        padding: 18px 0;
        border-bottom: 1px solid #fbe4e9;
        border-radius: 0;
        justify-content: space-between;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: #fdf0f3;
        margin: 0 0 15px 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        border-radius: 12px;
    }
    
    .nav-item.has-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-menu li a {
        padding: 15px 25px;
    }
    
    /* Затемняющий фон при открытом меню */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        pointer-events: auto;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .categories-grid-large {
        grid-template-columns: 1fr;
    }
    
    .city-hero .container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .seo-block {
        padding: 30px 20px;
        margin: 30px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .place-hero-content {
        flex-direction: column;
    }
    
    .place-hero-info {
        text-align: center;
    }
    
    .place-quick-info {
        justify-content: center;
    }
    
    .popular-cities p {
        gap: 8px;
    }
    
    .popular-cities a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .no-places {
        padding: 40px 20px;
    }
    
    .no-places h3 {
        font-size: 1.5rem;
    }
    
    /* Адаптивность для страниц статей на планшетах */
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .places-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-filter {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .filter-btn {
        text-align: center;
    }
    
    /* Адаптивность для новых стилей */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .details-left,
    .info-card,
    .contact-card {
        padding: 20px;
    }
    
    .article-hero {
        padding-top: 120px;
        padding-bottom: 30px;
    }
    
    .article-hero h1 {
        font-size: 1.8rem;
    }
    
    .article-hero .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .price-row:hover {
        padding: 15px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-item:hover {
        padding: 15px;
    }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 1.8rem; }
    .city-current span:not(.fa) { max-width: 100px; overflow: hidden; text-overflow: ellipsis; }
    .footer-content { grid-template-columns: 1fr; }
    .popular-cities p { flex-direction: column; align-items: stretch; }
    .popular-cities a { text-align: center; }
    .place-hero h1 { font-size: 1.8rem; }
    .categories-mini {
        flex-direction: column;
        align-items: stretch;
    }
    .categories-mini .btn-outline {
        text-align: center;
    }
    
    /* Адаптивность для статей на мобильных */
    .article-card-large {
        padding: 20px;
    }
    
    .article-card-large h3 {
        font-size: 1.2rem;
    }
    
    .sidebar-block {
        padding: 20px;
    }
    
    .relevant-places {
        padding: 20px;
    }
}

/* ============================================ */
/* ДОПОЛНИТЕЛЬНЫЕ СТИЛИ (Добавлено 14.03.2026) */
/* ============================================ */

/* --- Стили для article-hero (детальная страница статьи) --- */
.article-hero {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    padding: 60px 0 40px;
    color: white;
    margin-top: -80px;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.article-hero .container {
    position: relative;
    z-index: 2;
}

.article-hero h1 {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 900px;
}

.article-hero .article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

.article-hero .article-meta i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.article-hero .breadcrumbs {
    padding: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.article-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.article-hero .breadcrumbs a:hover {
    background: white;
    color: #8B1E3F;
}

.article-hero .breadcrumbs span {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
}

/* --- Стили для place-details (детальная страница места) --- */
.place-details {
    padding: 60px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Левая колонка */
.details-left {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    border: 1px solid #fbe4e9;
}

.details-left h2 {
    text-align: left;
    left: 0;
    transform: none;
    color: #8B1E3F;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.details-left h2::after {
    left: 0;
    transform: none;
    width: 60px;
}

.details-left h3 {
    color: #8B1E3F;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    position: relative;
    padding-left: 15px;
}

.details-left h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    border-radius: 3px;
}

.description-full {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    padding: 25px;
    border-radius: 16px;
    line-height: 1.8;
    color: #2d3436;
    border: 1px solid #f5ccd6;
    font-size: 1.05rem;
    margin: 20px 0;
}

.place-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.type-badge {
    padding: 10px 20px;
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #8B1E3F;
    border: 1px solid #f5ccd6;
    transition: all 0.3s;
}

.type-badge:hover {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

.type-badge:hover i {
    color: white;
}

.type-badge i {
    color: #8B1E3F;
    transition: all 0.3s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 16px;
    font-size: 0.95rem;
    border: 1px solid #fbe4e9;
    transition: all 0.3s;
    color: #2d3436;
}

.feature-item:hover {
    background: linear-gradient(135deg, #8B1E3F 0%, #6B162F 100%);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.feature-item:hover i {
    color: white;
}

.feature-item i {
    color: #8B1E3F;
    width: 20px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

/* Правая колонка */
.details-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card,
.contact-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.1);
    border: 1px solid #fbe4e9;
    transition: all 0.3s;
}

.info-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.15);
}

.info-card h3,
.contact-card h3 {
    color: #8B1E3F;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #fbe4e9;
}

.info-card h3 i,
.contact-card h3 i {
    color: #8B1E3F;
}

.price-details {
    margin-top: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #fbe4e9;
    transition: all 0.3s;
}

.price-row:hover {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    padding: 15px;
    border-radius: 12px;
    border-bottom: 1px solid transparent;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.highlight {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    padding: 15px;
    border-radius: 12px;
    margin: 10px 0;
    border: 1px solid #f5ccd6;
}

.price-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #636e72;
    font-weight: 500;
}

.price-label i {
    color: #8B1E3F;
    width: 18px;
}

.price-value {
    font-weight: 700;
    color: #8B1E3F;
    font-size: 1.2rem;
}

/* Контакты */
.contact-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #fbe4e9;
    transition: all 0.3s;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: linear-gradient(135deg, #fdf0f3 0%, #fbe4e9 100%);
    padding: 15px;
    border-radius: 12px;
    border-bottom: 1px solid transparent;
}

.contact-item i {
    font-size: 1.3rem;
    color: #8B1E3F;
    width: 30px;
    text-align: center;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-weight: 600;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
    display: inline-block;
}

.contact-value:hover {
    color: #8B1E3F;
    transform: translateX(5px);
}

/* --- Адаптивность для новых стилей --- */
@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .article-hero .article-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .details-left,
    .info-card,
    .contact-card {
        padding: 20px;
    }
    
    .article-hero {
        padding-top: 120px;
        padding-bottom: 30px;
    }
    
    .article-hero h1 {
        font-size: 1.8rem;
    }
    
    .article-hero .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .price-row:hover {
        padding: 15px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-item:hover {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .details-left h2 {
        font-size: 1.5rem;
    }
    
    .details-left h3 {
        font-size: 1.2rem;
    }
    
    .type-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
    
    .article-hero h1 {
        font-size: 1.5rem;
    }
    
    .article-hero .breadcrumbs {
        font-size: 0.85rem;
    }
    
    .article-hero .breadcrumbs a,
    .article-hero .breadcrumbs span {
        padding: 4px 8px;
    }
}