/**
 * bizneszal.ru — Custom CSS
 * Тема: Reboot Child (WPShop)
 * Путь: /wp-content/themes/reboot_child/assets/css/custom.css
 * Версия: 1.0
 */

/* ============================================================
   ПЕРЕМЕННЫЕ
   ============================================================ */
:root {
    --bz-primary: #1a56db;
    --bz-primary-hover: #1347b8;
    --bz-primary-light: #e8effc;
    --bz-accent: #f59e0b;
    --bz-accent-hover: #d97706;
    --bz-success: #10b981;
    --bz-danger: #ef4444;
    --bz-text: #1f2937;
    --bz-text-light: #6b7280;
    --bz-text-muted: #9ca3af;
    --bz-bg: #ffffff;
    --bz-bg-gray: #f9fafb;
    --bz-bg-featured: #fffbeb;
    --bz-border: #e5e7eb;
    --bz-border-featured: #f59e0b;
    --bz-radius: 12px;
    --bz-radius-sm: 8px;
    --bz-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --bz-shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --bz-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --bz-transition: 0.2s ease;
    --bz-max-width: 1200px;
}

/* ============================================================
   ОСНОВНЫЕ СТИЛИ
   ============================================================ */
.bz-single-airport,
.bz-single-lounge,
.bz-single-platform,
.bz-archive-airports,
.bz-archive-lounges,
.bz-archive-platforms {
    max-width: var(--bz-max-width);
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ============================================================
   ХЛЕБНЫЕ КРОШКИ
   ============================================================ */
.bz-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
    font-size: 13px;
    color: #94a3b8;
    list-style: none;
}
.bz-breadcrumbs a {
    color: var(--bz-primary);
    text-decoration: none;
    transition: color 0.2s;
}
.bz-breadcrumbs a:hover {
    color: #1e40af;
    text-decoration: underline;
}
.bz-breadcrumbs .bz-bc-sep {
    font-size: 10px;
    color: #cbd5e1;
    user-select: none;
}
.bz-breadcrumbs span:last-child {
    color: var(--bz-text);
    font-weight: 500;
}


/* ============================================================
   ЗАГОЛОВКИ СТРАНИЦ
   ============================================================ */
.bz-airport-header,
.bz-lounge-header,
.bz-platform-header,
.bz-archive-header {
    margin-bottom: 24px;
}
.bz-airport-header h1,
.bz-lounge-header h1,
.bz-platform-header h1,
.bz-archive-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--bz-text);
    line-height: 1.3;
    margin: 0 0 8px;
}
.bz-airport-subtitle,
.bz-archive-header p {
    font-size: 16px;
    color: var(--bz-text-light);
    margin: 0;
}

/* Lounge header — с рейтингом */
.bz-lounge-header__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.bz-lounge-header__sub {
    font-size: 15px;
    color: var(--bz-text-light);
    margin: 4px 0 0;
}

/* Platform header */
.bz-platform-header {
    display: flex;
    align-items: center;
    gap: 24px;
}
.bz-platform-header__img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--bz-radius-sm);
    border: 1px solid var(--bz-border);
    padding: 8px;
}

/* ============================================================
   РЕЙТИНГ
   ============================================================ */
.bz-rating-large {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
}
.bz-rating-large__number {
    font-size: 36px;
    font-weight: 800;
    color: var(--bz-accent);
    line-height: 1;
}
.bz-rating-large__max {
    font-size: 18px;
    color: var(--bz-text-muted);
}
.bz-rating-large__reviews {
    font-size: 13px;
    color: var(--bz-text-light);
    margin-left: 8px;
}
.bz-rating-badge {
    display: inline-block;
    background: var(--bz-accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 6px;
    min-width: 32px;
    text-align: center;
}

/* ============================================================
   CTA-БЛОК (VIP-ZAL)
   ============================================================ */
.bz-cta-block {
    background: var(--bz-bg-gray);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius);
    padding: 20px 24px;
    margin: 24px 0;
}
.bz-cta-block--featured {
    background: var(--bz-bg-featured);
    border-color: var(--bz-border-featured);
}
.bz-cta-block__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bz-cta-block__logo img {
    display: block;
}
.bz-cta-block__content {
    flex: 1;
    min-width: 200px;
}
.bz-cta-block__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--bz-text);
}
.bz-cta-block__content p {
    font-size: 14px;
    color: var(--bz-text-light);
    margin: 0;
}
.bz-cta-block__action {
    flex-shrink: 0;
}

