/* =============================================
   Wkend — Единые стили для всего сайта
   ============================================= */

/* ===== RESET & ROOT ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #FAFAF8;
    --surface: #FFFFFF;
    --text: #1A1A1A;
    --text-2: #555555;
    --text-3: #999999;
    --red: #E53935;
    --green: #2E7D32;
    --amber: #F57C00;
    --border: #EEEEEE;
    --border-strong: #DDDDDD;
    --r: 16px;
    --r-lg: 20px;
    --r-xl: 24px;
    --r-full: 999px;
    --sh: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
    --sh-lg: 0 1px 3px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.06);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   ЛОГОТИП
   ============================================= */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* =============================================
   ТОПБАР
   ============================================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.search-city-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== ВЫБОР ГОРОДА ===== */
.city-selector {
    position: relative;
    flex-shrink: 0;
}

.city-selector .current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: inherit;
}

.city-selector .current:hover {
    border-color: var(--border-strong);
    background: var(--bg-alt);
}

.city-selector .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    max-height: 300px;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 8px;
    z-index: 200;
}

.city-selector .dropdown.open {
    display: block;
}

.city-selector .dropdown input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    margin-bottom: 8px;
}

.city-selector .dropdown input:focus {
    border-color: var(--text);
}

.city-selector .dropdown a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--r);
    font-size: 13px;
    color: var(--text-2);
    transition: all 0.2s var(--ease);
}

.city-selector .dropdown a:hover {
    background: var(--bg-alt);
    color: var(--text);
}

.city-selector .dropdown a.active {
    background: var(--red);
    color: #fff;
}

/* ===== НАВИГАЦИЯ ===== */
.nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.nav a {
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    transition: all 0.3s var(--ease);
}

.nav a:hover {
    background: #F5F5F5;
    color: var(--text);
}

.nav a.active {
    background: var(--red);
    color: #fff;
}

/* ===== ПОИСК ===== */
.search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 4px 4px 4px 16px;
    flex-shrink: 0;
}

.search-form input {
    border: none;
    background: transparent;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    outline: none;
    width: 140px;
    padding: 6px 0;
}

.search-form input::placeholder {
    color: var(--text-3);
}

.search-form button {
    padding: 6px 14px;
    border-radius: var(--r-full);
    background: var(--red);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s var(--ease);
}

.search-form button:hover {
    opacity: 0.85;
}

/* ===== КНОПКИ ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--red);
    color: #fff;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(229, 57, 53, 0.25);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-2);
    transition: all 0.3s var(--ease);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--text);
    color: var(--text);
}

/* =============================================
   PROMO (ГЛАВНАЯ)
   ============================================= */
.promo {
    padding: 40px 0 32px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.promo h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.promo h1 em {
    font-style: italic;
    color: var(--red);
}

.promo p {
    font-size: 15px;
    color: var(--text-2);
    max-width: 400px;
    margin: 16px 0 28px;
    line-height: 1.7;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #FFEBEE;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 14px;
}

.promo-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.6); }
}

.promo-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-text {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.promo-text p {
    font-size: 15px;
    color: var(--text-2);
    max-width: 400px;
    line-height: 1.7;
    margin: 0;
}

/* ===== КАЛЕНДАРЬ ===== */
.calendar {
    background: #F5F5F5;
    border-radius: var(--r-xl);
    padding: 24px 28px;
    border: 1px solid var(--border);
}

.calendar .month {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}

.calendar .month span {
    color: var(--text-3);
    font-weight: 400;
}

.calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar .days .day-name {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 0 2px;
}

.calendar .days .day {
    padding: 6px 0;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    transition: all 0.2s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
}

.calendar .days .day:hover {
    background: var(--surface);
    border-color: var(--border);
}

.calendar .days .day.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.calendar .days .day.has-event {
    font-weight: 700;
    color: var(--text);
    position: relative;
}

.calendar .days .day.has-event::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    margin: 2px auto 0;
}

.calendar .days .day.has-event.active::after {
    background: #fff;
}

