/* ===== Mobile app mode (max-width 768px) ===== */
@media (max-width: 768px) {
  html.app-mode,
  html.app-mode body {
    overflow: hidden !important;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    position: fixed;
    margin: 0;
    padding: 0;
    touch-action: manipulation;
  }

  html.app-mode body {
    display: block !important;
    padding-bottom: 0 !important;
  }

  html.app-mode .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 3, 6, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(89, 60, 144, 0.3);
  }

  html.app-mode .app-container {
    position: fixed;
    top: var(--header-h, 72px);
    left: 0;
    right: 0;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 100%;
  }

  html.app-mode.prices-open .app-container {
    bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  }

  html.app-mode .app-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    display: flex;
    flex-direction: column;
    z-index: 0;
    background: #060306;
    overflow: hidden;
  }

  html.app-mode .app-section.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }

  html.app-mode .section-content {
    flex: 1;
    min-height: 0;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  html.app-mode #section-hero .section-content {
    overflow: hidden;
    padding: 0;
  }

  html.app-mode #section-halls .section-content {
    overflow: hidden;
    padding: 0;
  }

  html.app-mode #section-prices .section-content {
    overflow-x: hidden;
    min-width: 0;
  }

  html.app-mode #section-contacts .articles-block {
    padding: 32px 16px 24px;
  }

  html.app-mode #section-contacts .articles-block h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  html.app-mode #section-contacts .article-flip {
    cursor: pointer;
  }

  html.app-mode #hero,
  html.app-mode .welcome-block {
    display: none !important;
  }

  html.app-mode .mobile-bottom-wrap {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000 !important;
    display: flex !important;
    flex-direction: column;
    background: rgba(6, 3, 6, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(89, 60, 144, 0.4);
  }

  html.app-mode .mobile-bottom-nav {
    position: relative !important;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: auto !important;
    display: flex !important;
  }

  html.app-mode .prices-dock-note {
    display: none;
    margin: 0;
    padding: 6px 8px 0;
    text-align: center;
    font-size: clamp(8px, 2.6vw, 11px);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  html.app-mode.prices-open .prices-dock-note--hourly {
    display: block;
    color: #FFDE59;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  html.app-mode.prices-open.packages-open .prices-dock-note--hourly {
    display: none;
  }

  html.app-mode.prices-open.packages-open .prices-dock-note--packages {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
  }

  html.app-mode .prices-dock {
    display: none;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 8px 10px 6px;
    border-top: 1px solid rgba(89, 60, 144, 0.4);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  html.app-mode.prices-open .prices-dock {
    display: grid;
  }

  html.app-mode .prices-dock-label {
    text-align: center;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;
    max-width: 7.6em;
    white-space: normal;
  }

  html.app-mode .prices-dock .prices-view-btn {
    width: 100%;
    max-width: 118px;
    min-width: 0;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(89, 60, 144, 0.45);
    background: rgba(89, 60, 144, 0.18);
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  html.app-mode .prices-dock .prices-view-btn:first-of-type {
    justify-self: start;
  }

  html.app-mode .prices-dock .prices-view-btn:last-of-type {
    justify-self: end;
  }

  html.app-mode .prices-dock .prices-view-btn.active {
    background: #593C90;
    color: #fff;
    border-color: #593C90;
  }

  /* ===== Simple price plates (mobile app) ===== */
  .mobile-price-plates {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 16px 16px;
  }

  .price-plate {
    background: linear-gradient(135deg, rgba(89, 60, 144, 0.18) 0%, rgba(6, 3, 6, 0.95) 100%);
    border: 1px solid rgba(89, 60, 144, 0.4);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(89, 60, 144, 0.15);
  }

  .price-plate-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
  }

  .price-plate-name {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
  }

  .price-plate-cap {
    color: #FFDE59;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }

  .price-plate-addr {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 12px;
  }

  .price-plate-from {
    color: #FFDE59;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
  }

  .price-plate-from strong {
    font-size: 24px;
  }

  .price-plate-rates {
    border-top: 1px solid rgba(89, 60, 144, 0.3);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .price-plate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
  }

  .price-plate-row span {
    color: rgba(255, 255, 255, 0.75);
    flex: 1;
  }

  .price-plate-row strong {
    color: #FFFFFF;
    font-weight: 700;
    white-space: nowrap;
  }

  html.app-mode .mobile-price-plates-hidden {
    display: none !important;
  }

  html.app-mode #section-prices .packages-section {
    padding: 0 16px 24px !important;
  }

  html.app-mode .header .city-btn {
    background: linear-gradient(135deg, #593C90, #5E2177);
    color: #FFFFFF;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    min-height: 40px;
  }

  /* ===== App Hero section ===== */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    padding: 40px 24px;
    text-align: center;
    background: linear-gradient(180deg, #060306 0%, #1a0b2e 100%);
  }

  .hero-logo {
    margin-bottom: 32px;
  }

  .hero-content .logo-image {
    width: 120px;
    height: auto;
    max-width: 120px;
  }

  .hero-content .hero-title {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    padding: 0;
    text-align: center;
  }

  .hero-content .hero-title-city {
    display: block;
    font-size: 0.85em;
    margin-top: 4px;
  }

  .hero-content .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 320px;
  }

  .btn-select-city-hero {
    width: 100%;
    max-width: 320px;
    padding: 18px;
    background: linear-gradient(135deg, #593C90, #5E2177);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    min-height: 60px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 16px rgba(89, 60, 144, 0.4);
    margin-bottom: 40px;
  }

  .btn-select-city-hero:active {
    transform: scale(0.98);
  }

  .hero-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 72px;
  }

  .hero-feature .feature-icon {
    font-size: 32px;
    line-height: 1;
  }

  .hero-feature .feature-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
  }

  body {
    display: flex;
    flex-direction: column;
    padding-bottom: 84px;
  }

  body > .header { order: 1; }
  body > #hero { order: 2; }
  body > .welcome-block { order: 3; }
  body > #halls { order: 4; }
  body > #prices { order: 5; }
  body > #packages { order: 6; }
  body > #contacts { order: 7; }

  html.app-mode body > #hero,
  html.app-mode body > .welcome-block,
  html.app-mode body > #halls,
  html.app-mode body > #prices,
  html.app-mode body > #packages,
  html.app-mode body > #contacts {
    order: unset;
  }

  /* Hide non-essential blocks (SEO content stays in DOM) */
  body > #formats,
  body > #gallery,
  body > #corporate,
  body > #social,
  .calc-block,
  #survey,
  .price-compare,
  .price-calc {
    display: none !important;
  }

  body > .footer {
    display: none !important;
  }

  /* FX / chrome */
  .fx-scroll-progress,
  .fx-cursor,
  .fx-particles,
  .fx-orbs,
  .fx-soundwave,
  .burger,
  .nav {
    display: none !important;
  }

  .header {
    padding: 8px 0;
  }

  .header-inner {
    justify-content: space-between;
  }

  .city-btn {
    min-height: 40px;
    font-size: 12px;
  }

  /* Performance */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }

  .special-offer-card,
  .benefit-badge,
  .special-title,
  .benefit-amount,
  .benefit-save {
    animation: none !important;
  }

  .special-offer-card {
    box-shadow: 0 4px 12px rgba(89, 60, 144, 0.2);
  }

  .hero,
  .halls,
  .prices,
  .advantages,
  .contacts {
    padding: 32px 0 !important;
  }

  .hero {
    min-height: auto !important;
    padding: calc(var(--header-h) + 24px) 16px 40px !important;
    align-items: flex-start !important;
    justify-content: center;
  }

  .hero-layout {
    display: block !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .hero-content {
    text-align: center;
    width: 100%;
  }

  .fx-soundwave,
  .fx-orbs,
  .fx-particles {
    display: none !important;
  }

  html.app-mode .modal,
  html.app-mode .modal.active {
    z-index: 40000 !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    transform: none !important;
  }

  html.app-mode.modal-open .header,
  html.app-mode.modal-open .mobile-bottom-wrap,
  html.app-mode.modal-open .mobile-bottom-nav,
  html.app-mode body.modal-open .header,
  html.app-mode body.modal-open .mobile-bottom-wrap,
  html.app-mode body.modal-open .mobile-bottom-nav,
  body.modal-open .header,
  body.modal-open .mobile-bottom-wrap,
  body.modal-open .mobile-bottom-nav {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.modal-open {
    overflow: hidden !important;
    touch-action: none;
  }

  html.modal-open {
    overflow: hidden !important;
  }

  .section-title {
    font-size: 22px !important;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .section-sub,
  .subtitle {
    font-size: 14px !important;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 32px !important;
    margin-bottom: 16px !important;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px !important;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .btn-hero {
    min-height: 60px !important;
    padding: 18px !important;
    font-size: 18px !important;
  }

  .btn-hero,
  .btn-primary,
  .price-cta-full,
  .mobile-booking-main {
    width: 100%;
    min-height: 56px;
    justify-content: center;
    font-size: 16px;
  }

  .hero-reviews,
  .hero-reviews-link {
    display: none !important;
  }

  .hero-inner {
    padding-top: 8px;
  }

  /* Welcome block */
  .welcome-block {
    display: block;
    background: linear-gradient(135deg, rgba(89, 60, 144, 0.15) 0%, rgba(6, 3, 6, 0.95) 100%);
    border: 2px solid rgba(89, 60, 144, 0.4);
    border-radius: 16px;
    padding: 32px 24px;
    margin: 16px 16px 8px;
    text-align: center;
    order: 3;
  }

  .welcome-avatar {
    font-size: 64px;
    margin-bottom: 16px;
    line-height: 1;
  }

  .welcome-block h2 {
    color: #593C90;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
  }

  .welcome-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .welcome-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    text-align: left;
  }

  .welcome-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(89, 60, 144, 0.2);
  }

  .btn-start {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #593C90, #5E2177);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    min-height: 56px;
    font-family: 'Montserrat', sans-serif;
  }

  .welcome-block .btn-speak,
  html.app-mode .btn-speak {
    width: 100%;
    max-width: 360px;
    margin: 16px auto 0;
  }

  html.app-mode .hero-content .btn-speak {
    margin-top: 20px;
  }

  /* ===== Prices: keep prices-v2.css, do not override type scale ===== */
  html.app-mode #section-prices .prices-section {
    padding: 8px 0 0;
    margin: 0;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
  }

  html.app-mode #section-prices .prices-section > .container {
    flex: 1;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 16px 12px;
  }

  /* ===== Halls — horizontal swipe slider ===== */
  #halls {
    padding: 0 !important;
    margin: 0;
    min-height: 0;
  }

  #halls .halls-desktop-wrap {
    display: none !important;
  }

  .halls-app-section {
    display: block;
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #060306;
  }

  .halls-fullscreen-slider {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .halls-fullscreen-slider::-webkit-scrollbar {
    display: none;
  }

  .hall-fullscreen-card {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .hall-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .hall-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hall-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 3, 6, 0.25) 0%, rgba(6, 3, 6, 0.92) 100%);
    pointer-events: none;
  }

  .hall-content {
    position: absolute;
    bottom: 48px;
    left: 20px;
    right: 20px;
    background: transparent;
    padding: 0;
    z-index: 2;
  }

  .hall-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
  }

  .hall-fullscreen-card .hall-price {
    color: #FFDE59 !important;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
  }

  .hall-capacity,
  .hall-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 4px 0;
  }

  .btn-hall-details {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #593C90, #5E2177);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    min-height: 56px;
    font-family: 'Montserrat', sans-serif;
  }

  .btn-hall-details:active {
    transform: scale(0.98);
  }

  /* Onboarding */
  .onboarding-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 3, 6, 0.95);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .onboarding-modal.is-open {
    display: flex;
  }

  .onboarding-content {
    text-align: center;
    max-width: 400px;
  }

  .onboarding-icon {
    font-size: 80px;
    margin-bottom: 24px;
    line-height: 1;
  }

  .onboarding-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
  }

  .onboarding-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 32px;
  }

  .onboarding-modal .btn-start {
    width: auto;
    min-width: 200px;
    padding: 18px 48px;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(89, 60, 144, 0.4);
  }

  html.app-mode #section-booking .mobile-contacts-card {
    margin: 12px 16px 24px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 14px;
  }

  html.app-mode #section-booking .map-switcher {
    max-width: none;
    margin: 0 0 10px;
  }

  html.app-mode #section-booking .map-switcher-nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 8px;
  }

  html.app-mode #section-booking .map-chip {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 32px;
    height: auto;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 999px;
    border: 1px solid rgba(89, 60, 144, 0.4);
    background: rgba(89, 60, 144, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    cursor: pointer;
  }

  html.app-mode #section-booking .map-chip.active {
    background: #593C90;
    border-color: #593C90;
    color: #fff;
    box-shadow: none;
  }

  html.app-mode #section-booking .map-card {
    margin: 0 0 12px;
    border-radius: 12px;
  }

  html.app-mode #section-booking .map-frame {
    height: 150px;
  }

  html.app-mode #section-booking .mobile-booking-main {
    width: 100%;
    min-height: 44px;
    margin: 10px 0 8px;
    font-size: 15px;
  }

  html.app-mode #section-booking .mobile-contacts-phone {
    font-size: 18px;
    margin-bottom: 8px;
  }

  html.app-mode #section-contacts .desktop-map,
  html.app-mode #section-contacts .maps-grid,
  html.app-mode #section-contacts .section-title,
  html.app-mode #section-contacts .section-sub {
    display: none !important;
  }

  html.app-mode #section-contacts .container {
    padding: 0 16px;
  }

  html.app-mode #packages,
  html.app-mode .packages-section {
    padding: 0 !important;
    margin: 0;
  }

  html.app-mode .prices,
  html.app-mode .packages-section {
    padding: 0 0 24px !important;
  }

  html.app-mode .contacts {
    padding: 0 !important;
  }

  .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 0;
    margin: 0;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
    min-height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
  }

  .slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: #FFDE59;
  }

  /* ===== Packages section (mobile) ===== */
  .packages-section {
    display: block;
    padding: 48px 16px;
    background: linear-gradient(180deg, #060306 0%, #1a0b2e 100%);
  }

  .packages-section .section-title {
    background: none !important;
    -webkit-text-fill-color: #593C90 !important;
    color: #593C90 !important;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
  }

  .packages-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-align: center;
    margin-bottom: 32px;
    display: block !important;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .packages-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .packages-section .package-card {
    background: linear-gradient(135deg, rgba(89, 60, 144, 0.15) 0%, rgba(6, 3, 6, 0.95) 100%);
    border: 2px solid rgba(89, 60, 144, 0.4);
    border-radius: 16px;
    padding: 24px 20px;
  }

  .packages-section .package-card.featured-package {
    border: 3px solid #FFDE59;
    box-shadow: 0 8px 24px rgba(255, 222, 89, 0.2);
  }

  .packages-section .package-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .packages-section .package-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFDE59, #FFEF9B);
    color: #060306;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .packages-section .package-header h3 {
    color: #593C90;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .packages-section .package-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
  }

  .packages-section .package-prices {
    margin-bottom: 16px;
  }

  .packages-section .package-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(6, 3, 6, 0.5);
    border-radius: 12px;
    margin-bottom: 8px;
  }

  .packages-section .package-price-row.featured {
    background: rgba(89, 60, 144, 0.2);
    border: 1px solid rgba(89, 60, 144, 0.4);
  }

  .packages-section .package-price-row.centered {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .packages-section .day-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
  }

  .packages-section .price {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
  }

  .packages-section .price.big {
    font-size: 32px;
    color: #FFDE59;
  }

  .packages-section .savings {
    background: #4ADE80;
    color: #060306;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .packages-section .package-savings-big {
    background: #4ADE80;
    color: #060306;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
  }

  .packages-section .package-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .halls .section-sub {
    -webkit-line-clamp: 3;
  }

  /* ===== Formats: dark integrated cards + horizontal slider ===== */
  #formats.formats-section,
  body > #formats {
    background: linear-gradient(180deg, #060306 0%, #1a0b2e 100%) !important;
    padding: 48px 0 !important;
  }

  .formats-head {
    display: block !important;
    margin-bottom: 8px;
  }

  .formats-head-desktop-only {
    display: none !important;
  }

  .formats-head-mobile-only {
    display: block !important;
  }

  #formats .formats-head-mobile-only.section-title {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #593C90;
    color: #593C90;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
  }

  #formats .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-align: center;
    margin-bottom: 24px;
  }

  .format-card--cover {
    display: none !important;
  }

  .format-card--custom {
    display: flex !important;
  }

  .advantages-grid .format-card:nth-child(n+7) {
    display: flex !important;
  }

  .formats-carousel {
    padding: 0 !important;
  }

  .advantages-grid.formats-container,
  .formats-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 16px 8px 32px 8px;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .advantages-grid.formats-container::-webkit-scrollbar,
  .formats-slider::-webkit-scrollbar {
    display: none;
  }

  .advantage-card.format-card,
  .formats-slider .format-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-height: 280px;
    background: linear-gradient(135deg, rgba(89, 60, 144, 0.15) 0%, rgba(6, 3, 6, 0.95) 100%) !important;
    border: 2px solid rgba(89, 60, 144, 0.4) !important;
    border-radius: 16px;
    padding: 24px 20px !important;
    margin: 0;
    box-shadow: 0 8px 24px rgba(89, 60, 144, 0.2);
    text-align: left;
    position: relative;
    overflow: hidden;
    transform: none;
  }

  .advantage-card.format-card:hover {
    transform: none;
    box-shadow: 0 8px 28px rgba(89, 60, 144, 0.35);
  }

  .format-card .advantage-text,
  .format-card .card-content {
    background: transparent;
  }

  .format-card .advantage-icon {
    font-size: 48px;
    width: auto;
    height: auto;
    margin: 0 0 16px;
    justify-content: flex-start;
  }

  .format-card .advantage-title,
  .format-card h3 {
    color: #593C90 !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .format-card .advantage-text p,
  .format-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .format-points {
    display: block !important;
    margin: 0;
    padding: 0 0 0 1.1em;
    list-style: disc;
  }

  .format-points li {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 6px;
  }

  .formats-arrow {
    display: none !important;
  }

  .formats-dots,
  .slider-indicators {
    display: flex !important;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
    padding-bottom: 8px;
  }

  .formats-dot,
  .slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(89, 60, 144, 0.3);
    min-height: 8px;
    padding: 0;
    border: 0;
    transition: all 0.3s;
  }

  .formats-dot.is-active,
  .slider-indicator.active {
    background: #593C90;
    width: 24px;
    border-radius: 4px;
  }

  /* iPhone SE and smaller */
  @media (max-width: 375px) {
    .advantage-card.format-card,
    .formats-slider .format-card {
      flex: 0 0 90%;
      padding: 20px 16px !important;
      min-height: 260px;
    }

    .format-card .advantage-title,
    .format-card h3 {
      font-size: 18px;
    }
  }

  /* iPhone XR and larger phones */
  @media (min-width: 414px) and (max-width: 768px) {
    .advantage-card.format-card,
    .formats-slider .format-card {
      flex: 0 0 80%;
    }
  }

  /* Contacts app block */
  .mobile-contacts-card {
    display: block;
    background: rgba(89, 60, 144, 0.08);
    border: 1px solid rgba(89, 60, 144, 0.25);
    border-radius: 16px;
    padding: 20px 16px;
    margin-bottom: 16px;
  }

  .mobile-contacts-card p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
  }

  .mobile-contacts-phone {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #FFDE59;
    text-decoration: none;
    margin-bottom: 12px;
  }

  .mobile-contacts-hours {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 13px !important;
  }

  .mobile-booking-main {
    margin: 16px 0;
  }

  .mobile-contacts-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .mobile-contacts-social .btn {
    flex: 1 1 calc(50% - 4px);
    min-height: 44px;
    font-size: 13px;
    justify-content: center;
  }

  .contacts .map-frame {
    height: 220px;
  }

  .map-switcher-nav {
    margin-bottom: 12px;
  }

  .desktop-map {
    display: none;
  }

  /* Bottom navigation */
  .mobile-bottom-wrap {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(6, 3, 6, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .prices-dock {
    display: none;
  }

  .prices-dock-note {
    display: none;
  }

  .mobile-bottom-nav {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    border-top: none;
    z-index: auto;
  }

  .mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.2s;
    border: none;
    background: none;
    cursor: pointer;
    min-width: 56px;
  }

  .mobile-bottom-nav .nav-item.active,
  .mobile-bottom-nav .nav-item:hover {
    color: #593C90;
  }

  .mobile-bottom-nav .nav-icon {
    font-size: 20px;
    line-height: 1;
  }

  .mobile-bottom-nav .nav-item.cta-button {
    background: linear-gradient(135deg, #593C90, #5E2177);
    border-radius: 12px;
    padding: 10px 14px;
    color: #fff !important;
    margin-top: -10px;
    box-shadow: 0 4px 12px rgba(89, 60, 144, 0.4);
    min-width: auto;
  }

  .mobile-bottom-nav .nav-item.cta-button .nav-icon {
    font-size: 18px;
  }
}

@media (min-width: 769px) {
  .mobile-bottom-wrap,
  .mobile-bottom-nav,
  .mobile-contacts-card,
  .halls-carousel-dots {
    display: none !important;
  }

  .desktop-map {
    display: block;
  }
}