/* CTA-кнопка */
.bz-cta-button {
    display: inline-block;
    background: var(--bz-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: var(--bz-radius-sm);
    text-decoration: none;
    transition: background var(--bz-transition), transform var(--bz-transition);
    white-space: nowrap;
}
.bz-cta-button:hover {
    background: var(--bz-primary-hover);
    transform: translateY(-1px);
}
.bz-cta-button--full {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 16px;
}

/* Маркировка рекламы */
.bz-ad-label {
    display: block;
    font-size: 11px;
    color: var(--bz-text-muted);
    margin-top: 8px;
    line-height: 1.4;
}

/* ============================================================
   КНОПКИ
   ============================================================ */
.bz-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--bz-radius-sm);
    text-decoration: none;
    transition: all var(--bz-transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.bz-btn--primary {
    background: var(--bz-primary);
    color: #fff !important;
}
.bz-btn--primary:hover {
    background: var(--bz-primary-hover);
}
.bz-btn--outline {
    background: transparent;
    color: var(--bz-primary);
    border: 1px solid var(--bz-primary);
}
.bz-btn--outline:hover {
    background: var(--bz-primary);
    color: #fff;
}
.bz-btn--sm {
    font-size: 13px;
    padding: 6px 12px;
}

/* ============================================================
   ИНФО-ТАБЛИЦА
   ============================================================ */
.bz-airport-info,
.bz-features-section {
    margin: 32px 0;
}
.bz-airport-info h2,
.bz-features-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}
.bz-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.bz-info-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--bz-border);
}
.bz-info-table tr:last-child td {
    border-bottom: none;
}
.bz-info-table td:first-child {
    color: var(--bz-text-light);
    width: 40%;
    font-size: 14px;
}
.bz-info-table td:last-child {
    color: var(--bz-text);
}
.bz-info-table a {
    color: var(--bz-primary);
    text-decoration: none;
}
.bz-info-table a:hover {
    text-decoration: underline;
}
.bz-info-table--compact {
    font-size: 14px;
}
.bz-info-table--compact td {
    padding: 8px 12px;
}
.bz-info-table--compact td:first-child {
    width: 45%;
}

/* ============================================================
   КОНТЕНТ
   ============================================================ */
.bz-airport-content,
.bz-lounge-content,
.bz-platform-content {
    margin: 24px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--bz-text);
}
.bz-airport-content p,
.bz-lounge-content p,
.bz-platform-content p {
    margin: 0 0 16px;
}

/* ============================================================
   LOUNGE HERO
   ============================================================ */
.bz-lounge-hero {
    margin: 0 0 24px;
    border-radius: var(--bz-radius);
    overflow: hidden;
}
.bz-lounge-hero__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   ДВУХКОЛОНОЧНАЯ РАСКЛАДКА (single-lounge)
   ============================================================ */
.bz-lounge-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    margin-top: 32px;
}
.bz-lounge-layout__main {
    min-width: 0;
}

/* Sidebar */
.bz-sidebar-card {
    background: var(--bz-bg-gray);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius);
    padding: 20px;
    position: sticky;
    top: 20px;
}
.bz-sidebar-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
}

/* ============================================================
   КАРТОЧКИ БИЗНЕС-ЗАЛОВ
   ============================================================ */
.bz-lounges-section,
.bz-platforms-section {
    margin: 40px 0;
}
.bz-lounges-section h2,
.bz-platforms-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.bz-lounges-section > p,
.bz-platforms-section > p {
    color: var(--bz-text-light);
    margin: 0 0 20px;
}

.bz-lounges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.bz-lounge-card {
    background: var(--bz-bg);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius);
    overflow: hidden;
    box-shadow: var(--bz-shadow);
    transition: box-shadow var(--bz-transition), transform var(--bz-transition);
}
.bz-lounge-card:hover {
    box-shadow: var(--bz-shadow-md);
    transform: translateY(-2px);
}