.calendar-preview {
    position: relative;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: var(--r);
    border-left: 4px solid var(--red);
    box-shadow: var(--sh);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.calendar-preview .info .name {
    font-weight: 700;
    font-size: 14px;
}

.calendar-preview .info .meta {
    font-size: 11px;
    color: var(--text-2);
}

.calendar-preview .info .tag {
    display: inline-block;
    margin-top: 2px;
    padding: 2px 10px;
    border-radius: var(--r-full);
    background: #FFEBEE;
    color: var(--red);
    font-size: 9px;
    font-weight: 700;
}

.calendar-preview .arrows {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.calendar-preview .arrows button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-2);
    transition: all 0.2s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-preview .arrows button:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.calendar-preview .arrows .counter {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    display: flex;
    align-items: center;
    padding: 0 4px;
}

/* ===== ФИЛЬТРЫ ===== */
.filter-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 20px 0 24px;
    padding: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    overflow-x: auto;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-bar .chip {
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    border: none;
    background: transparent;
    font-family: inherit;
    text-decoration: none;
}

.filter-bar .chip:hover {
    color: var(--text);
    background: #F5F5F5;
}

.filter-bar .chip.active {
    background: var(--red);
    color: #fff;
}

/* ===== SECTION HEAD ===== */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.section-head h2 em {
    color: var(--red);
    font-style: italic;
}

.section-head .link {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    transition: color 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.section-head .link:hover {
    color: var(--text);
}

/* =============================================
   КАРТОЧКИ НА ГЛАВНОЙ (УВЕЛИЧЕННЫЙ ТЕКСТ)
   ============================================= */

/* ===== БОЛЬШАЯ КАРТОЧКА ===== */
.card-big {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: var(--sh);
}

.card-big:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--border-strong);
}

.card-big .card-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-big .card-image .badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: var(--r-full);
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229,57,53,0.3);
}

.card-big .card-image .date-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 6px 14px 8px 14px;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    min-width: 48px;
}

.card-big .card-image .date-badge .day {
    font-size: 18px;
    font-weight: 800;
    display: block;
    color: #fff;
}

.card-big .card-image .date-badge .month {
    font-size: 9px;
    font-weight: 600;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    display: block;
    margin-top: -2px;
}

.card-big .card-image .status {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--red);
    color: #fff;
    border: none;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229,57,53,0.25);
}

.card-big .card-image .status.soon {
    background: var(--amber);
}

.card-big .card-image .status.sold-out {
    background: #757575;
}

.card-big .card-content {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-big .card-content .category {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 4px;
}

.card-big .card-content h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1.2;
}

.card-big .card-content .artist {
    font-size: 16px;
    color: var(--text-2);
    margin-bottom: 10px;
}

.card-big .card-content .desc {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-big .card-content .meta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 12px;
}

.card-big .card-content .meta-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-big .card-content .tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.card-big .card-content .tags .tag {
    padding: 4px 12px;
    border-radius: var(--r-full);
    background: #F5F5F5;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
}

.card-big .card-content .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.card-big .card-content .footer .verdict {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-big .card-content .footer .verdict .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.card-big .card-content .footer .verdict.good .dot {
    background: var(--green);
}

.card-big .card-content .footer .verdict.maybe .dot {
    background: var(--amber);
}

.card-big .card-content .footer .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
}

.card-big .card-content .footer .btn-detail {
    padding: 10px 24px;
    border-radius: var(--r-full);
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s var(--ease);
    border: none;
    cursor: pointer;
}

.card-big .card-content .footer .btn-detail:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(229,57,53,0.3);
}

/* ===== МАЛЕНЬКАЯ КАРТОЧКА ===== */
.card-small {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: var(--sh);
}

.card-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg);
    border-color: var(--border-strong);
}

.card-small .card-image {
    min-height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-small .card-image .date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 4px 12px 6px 12px;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    min-width: 40px;
}

.card-small .card-image .date-badge .day {
    font-size: 16px;
    font-weight: 800;
    display: block;
    color: #fff;
}

.card-small .card-image .date-badge .month {
    font-size: 8px;
    font-weight: 600;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    display: block;
    margin-top: -2px;
}

.card-small .card-image .status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--red);
    color: #fff;
    border: none;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229,57,53,0.25);
}

.card-small .card-image .status.soon {
    background: var(--amber);
}

.card-small .card-image .status.sold-out {
    background: #757575;
}

.card-small .card-content {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-small .card-content .category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 3px;
}

.card-small .card-content h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3px;
    line-height: 1.2;
}

.card-small .card-content .artist {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 6px;
}

.card-small .card-content .desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.card-small .card-content .meta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 8px;
}

.card-small .card-content .meta-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-small .card-content .tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.card-small .card-content .tags .tag {
    padding: 3px 10px;
    border-radius: var(--r-full);
    background: #F5F5F5;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-2);
}