/* Фото карточки */
.bz-lounge-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bz-bg-gray);
}
.bz-lounge-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bz-lounge-card__image a {
    display: block;
    height: 100%;
}
.bz-lounge-card__no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 48px;
    text-decoration: none;
    background: var(--bz-bg-gray);
}
.bz-lounge-card__rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bz-accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Тело карточки */
.bz-lounge-card__body {
    padding: 16px 20px 20px;
}
.bz-lounge-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}
.bz-lounge-card__title a {
    color: var(--bz-text);
    text-decoration: none;
}
.bz-lounge-card__title a:hover {
    color: var(--bz-primary);
}

/* Мета (терминал, зона, часы) */
.bz-lounge-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 13px;
    color: var(--bz-text-light);
    margin-bottom: 12px;
}

/* Удобства */
.bz-lounge-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    overflow: hidden;
}

.bz-amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--bz-text-light);
    background: var(--bz-bg-gray);
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Подвал карточки */
.bz-lounge-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--bz-border);
}
.bz-lounge-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bz-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--bz-text);
}
.bz-reviews {
    font-size: 12px;
    color: var(--bz-text-muted);
}
.bz-lounge-card__actions {
    display: flex;
    gap: 8px;
}

/* ============================================================
   КАРТОЧКИ АЭРОПОРТОВ (archive)
   ============================================================ */
.bz-airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.bz-airport-card {
    display: block;
    background: var(--bz-bg);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--bz-text);
    box-shadow: var(--bz-shadow);
    transition: box-shadow var(--bz-transition), transform var(--bz-transition);
}
.bz-airport-card:hover {
    box-shadow: var(--bz-shadow-md);
    transform: translateY(-2px);
}
.bz-airport-card__image {
    height: 160px;
    overflow: hidden;
    background: var(--bz-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bz-airport-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bz-airport-card__iata {
    font-size: 48px;
    font-weight: 800;
    color: var(--bz-primary);
    letter-spacing: 4px;
}
.bz-airport-card__body {
    padding: 16px 20px;
}
.bz-airport-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}
.bz-airport-card__city {
    font-size: 14px;
    color: var(--bz-text-light);
    margin: 0 0 10px;
}
.bz-airport-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 13px;
    color: var(--bz-text-light);
}

/* ============================================================
   ФИЛЬТРЫ
   ============================================================ */
.bz-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--bz-border);
}
.bz-filter-bar__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--bz-text);
    margin-right: 4px;
}
.bz-filter-tag {
    display: inline-block;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--bz-bg-gray);
    color: var(--bz-text-light);
    text-decoration: none;
    transition: all var(--bz-transition);
    border: 1px solid transparent;
}
.bz-filter-tag:hover {
    background: var(--bz-primary-light);
    color: var(--bz-primary);
}
.bz-filter-tag--active {
    background: var(--bz-primary);
    color: #fff;
}

/* ============================================================
   СРАВНИТЕЛЬНАЯ ТАБЛИЦА ПЛАТФОРМ
   ============================================================ */
.bz-table-responsive {
    overflow-x: auto;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
}
.bz-compare-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 14px;
}
.bz-compare-table th {
    background: var(--bz-bg-gray);
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    padding: 12px 14px;
    border-bottom: 2px solid var(--bz-border);
    color: var(--bz-text-light);
    white-space: nowrap;
}
.bz-compare-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--bz-border);
    vertical-align: middle;
}
.bz-compare-table tr:last-child td {
    border-bottom: none;
}
.bz-compare-table a {
    color: var(--bz-primary);
    text-decoration: none;
}
.bz-compare-table a:hover {
    text-decoration: underline;
}

/* Выделенная строка */
.bz-row-featured {
    background: var(--bz-bg-featured);
}
.bz-row-featured td:first-child {
    border-left: 3px solid var(--bz-accent);
}

/* Логотип платформы в таблице */
.bz-platform-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 4px;
}
.bz-platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bz-badge-recommended {
    display: inline-block;
    font-size: 11px;
    color: var(--bz-accent-hover);
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 4px;
}
.bz-badge-recommended--large {
    font-size: 13px;
    padding: 4px 12px;
}

/* ============================================================
   STAT-БЛОКИ (platform)
   ============================================================ */
.bz-platform-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}
.bz-stat {
    flex: 1;
    min-width: 140px;
    background: var(--bz-bg-gray);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius-sm);
    padding: 16px 20px;
    text-align: center;
}
.bz-stat__number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--bz-text);
    margin-bottom: 4px;
}
.bz-stat__label {
    font-size: 13px;
    color: var(--bz-text-light);
}

/* ============================================================
   ПЛЮСЫ / МИНУСЫ
   ============================================================ */
.bz-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}
.bz-pros,
.bz-cons {
    padding: 20px;
    border-radius: var(--bz-radius);
}
.bz-pros {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}
.bz-cons {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.bz-pros h3,
.bz-cons h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
}
.bz-pros ul,
.bz-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bz-pros li,
.bz-cons li {
    padding: 4px 0;
    font-size: 14px;
    line-height: 1.5;
}
.bz-pros li::before {
    content: '✓ ';
    color: var(--bz-success);
    font-weight: 700;
}
.bz-cons li::before {
    content: '✗ ';
    color: var(--bz-danger);
    font-weight: 700;
}
.bz-pros--compact,
.bz-cons--compact {
    padding: 12px 16px;
}
.bz-pros--compact ul,
.bz-cons--compact ul {
    margin-top: 6px;
}

/* ============================================================
   УДОБСТВА (grid)
   ============================================================ */
.bz-amenities-section {
    margin: 32px 0;
}
.bz-amenities-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
}
.bz-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.bz-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bz-bg-gray);
    padding: 12px 16px;
    border-radius: var(--bz-radius-sm);
    font-size: 14px;
}
.bz-amenity-item__icon {
    font-size: 20px;
    flex-shrink: 0;
}
.bz-amenity-item__name {
    color: var(--bz-text);
}

/* ============================================================
   УСЛОВИЯ ДОСТУПА
   ============================================================ */
.bz-access-section {
    margin: 32px 0;
}
.bz-access-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
}
.bz-access-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bz-access-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    background: var(--bz-bg-gray);
    padding: 14px 20px;
    border-radius: var(--bz-radius-sm);
    border-left: 3px solid var(--bz-primary);
}
.bz-access-item__method {
    font-weight: 700;
    font-size: 15px;
    color: var(--bz-text);
    min-width: 160px;
    flex-shrink: 0;
}
.bz-access-item__detail {
    font-size: 14px;
    color: var(--bz-text-light);
}

/* ============================================================
   FAQ
   ============================================================ */
.bz-faq-section {
    margin: 40px 0;
}
.bz-faq-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}
.bz-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bz-faq-item {
    background: var(--bz-bg-gray);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius-sm);
    overflow: hidden;
}
.bz-faq-item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--bz-text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
}
.bz-faq-item summary::-webkit-details-marker {
    display: none;
}
.bz-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--bz-text-light);
    transition: transform var(--bz-transition);
}
.bz-faq-item[open] summary::after {
    content: '−';
}
.bz-faq-item p {
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--bz-text-light);
    margin: 0;
}

/* ============================================================
   КАРТОЧКИ ПЛАТФОРМ (archive)
   ============================================================ */