.card-small .card-content .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.card-small .card-content .footer .verdict {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-small .card-content .footer .verdict .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.card-small .card-content .footer .verdict.good .dot {
    background: var(--green);
}

.card-small .card-content .footer .verdict.maybe .dot {
    background: var(--amber);
}

.card-small .card-content .footer .price {
    font-size: 17px;
    font-weight: 800;
    color: var(--red);
}

.card-small .card-content .footer .btn-detail {
    padding: 8px 18px;
    border-radius: var(--r-full);
    background: #F5F5F5;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
    cursor: pointer;
}

.card-small .card-content .footer .btn-detail:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* =============================================
   СТРАНИЦА СОБЫТИЯ (исправлена)
   ============================================= */

/* ===== КАРТОЧКА ===== */
.event-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--sh);
    max-width: 100%;
}

.event-hero .image {
    min-height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-hero .image .badge {
    top: 10px;
    right: 10px;
    padding: 2px 10px;
    font-size: 9px;
}

.event-hero .image .date-badge {
    bottom: 10px;
    left: 10px;
    padding: 3px 10px;
    font-size: 10px;
}

.event-hero .image .date-badge .day {
    font-size: 14px;
}

.event-hero .image .date-badge .month {
    font-size: 7px;
}

.event-hero .content {
    padding: 16px 20px 18px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-hero .content .category {
    font-size: 10px;
    margin-bottom: 2px;
}

.event-hero .content h1 {
    font-size: 22px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.event-hero .content .artist {
    font-size: 13px;
    margin-bottom: 4px;
}

.event-hero .content .meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
    color: var(--text-3);
    margin-bottom: 6px;
}

.event-hero .content .desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
    max-width: 95%;
}

.event-hero .content .tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.event-hero .content .tags .tag {
    padding: 2px 8px;
    font-size: 9px;
}

.event-hero .content .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-bottom: 12px;
}

.event-hero .content .footer .verdict {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.event-hero .content .footer .price {
    font-size: 15px;
    font-weight: 800;
    color: var(--red);
}

.event-hero .content .footer .btn-ticket {
    padding: 6px 14px;
    font-size: 11px;
    border-radius: var(--r-full);
    background: var(--red);
    color: #fff;
    font-weight: 700;
    transition: all 0.3s var(--ease);
    border: none;
    cursor: pointer;
}

.event-hero .content .footer .btn-ticket.disabled {
    background: var(--text-3);
    cursor: not-allowed;
    opacity: 0.6;
}

/* ===== ДАТЫ ПРОВЕДЕНИЯ (В КАРТОЧКЕ) ===== */
.event-dates-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.event-dates-inline .dates-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
}

.event-dates-inline .dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.event-dates-inline .date-item {
    padding: 3px 10px;
    background: #FFEBEE;
    color: #E53935;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* =============================================
   КОНТЕНТ СТРАНИЦЫ СОБЫТИЯ
   ============================================= */

/* ===== ПОДПИСЬ ПОД КАРТИНКОЙ ===== */
.photo-credit-block {
    max-width: 100%;
    margin: 6px 0 32px 0;
    text-align: right;
    font-size: 11px;
    color: var(--text-3);
    border-top: 1px solid var(--border);
    padding-top: 6px;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    align-items: center;
}

.photo-credit-block .icon {
    font-size: 13px;
}

.photo-credit-block .source {
    font-weight: 500;
    color: var(--text-2);
}

/* ===== ПОЛНЫЙ РАЗБОР ===== */
.review-body {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 28px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh);
}

.review-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.review-body .full-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-2);
    white-space: normal;
}

/* ===== КОМУ ЗАЙДЁТ / НЕ ЗАЙДЁТ ===== */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto 40px;
}

.who-box {
    padding: 24px 28px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--sh);
    transition: all 0.3s ease;
}

.who-box.good {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.who-box.bad {
    background: #FEF2F2;
    border-color: #FECACA;
}

.who-box .who-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
}

.who-box .who-header .icon {
    font-size: 18px;
    flex-shrink: 0;
}

.who-box .who-header .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.who-box .who-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    padding-top: 2px;
}

/* ===== РЕЙТИНГ ===== */
.rating-block {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh);
}

.rating-block .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.rating-block .header .title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
}

.rating-block .header .count {
    font-size: 12px;
    color: var(--text-3);
}

.rating-block .buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-block .buttons .vote-group {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-alt);
    border-radius: var(--r-full);
    padding: 3px;
    border: 1px solid var(--border);
}