.bz-platforms-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.bz-platform-card {
    background: var(--bz-bg);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius);
    padding: 20px 24px;
    box-shadow: var(--bz-shadow);
}
.bz-platform-card--featured {
    border-color: var(--bz-border-featured);
    background: var(--bz-bg-featured);
}
.bz-platform-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.bz-platform-card__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--bz-radius-sm);
}
.bz-platform-card__header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.bz-platform-card__header h2 a {
    color: var(--bz-text);
    text-decoration: none;
}
.bz-platform-card__header h2 a:hover {
    color: var(--bz-primary);
}
.bz-platform-card__excerpt {
    font-size: 14px;
    color: var(--bz-text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ============================================================
   ПАГИНАЦИЯ
   ============================================================ */
.bz-pagination {
    margin-top: 40px;
    text-align: center;
}
.bz-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
.bz-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--bz-radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--bz-text);
    background: var(--bz-bg-gray);
    border: 1px solid var(--bz-border);
    text-decoration: none;
    transition: all var(--bz-transition);
}
.bz-pagination .page-numbers:hover {
    background: var(--bz-primary-light);
    color: var(--bz-primary);
}
.bz-pagination .page-numbers.current {
    background: var(--bz-primary);
    color: #fff;
    border-color: var(--bz-primary);
}

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */
@media (max-width: 960px) {
    .bz-lounge-layout {
        grid-template-columns: 1fr;
    }
    .bz-sidebar-card {
        position: static;
    }
    .bz-pros-cons {
        grid-template-columns: 1fr;
    }
    .bz-lounge-hero__img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .bz-airport-header h1,
    .bz-lounge-header h1,
    .bz-platform-header h1,
    .bz-archive-header h1 {
        font-size: 22px;
    }
    .bz-cta-block__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .bz-cta-button {
        width: 100%;
        text-align: center;
    }
    .bz-lounges-grid {
        grid-template-columns: 1fr;
    }
    .bz-airports-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bz-platforms-cards {
        grid-template-columns: 1fr;
    }
    .bz-lounge-header__top {
        flex-direction: column;
    }
    .bz-platform-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .bz-platform-stats {
        flex-direction: column;
    }
    .bz-stat {
        min-width: 100%;
    }

    .bz-lounge-card__actions {
        width: 100%;
    }
    .bz-lounge-card__actions .bz-btn {
        flex: 1;
        text-align: center;
    }
    .bz-access-item {
        flex-direction: column;
        gap: 4px;
    }
    .bz-access-item__method {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .bz-airports-grid {
        grid-template-columns: 1fr;
    }
    .bz-amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bz-compare-table {
        font-size: 12px;
    }
    .bz-compare-table td,
    .bz-compare-table th {
        padding: 8px 10px;
    }
    .bz-lounge-hero__img {
        height: 200px;
    }
}

.bz-btn-cta,
.bz-btn-cta:hover,
.bz-btn-cta:focus,
.bz-btn-cta:active,
.bz-btn-cta:visited {
    color: #fff !important;
    text-decoration: none !important;
}
.bz-ph-cta,
.bz-ph-cta:hover,
.bz-ph-cta:focus,
.bz-ph-cta:visited {
    color: #1a56db !important;
    text-decoration: none !important;
}
.bz-ph-cta:hover {
    text-decoration: underline !important;
}
/* ===== TOP BAR ===== */
.bz-topbar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.75rem;
    padding: 6px 0;
}
.bz-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bz-topbar-text { opacity: 0.8; }
.bz-topbar-links { display: flex; gap: 16px; }
.bz-topbar-links a {
    color: #e2e8f0 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.2s;
}
.bz-topbar-links a:hover { color: #fff !important; }

/* ===== HEADER ICONS ===== */
.site-header-inner {
    display: flex !important;
    align-items: center !important;
}
.bz-header-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
}


.bz-hicon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.2s;
    background: #f1f5f9;
}
.bz-hicon:hover {
    background: #e0e7ff;
    color: #1a56db !important;
}
.bz-hicon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

@media (max-width: 480px) {
    .bz-topbar-text { display: none; }
    .bz-topbar-links { margin-left: auto; }
}

/* ===== MAP PINS ===== */
.bz-map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    transform: translate(-50%, -100%);
    cursor: pointer;
}
.bz-map-iata {
    background: #1a56db;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px 6px 6px 0;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.bz-map-lounges {
    background: #f59e0b;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.bz-map-cluster {
    width: 40px;
    height: 40px;
    background: #1a56db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 12px rgba(26,86,219,0.4);
    transform: translate(-50%, -50%);
    border: 3px solid rgba(255,255,255,0.8);
}

/* === FOOTER === */
.bz-footer {
    background: #1a2332 !important;
    color: #c0c8d4;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.bz-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 36px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.bz-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.bz-footer__logo-icon {
    font-size: 28px;
}

.bz-footer__logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.bz-footer__desc {
    color: #8a95a5;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.bz-footer__heading {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.bz-footer__links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.bz-footer__links li {
    list-style: none !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    display: block !important;
}

.bz-footer__links li::before,
.bz-footer__links li::after,
.bz-footer__links li::marker {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
}

.bz-footer__links a {
    color: #c0c8d4 !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: color 0.2s;
}

.bz-footer__links a:hover {
    color: #fff !important;
}

/* Bottom bar */
.bz-footer__bottom {
    border-top: 1px solid #2a3546;
    background: #151d2a;
}

.bz-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.bz-footer__copy {
    color: #8a95a5;
    font-size: 13px;
}

.bz-footer__disclaimer {
    color: #5a6577;
    font-size: 12px;
    font-style: italic;
}
/* Плавный переход от CTA к футеру */
.bz-footer {
    margin-top: 0 !important;
}

/* Hide back-to-top and spacers after footer */
.bz-footer ~ *:not(script):not(link):not(style) {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .bz-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 16px 24px;
    }
    .bz-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Убираем сжатие от контейнера темы Reboot */
.bz-single-airport,
.bz-single-lounge,
.bz-single-platform,
.bz-archive-airports,
.bz-archive-lounges,
.bz-archive-platforms,
.bz-taxonomy-page {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* Снимаем ограничение с контейнера темы */
.single-airport .site-content,
.single-lounge .site-content,
.single-platform .site-content,
.post-type-archive-airport .site-content,
.post-type-archive-lounge .site-content,
.post-type-archive-platform .site-content,
.tax-bz_lounge_type .site-content,
.tax-bz_city .site-content,
.tax-bz_country .site-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: #fff;
}

/* Белый фон body для таксономий и архивов */
body.tax-bz_lounge_type,
body.tax-bz_city,
body.tax-bz_country,
body.post-type-archive-lounge,
body.post-type-archive-airport {
    background-color: #fff;
}


/* Ограничиваем сам контент 1200px с отступами */
.bz-single-airport,
.bz-single-lounge,
.bz-single-platform,
.bz-archive-airports,
.bz-archive-lounges,
.bz-archive-platforms,
.bz-taxonomy-page {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}


.bz-header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.bz-header-search .bz-search-input {
    width: 240px;
    height: 36px;
    padding: 0 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px 0 0 8px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.bz-header-search .bz-search-input:focus {
    border-color: #1a56db;
}

.bz-header-search .bz-search-btn {
    height: 36px;
    width: 36px;
    background: #1a56db;
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bz-header-search .bz-search-dropdown {
    position: absolute;
    top: 42px;
    left: 0;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    display: none;
    z-index: 99999 !important;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
}
.bz-header-search .bz-search-dropdown.active {
    display: block;
}
.bz-header-search .bz-search-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: #1e293b;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.bz-header-search .bz-search-dropdown a:hover {
    background: #f8fafc;
}
.bz-header-search .bz-search-dropdown a:last-child {
    border-bottom: none;
}
.bz-header-search .bz-sr-iata {
    font-weight: 700;
    font-size: 0.75rem;
    background: #e0e7ff;
    color: #1a56db;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}
.bz-header-search .bz-sr-info {
    display: flex;
    flex-direction: column;
}
.bz-header-search .bz-sr-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e293b;
}
.bz-header-search .bz-sr-city {
    font-size: 0.75rem;
    color: #64748b;
}

.bz-lounge-card__actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.bz-lounge-card__actions .bz-btn {
    flex: 1;
    text-align: center;
    white-space: nowrap;
}
.bz-lounge-card {
    display: flex;
    flex-direction: column;
}

.bz-lounge-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bz-lounge-card__footer {
    margin-top: auto;
}

/* Кнопки карточек — одинаковая ширина */
.bz-lounge-card__actions .bz-btn {
    flex: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Фикс цвета после клика (visited) — тема перебивает */
.bz-btn--outline,
.bz-btn--outline:visited,
.bz-btn--outline:hover,
.bz-btn--outline:focus,
.bz-btn--outline:active {
    color: var(--bz-primary) !important;
    text-decoration: none !important;
}

.bz-btn--primary,
.bz-btn--primary:visited,
.bz-btn--primary:hover,
.bz-btn--primary:focus,
.bz-btn--primary:active {
    color: #fff !important;
    text-decoration: none !important;
}

.bz-btn--outline:hover {
    background: var(--bz-primary) !important;
    color: #fff !important;
}

/* ===== КАК ДОБРАТЬСЯ (карта) ===== */
.bz-howtoget-section {
    margin: 40px 0;
}

.bz-howtoget-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}

#bz-airport-map {
    height: 320px;
    border-radius: var(--bz-radius);
    border: 1px solid var(--bz-border);
}

/* ===== ТЕРМИНАЛЫ ===== */
.bz-terminals-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bz-terminal-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bz-bg-gray);
    border: 1px solid var(--bz-border);
    border-radius: var(--bz-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--bz-primary) !important;
    text-decoration: none !important;
    transition: all var(--bz-transition);
}

.bz-terminal-tag:hover {
    background: var(--bz-primary-light);
    border-color: var(--bz-primary);
}

.bz-terminal-tag:visited {
    color: var(--bz-primary) !important;
}


.bz-howtoget-address svg {
    flex-shrink: 0;
    color: var(--bz-primary);
}