.rating-block .buttons .vote-group button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-2);
    transition: all 0.25s ease;
}

.rating-block .buttons .vote-group button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rating-block .buttons .vote-group button:hover:not(:disabled) {
    background: var(--surface);
}

.rating-block .buttons .vote-group .divider {
    width: 1px;
    height: 24px;
    background: var(--border-strong);
}

.rating-block .buttons .progress {
    flex: 1;
    min-width: 120px;
}

.rating-block .buttons .progress .pct {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.rating-block .buttons .progress .label {
    font-size: 11px;
    color: var(--text-3);
}

.rating-block .buttons .progress .bar {
    height: 6px;
    background: var(--bg-alt);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.rating-block .buttons .progress .bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #34D399);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.rating-block .msg {
    margin-top: 12px;
    padding: 8px 16px;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 600;
    color: #065F46;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.rating-block .msg.show {
    display: inline-block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== ПОХОЖИЕ СОБЫТИЯ ===== */
.similar-section {
    max-width: 100%;
    margin: 0 auto 60px;
}

.similar-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.similar-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.similar-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    align-items: center;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    color: inherit;
}

.similar-item:hover {
    border-color: var(--border-strong);
    box-shadow: var(--sh);
    transform: translateY(-2px);
}

.similar-item .date {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-align: center;
}

.similar-item .date .day {
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.similar-item .date .month {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--text-3);
}

.similar-item .info .name {
    font-weight: 700;
    font-size: 15px;
}

.similar-item .info .meta {
    font-size: 12px;
    color: var(--text-2);
}

.similar-item .arrow {
    font-size: 18px;
    color: var(--text-3);
}

/* ===== ПУСТОЙ БЛОК ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
}

.empty-state .icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-2);
}

/* =============================================
   ПАГИНАЦИЯ
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination a {
    padding: 8px 14px;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.pagination a:hover {
    border-color: var(--border-strong);
    background: var(--bg-alt);
}

.pagination a.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.pagination a.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    margin-bottom: 28px;
}

.page-header h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.page-header h1 em {
    color: var(--red);
    font-style: italic;
}

.page-header p {
    font-size: 15px;
    color: var(--text-2);
    margin-top: 4px;
}

/* =============================================
   КНОПКА НАЗАД
   ============================================= */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-2);
    margin: 24px 0 16px;
    transition: color 0.3s var(--ease);
    text-decoration: none;
}

.back-link:hover {
    color: var(--red);
}

/* =============================================
   REVEAL (АНИМАЦИЯ)
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   ПОДВАЛ
   ============================================= */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0 24px;
    margin-top: 20px;
    background: var(--surface);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer .brand p {
    color: var(--text-3);
    font-size: 13px;
    margin-top: 6px;
    max-width: 300px;
    line-height: 1.6;
}

.footer h5 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
    margin-bottom: 12px;
    font-weight: 700;
}

.footer a {
    display: block;
    color: var(--text-2);
    font-size: 12px;
    padding: 3px 0;
    transition: color 0.3s var(--ease);
}

.footer a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 28px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-3);
    flex-wrap: wrap;
    gap: 12px;
}



/* =============================================
   АДАПТИВ
   ============================================= */