/* Заглушка карточки зала без фото */
.bz-lounge-card__no-img {
    display: block;
    height: 100%;
}
.bz-lounge-card__no-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VIP шильдик */
.bz-vip-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 6px;
    text-transform: uppercase;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(217, 119, 6, 0.3);
}

/* Фильтры и сортировка залов */
.bz-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--bz-border);
    width: 100%;
}
.bz-filters__sort,
.bz-filters__type,
.bz-filters__amenities {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.bz-filters__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bz-text);
    margin-right: 4px;
    white-space: nowrap;
}
.bz-filter-btn {
    padding: 5px 12px;
    font-size: 12px;
    border: 1px solid var(--bz-border);
    border-radius: 20px;
    background: #fff;
    color: var(--bz-text-light);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.bz-filter-btn:hover {
    border-color: var(--bz-primary);
    color: var(--bz-primary);
}
.bz-filter-btn--active {
    background: var(--bz-primary);
    color: #fff;
    border-color: var(--bz-primary);
}
.bz-lounge-card[data-hidden="true"] {
    display: none;
}
/* ===== HEADER BOOKING BUTTON ===== */
.bz-hbtn-book {
    display: inline-flex; align-items: center; gap: 7px;
    background: #1a56db; color: #fff !important;
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600; text-decoration: none !important;
    white-space: nowrap; transition: background 0.2s;
    flex-shrink: 0;
}
.bz-hbtn-book:hover { background: #1648c0; }
.bz-hbtn-book svg { flex-shrink: 0; }

@media (max-width: 768px) {
    .bz-header-icons {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .bz-hbtn-book {
        order: 10;
        width: 100%;
        justify-content: center;
        margin-top: 6px;
        border-radius: 6px;
        padding: 9px 12px;
    }
    .bz-header-search {
        order: 1;
    }
}

/* Контейнер */
.bz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.bz-filter-tag--active {
    color: #fff !important;
}


/* === Удобства: карточки === */
.bz-amenities-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.bz-amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bz-amenity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.12);
    border-color: #bfdbfe;
}
.bz-amenity-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    color: #1a56db;
}
.bz-amenity-card__icon svg {
    width: 22px;
    height: 22px;
}
.bz-amenity-card__name {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.3;
}
@media (max-width: 480px) {
    .bz-amenities-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .bz-amenity-card {
        padding: 12px 8px;
    }
}

/* Footer карточки — цена слева, кнопки справа */
.bz-lounge-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px 16px;
    border-top: 1px solid var(--bz-border);
    margin-top: auto;
    flex-wrap: wrap;
}

.bz-lounge-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bz-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--bz-text);
    white-space: nowrap;
}

.bz-lounge-card__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.bz-lounge-card__actions .bz-btn {
    flex: none;
    white-space: nowrap;
}

/* Фиксим ширину грида залов на /country/ и /city/ */
@media (min-width: 900px) {
    .bz-lounges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bz-header-search .bz-search-input:focus {
    outline: none;
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

@media (max-width: 600px) {
    .bz-hbtn-book span {
        display: none; /* оставить только иконку */
    }
}

.site-header-inner > .humburger {
    display: none !important;
}

/* Фикс карты Leaflet на странице аэропорта */
#bz-airport-map {
    width: 100% !important;
    height: 420px !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

#bz-airport-map .leaflet-pane,
#bz-airport-map .leaflet-tile,
#bz-airport-map .leaflet-tile-container {
    position: absolute !important;
}

#bz-airport-map img.leaflet-tile {
    max-width: none !important;
    max-height: none !important;
}

.bz-howtoget-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

body.error404{background:#fff!important}





.bz-lounge-card__image {
    position: relative;
}
.bz-card-btns {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 5px;
    z-index: 2;
}
.bz-btn-fav,
.bz-btn-cmp {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.bz-btn-fav:hover, .bz-btn-fav.active { background: #fff; color: #ef4444; }
.bz-btn-fav.active svg { fill: #ef4444; stroke: #ef4444; }
.bz-btn-cmp:hover, .bz-btn-cmp.active { background: #fff; color: #1a56db; }


/* Page templates: Сравнение и Избранное */
body.page-template-page-compare,
body.page-template-page-favorites {
    background-color: #fff;
}
body.page-template-page-compare .site-content,
body.page-template-page-favorites .site-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: #fff;
}