@media (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .calendar {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .card-big {
        grid-template-columns: 1fr;
    }

    .card-big .card-image {
        min-height: 160px;
    }

    .card-big .card-content {
        padding: 18px 20px;
    }

    .card-big .card-content h3 {
        font-size: 22px;
    }

    .card-big .card-content .desc {
        font-size: 14px;
        max-width: 100%;
    }

    .card-small {
        grid-template-columns: 1fr;
    }

    .card-small .card-image {
        min-height: 140px;
    }

    .card-small .card-content {
        padding: 14px 18px;
    }

    .card-small .card-content h3 {
        font-size: 18px;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .search-city-group {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form input {
        width: 100%;
    }

    .promo {
        padding: 28px 0 20px;
    }

    .promo-text {
        margin-top: 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-block {
        padding: 24px 16px;
    }

    .calendar {
        padding: 16px 18px;
    }

    .calendar-preview {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .calendar-preview .arrows {
        justify-content: center;
    }

    .city-selector .dropdown {
        left: 0;
        right: auto;
        min-width: 200px;
    }

    /* ===== АДАПТИВ СТРАНИЦЫ СОБЫТИЯ ===== */
    .event-hero {
        grid-template-columns: 1fr;
    }

    .event-hero .image {
        min-height: 180px;
    }

    .event-hero .content {
        padding: 16px 20px 20px 12px;
    }

    .review-body {
        padding: 20px;
        margin-bottom: 28px;
    }

    .review-body h2 {
        font-size: 19px;
    }

    .review-body .full-text {
        font-size: 14px;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0 auto 32px;
    }

    .who-box {
        padding: 18px 20px;
    }

    .rating-block {
        padding: 18px 20px;
        margin-bottom: 28px;
    }

    .similar-section {
        margin-bottom: 40px;
    }

    .similar-item {
        grid-template-columns: 60px 1fr auto;
    }

    .photo-credit-block {
        margin-bottom: 24px;
    }
}

@media (max-width: 500px) {
    .card-big .card-content h3 {
        font-size: 18px;
    }

    .card-big .card-content .footer .price {
        font-size: 16px;
    }

    .card-big .card-image .status {
        font-size: 9px;
        padding: 3px 10px;
    }

    .card-small .card-content h3 {
        font-size: 16px;
    }

    .card-small .card-content .footer .price {
        font-size: 15px;
    }

    .filter-bar .chip {
        padding: 6px 14px;
        font-size: 11px;
    }

    .logo-img {
        height: 32px;
    }

    .search-form {
        padding: 4px 4px 4px 12px;
    }

    .search-form input {
        width: 100%;
        font-size: 12px;
    }

    .event-hero .image {
        min-height: 120px;
    }

    .event-hero .content h1 {
        font-size: 17px;
    }

    .event-hero .content .desc {
        font-size: 11px;
    }

    .event-hero .content .meta-row {
        font-size: 10px;
        gap: 6px;
    }

    .event-hero .content .footer .price {
        font-size: 13px;
    }

    .event-hero .content .footer .btn-ticket {
        font-size: 10px;
        padding: 4px 10px;
    }

/* ===== ДАТЫ В КРАСНЫХ ЧИПАХ ===== */
.event-dates-inline {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.event-dates-inline .dates-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
}

.event-dates-inline .dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.event-dates-inline .date-item {
    display: inline-block;
    padding: 3px 12px;
    background: #FFEBEE;
    color: #E53935;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

    .review-body {
        padding: 16px;
        margin-bottom: 20px;
    }

    .review-body h2 {
        font-size: 17px;
    }

    .review-body .full-text {
        font-size: 13px;
    }

    .who-grid {
        margin: 0 auto 24px;
    }

    .who-box {
        padding: 14px 16px;
    }

    .who-box .who-header .icon {
        font-size: 16px;
    }

    .who-box .who-header .title {
        font-size: 13px;
    }

    .who-box .who-text {
        font-size: 12px;
    }

    .photo-credit-block {
        font-size: 10px;
        margin-bottom: 16px;
    }
}

/* =============================================
   CTA БЛОК (исправленный дизайн)
   ============================================= */
.cta-block {
    margin: 40px 0 48px;
    padding: 48px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    text-align: center;
    box-shadow: var(--sh);
    transition: all 0.3s var(--ease);
}

.cta-block:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-2px);
}

.cta-block h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text);
}

.cta-block h2 em {
    color: var(--red);
    font-style: italic;
}

.cta-block p {
    color: var(--text-2);
    max-width: 460px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.7;
}

.cta-block .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--red);
    color: #fff;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.cta-block .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(229,57,53,0.25);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .cta-block {
        padding: 32px 24px;
        margin: 28px 0 36px;
    }

    .cta-block h2 {
        font-size: 24px;
    }

    .cta-block p {
        font-size: 14px;
        max-width: 100%;
    }

    .cta-block .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 500px) {
    .cta-block {
        padding: 24px 16px;
        margin: 20px 0 28px;
    }

    .cta-block h2 {
        font-size: 20px;
    }

    .cta-block p {
        font-size: 13px;
    }

    .cta-block .btn-primary {
        font-size: 13px;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
}
/* ===== ДАТА НА КАРТИНКЕ ВНУТРИ СОБЫТИЯ — СЕРЫЙ ЧИПС ===== */
.date-badge-pill {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 6px 14px 8px 14px;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    min-width: 48px;
}

.date-badge-pill .day {
    font-size: 18px;
    font-weight: 800;
    display: block;
    color: #fff;
}

.date-badge-pill .month {
    font-size: 9px;
    font-weight: 600;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    display: block;
    margin-top: -2px;
}
