/* === lako.je — Portal Stylesheet === */
/* Cream + rose gold, Playfair Display + Plus Jakarta Sans */

:root {
    --bg: #FDF5F3;
    --bg-card: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #6B5F5C;
    --text-soft: #A89A95;
    --accent: #B76E79;
    --accent-dark: #8E4F5A;
    --accent-soft: #EFCFD3;
    --accent-pale: rgba(183, 110, 121, 0.08);
    --gold: #C9A961;
    --border: #F0E1DE;
    --shadow: 0 8px 32px rgba(143, 84, 95, 0.08);
    --shadow-lg: 0 20px 60px rgba(143, 84, 95, 0.14);
    --radius: 14px;
    --radius-lg: 20px;
    --good: #2D7D3A;
    --warn: #D4A24C;
    --danger: #B92F3B;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Skip to content — accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* Focus visible (keyboard nav) */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}
*:focus:not(:focus-visible) { outline: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.bg-decoration {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 90% 70% at 10% 0%, rgba(239, 207, 211, 0.55), transparent 60%),
        radial-gradient(ellipse 80% 60% at 95% 100%, rgba(201, 169, 97, 0.14), transparent 65%),
        linear-gradient(180deg, #FEF8F6 0%, #FBEDE8 100%);
    pointer-events: none;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.main { min-height: calc(100vh - 200px); }

/* === Topbar === */
.topbar {
    background: rgba(253, 245, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.brand-link { text-decoration: none; }
.brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    font-style: italic;
}
.brand .dot { color: var(--accent); font-weight: 800; font-style: normal; }

.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}
.main-nav a:hover { color: var(--accent); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

/* === Lang switcher === */
.lang-switcher { position: relative; }
.lang-current {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    font-family: inherit;
    transition: all 0.2s;
}
.lang-current:hover {
    background: var(--accent-pale);
    color: var(--accent);
    border-color: var(--accent-soft);
}
.lang-code { letter-spacing: 0.05em; }
.lang-caret { font-size: 9px; opacity: 0.7; }
.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    z-index: 200;
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
}
.lang-item:hover { background: var(--accent-pale); color: var(--accent-dark); }
.lang-item.active { background: var(--accent-pale); color: var(--accent-dark); font-weight: 600; }
.lang-code-mini {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 11px;
    color: var(--accent);
    min-width: 28px;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: transform 0.25s, opacity 0.25s;
    border-radius: 2px;
}
.nav-toggle-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle-active span:nth-child(2) { opacity: 0; }
.nav-toggle-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobilni nav — pravi premium fullscreen overlay */
@media (max-width: 920px) {
    .main-nav.main-nav-mobile-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background:
            radial-gradient(ellipse 80% 60% at 50% 10%, rgba(239, 207, 211, 0.55), transparent 70%),
            linear-gradient(180deg, #FEF8F6 0%, #FBEDE8 100%);
        padding: 96px 32px 48px;
        gap: 4px;
        z-index: 150;
        animation: fadeInOverlay 0.3s ease-out;
        overflow-y: auto;
        align-items: center;
        justify-content: flex-start;
    }
    .main-nav.main-nav-mobile-open::before {
        content: 'lako\002eje';
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-style: italic;
        font-weight: 700;
        color: var(--text);
        letter-spacing: -0.02em;
    }
    .main-nav.main-nav-mobile-open a {
        display: block;
        text-align: center;
        padding: 20px 24px;
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 500;
        font-style: italic;
        color: var(--text);
        width: 100%;
        max-width: 360px;
        border-radius: 14px;
        transition: all 0.2s ease;
        letter-spacing: -0.01em;
    }
    .main-nav.main-nav-mobile-open a:hover,
    .main-nav.main-nav-mobile-open a:active {
        background: var(--accent-pale);
        color: var(--accent);
        transform: scale(1.02);
    }
    /* Decorative tačka između linkova */
    .main-nav.main-nav-mobile-open a:not(:last-child)::after {
        content: '·';
        display: block;
        color: var(--accent);
        font-size: 24px;
        margin-top: 4px;
        opacity: 0.5;
    }
}
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hamburger ikona — z-index iznad overlay-a kad je otvoreno */
.nav-toggle { z-index: 200; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(143, 84, 95, 0.25);
}
.btn-outline-gold {
    background: var(--bg-card);
    color: var(--accent);
    border: 1.5px solid var(--accent);
}
.btn-outline-gold:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-card); color: var(--text); border-color: var(--accent-soft); }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #8E1F2A; }
.btn-full { width: 100%; padding: 14px; font-size: 15px; }
.btn-sm { padding: 6px 12px; font-size: 13px; }

/* === Modal (predloži salu i sl.) === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    animation: fadeInOverlay 0.2s ease-out;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
    background: var(--bg-card);
    border-radius: 18px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
}
.modal-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-soft);
    padding: 8px 12px;
    line-height: 1;
    border-radius: 8px;
    transition: all 0.15s;
}
.modal-close:hover {
    background: var(--accent-pale);
    color: var(--accent);
}
.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
@media (max-width: 540px) {
    .modal-card { padding: 28px 22px; border-radius: 14px; }
    .modal-card h2 { font-size: 24px; }
    .modal-actions { flex-direction: column-reverse; }
    .modal-actions .btn { width: 100%; }
}

/* === Building banner (dismissable info strip) === */
.building-banner {
    background: linear-gradient(90deg, var(--accent-pale) 0%, rgba(201, 169, 97, 0.12) 100%);
    border-bottom: 1px solid var(--border);
    color: var(--accent-dark);
    overflow: hidden;
}
.building-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    flex-wrap: wrap;
}
.building-text {
    flex: 1;
    min-width: 200px;
    line-height: 1.4;
}
.building-cta {
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.building-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(143, 84, 95, 0.25);
}
.building-close {
    background: transparent;
    border: none;
    color: var(--accent-dark);
    cursor: pointer;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0.6;
    transition: opacity 0.2s;
    line-height: 1;
}
.building-close:hover { opacity: 1; background: rgba(255, 255, 255, 0.4); }

@media (max-width: 600px) {
    .building-inner { padding: 10px 16px; gap: 10px; }
    .building-text { font-size: 13px; flex-basis: 100%; }
    .building-cta { font-size: 12px; padding: 7px 14px; }
}

/* === Flash === */
.flash-zone { max-width: 1180px; margin: 16px auto 0; padding: 0 24px; }
.flash {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}
.flash-success { background: #E8F5EA; color: var(--good); border: 1px solid #C8E5CC; }
.flash-error { background: #FBE5E8; color: var(--danger); border: 1px solid #F5C2C7; }
.flash-info { background: var(--accent-pale); color: var(--accent-dark); }

/* === Hero (home) === */
.hero-home {
    text-align: center;
    padding: 80px 0 60px;
}
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(54px, 10vw, 110px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--text);
}
.hero-headline em {
    font-style: italic;
    color: var(--accent);
}
.hero-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.55;
}
.hero-counter {
    font-size: 14px;
    color: var(--text-soft);
    margin-top: 28px;
    font-weight: 500;
}

/* === Search form === */
.search-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 8px;
    max-width: 880px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 12px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    padding: 6px 10px;
    border-right: 1px solid var(--border);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.search-field input, .search-field select {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;  /* 16px sprečava iOS auto-zoom kad fokus */
    font-weight: 500;
    color: var(--text);
    padding: 4px 0;
    min-width: 0;
    width: 100%;
}
.search-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B76E79' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 22px;
    cursor: pointer;
}
.search-field select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 6.5L6 1.5L11 6.5' stroke='%238E4F5A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.search-field select option {
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    padding: 12px;
    background: var(--bg-card);
}
.search-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0 28px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.search-btn:hover { background: var(--accent-dark); }

.search-form-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 8px;
    background: var(--bg-card);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin-top: 24px;
}

/* === Search hero === */
.search-hero {
    background: linear-gradient(180deg, rgba(239, 207, 211, 0.4) 0%, transparent 100%);
    padding: 48px 0 32px;
}
.search-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.02em;
}

.search-body { padding: 24px 24px 48px; }
.search-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.search-summary { color: var(--text-muted); font-size: 15px; }
.search-sort { display: flex; align-items: center; gap: 8px; }
.search-sort select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
}

/* === Halls grid === */
.halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.hall-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}
.hall-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-soft);
}
.hall-card.premium { border-color: var(--gold); box-shadow: 0 4px 24px rgba(201, 169, 97, 0.15); }
.hall-card.unclaimed::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    border: 1px dashed rgba(212, 175, 55, 0.4);
}
.premium-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: white;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 1;
}
.unclaimed-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.04em;
    z-index: 1;
    border: 1px solid rgba(146, 64, 14, 0.2);
}
body.dark .unclaimed-badge {
    background: rgba(254, 243, 199, 0.15);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.35);
}
.unclaimed-callout {
    margin: 16px 0 20px;
    padding: 14px 16px;
    background: rgba(254, 243, 199, 0.45);
    border: 1px solid rgba(146, 64, 14, 0.2);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
}
.unclaimed-callout strong { display: block; margin-bottom: 4px; color: #92400e; font-size: 13px; }
.unclaimed-callout p { margin: 4px 0 10px; color: var(--text-muted); font-size: 13px; line-height: 1.5; }
body.dark .unclaimed-callout {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
}
body.dark .unclaimed-callout strong { color: #fbbf24; }
.hall-photo {
    height: 180px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-pale));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hall-photo-placeholder, .gallery-placeholder { font-size: 60px; opacity: 0.35; }
.hall-body { padding: 18px 18px 20px; }
.hall-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.hall-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.hall-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* === Section heads === */
.section { padding: 56px 0; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 8px;
}
.section-head h2, .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.015em;
}
.section-title { text-align: center; margin-bottom: 32px; }
.link-arrow {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.2s;
}
.link-arrow:hover { color: var(--accent-dark); }

/* === How strip === */
.how-strip { padding: 64px 0; }
.how-strip-full { background: var(--bg-card); border-radius: var(--radius-lg); padding: 48px 32px; margin: 24px 0; border: 1px solid var(--border); }
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
/* Kad je grid u 2 kolone (medium width), centrira treci item da ne stoji levo */
@media (min-width: 540px) and (max-width: 859px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-grid > .how-item:nth-child(3):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 420px;
    }
}
.how-item { text-align: center; }
.how-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}
.how-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.how-item p { color: var(--text-muted); }

/* === Categories pills === */
.categories-strip { padding: 48px 0; }
.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}
.cat-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}
.cat-pill span { font-size: 18px; }

.cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    justify-content: center;
}
.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}
.cat-tab.active { background: var(--accent); color: white; border-color: var(--accent); }
.cat-tab .count { background: rgba(0,0,0,0.1); padding: 1px 6px; border-radius: 999px; font-size: 11px; }

/* === Cities grid === */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.city-tile {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.city-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.city-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.city-count { font-size: 13px; color: var(--text-muted); }

/* === For-owners CTA === */
.for-owners-cta { padding: 56px 0 80px; }
.owners-card {
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.08) 0%, rgba(201, 169, 97, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 64px 32px;
    text-align: center;
}
.owners-eyebrow {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.owners-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}
.owners-card h2 em { font-style: italic; color: var(--accent); }
.owners-card p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }

/* === Hall detail === */
.hall-hero { padding: 32px 0 48px; }
.breadcrumb {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }

.hall-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}
.gallery-main {
    height: 420px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-pale));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumb {
    height: 80px;
    border-radius: 8px;
    background: var(--accent-pale);
    background-size: cover;
    background-position: center;
}

.hall-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 80px;
    align-self: start;
}
.hall-sidebar h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 8px;
}
.hall-location { color: var(--text-muted); margin-bottom: 20px; font-size: 14px; }
.hall-quickfacts { margin-bottom: 24px; }
.qf-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}
.qf-row:last-child { border-bottom: none; }
.qf-label { color: var(--text-soft); font-weight: 500; }
.qf-val { font-weight: 600; color: var(--text); }

.hall-contact-actions { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.hall-contact-actions .btn { padding: 12px 20px; font-size: 14px; }

.watch-btn {
    width: 100%;
    background: var(--bg-card);
    border: 1.5px dashed var(--accent-soft);
    color: var(--accent);
    padding: 12px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.watch-btn:hover { background: var(--accent-pale); border-style: solid; }

.hall-section { padding: 32px 0; border-top: 1px solid var(--border); }
.hall-section:first-of-type { border-top: none; }
.hall-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}
.hall-description { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

.amenities-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; list-style: none; }
.amenities-list li { padding: 8px 0; font-size: 15px; }
.amenity-check { color: var(--good); font-weight: 700; margin-right: 8px; }

.calendar-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.cal-day {
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cal-day small { font-size: 10px; opacity: 0.7; text-transform: uppercase; }
.cal-available { background: #E8F5EA; border-color: #C8E5CC; }
.cal-in_negotiation { background: #FFF5DB; border-color: #F5E2A8; }
.cal-booked { background: #FBE5E8; border-color: #F5C2C7; }
.cal-blocked { background: #EEE; border-color: #CCC; opacity: 0.6; }
.cal-note { font-size: 12px; color: var(--text-soft); }

/* === Page content (static) === */
.page-content {
    padding: 48px 24px 64px;
    max-width: 820px;
}
.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin: 32px 0 12px;
}
.page-content .lead { font-size: 19px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.55; }
.page-content p { margin-bottom: 16px; color: var(--text); line-height: 1.7; }
.page-content ul, .page-content ol { margin: 16px 0 16px 24px; }
.page-content li { margin-bottom: 6px; }
.check-list { list-style: none; margin-left: 0 !important; }
.check-list li { padding: 6px 0; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
}
.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    font-size: 16px;
}
.faq-item[open] summary { color: var(--accent); margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); }

.legal-content h2 { font-size: 22px; margin-top: 28px; }
.legal-date { font-size: 13px; color: var(--text-soft); margin-bottom: 24px; }

/* === Pricing === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 24px 0 32px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
}
.pricing-card-featured {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(143, 84, 95, 0.12);
}
.featured-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}
.price-tag small { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.price-note, .footnote { font-size: 13px; color: var(--text-soft); margin-top: 16px; line-height: 1.5; }
.footnote { margin-top: 32px; }

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}
.contact-info h2 { font-size: 20px !important; }
.contact-form {
    background: var(--bg-card);
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.contact-form h2 { margin-top: 0 !important; }

/* === Blog === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
    height: 140px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-pale));
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    opacity: 0.7;
}
.blog-img-1 { background: linear-gradient(135deg, #F5D5DC, #EFC8CF); }
.blog-img-2 { background: linear-gradient(135deg, #E5E0F0, #D8D2EC); }
.blog-img-3 { background: linear-gradient(135deg, #F5E6CC, #EBD9B4); }
.blog-img-4 { background: linear-gradient(135deg, #D4E9D8, #C2DFC8); }
.blog-img-5 { background: linear-gradient(135deg, #F0CFCF, #E5BCBC); }
.blog-img-6 { background: linear-gradient(135deg, #E0E5F0, #D0D7E8); }
.blog-card-body { padding: 18px; }
.blog-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.blog-card p { font-size: 14px; color: var(--text-muted); }
.blog-meta { display: block; font-size: 12px; color: var(--text-soft); margin-top: 8px; }

.blog-cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    margin-top: 40px;
}
.blog-cta h2 { font-size: 28px !important; margin: 0 0 8px !important; }
.inline-signup {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 16px auto 0;
}
.inline-signup input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
}
.inline-signup button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
}

/* === Auth pages === */
.auth-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow);
}
.auth-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}
.auth-sub { color: var(--text-muted); margin-bottom: 28px; font-size: 14px; }
.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}
.auth-footer a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* === Forms === */
.form-row { margin-bottom: 16px; }
.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-card);
    font-family: inherit;
    font-size: 16px;  /* 16px sprečava iOS auto-zoom kad fokus */
    color: var(--text);
    transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-pale);
}
.form-row textarea { resize: vertical; font-family: inherit; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.form-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}
.form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}
.form-help { font-size: 13px; color: var(--text-soft); margin-top: 6px; }
.form-actions { display: flex; gap: 10px; margin-top: 24px; }

.terms-note { font-size: 12px; color: var(--text-soft); margin-bottom: 16px; }

/* === Dashboard === */
.dashboard-page { padding: 32px 24px 64px; }
.dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.dashboard-head h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
}
.dashboard-sub { color: var(--text-muted); font-size: 14px; }
.dashboard-actions { display: flex; gap: 10px; }

.dashboard-grid { display: flex; flex-direction: column; gap: 24px; }
.dashboard-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.dashboard-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 12px; }

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.dashboard-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.dashboard-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}
.dashboard-table tr:last-child td { border-bottom: none; }
.dashboard-table tr:hover td { background: rgba(239, 207, 211, 0.08); }

.status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.status-active { background: #E8F5EA; color: var(--good); }
.status-pending_review { background: #FFF5DB; color: #8E6E2F; }
.status-suspended { background: #FBE5E8; color: var(--danger); }
.status-rejected { background: #EEE; color: #777; }

.action-buttons { display: flex; gap: 6px; flex-wrap: wrap; }

.empty-state {
    text-align: center;
    padding: 80px 24px;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}
.empty-state .empty-icon { font-size: 60px; margin-bottom: 16px; opacity: 0.4; }
.empty-state h2 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }
.empty-state-mini { padding: 32px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* === Premium watch forma (multi-hall + day-of-week) === */
.premium-form { margin-top: 24px; }
.hall-checklist {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 480px;
    overflow-y: auto;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.city-group h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--border);
}
.hall-checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 6px;
}
.hall-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 14px;
}
.hall-check:hover { border-color: var(--accent-soft); background: var(--accent-pale); }
.hall-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}
.hall-check-name {
    flex: 1;
    font-weight: 600;
    color: var(--text);
}
.hall-check-meta {
    font-size: 12px;
    color: var(--text-soft);
}
.mini-badge {
    background: var(--gold);
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.dow-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}
.dow-check {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}
.dow-check:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent-pale);
    color: var(--accent-dark);
}
.dow-check input { display: none; }

@media (max-width: 540px) {
    .dow-grid { grid-template-columns: repeat(4, 1fr); }
    .hall-checks { grid-template-columns: 1fr; }
}

.premium-cta-section {
    background: linear-gradient(135deg, rgba(201,169,97,0.08), rgba(183,110,121,0.08));
    border: 1px solid var(--gold);
}
.premium-cta-section h2 {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 36px !important;
}

/* === Empty search — signup forma sa kriterijumima === */
.empty-signup-form {
    margin: 32px auto 0;
    max-width: 540px;
    text-align: left;
}
.empty-criteria {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 24px;
    text-align: center;
}
.criteria-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}
.criteria-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-pale);
    color: var(--accent-dark);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}
.chip-muted {
    background: var(--bg);
    color: var(--text-soft);
    font-weight: 400;
    font-style: italic;
}
.empty-form-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 14px;
}
.empty-signup-row {
    display: flex;
    gap: 8px;
    background: var(--bg-card);
    padding: 7px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.empty-signup-row input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    color: var(--text);
    min-width: 0;
}
.empty-signup-row button {
    white-space: nowrap;
}
@media (max-width: 540px) {
    .empty-signup-row { flex-direction: column; padding: 8px; gap: 6px; }
    .empty-signup-row button { width: 100%; }
}

.quick-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.quick-link {
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}
.quick-link:hover { background: var(--accent-pale); color: var(--accent-dark); }

/* === Admin === */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 32px;
}
.stat-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.stat-tile-good { background: #F0F8F2; border-color: #C8E5CC; }
.stat-tile-warn { background: #FFF8E5; border-color: #F5E2A8; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; }
.stat-label { font-size: 12px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.06em; }

.admin-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}
.admin-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}
.admin-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.admin-tile h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 4px; }
.admin-tile p { font-size: 13px; color: var(--text-muted); }

.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-tab {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}
.filter-tab.active { background: var(--accent); color: white; border-color: var(--accent); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.stat-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 16px; }
.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}
.stat-row:last-child { border-bottom: none; }
.stat-row span { color: var(--text-muted); }
.stat-row strong { color: var(--text); }
.stat-highlight { padding-top: 12px; border-top: 2px solid var(--accent-soft); border-bottom: none; }
.stat-highlight strong { color: var(--accent); font-size: 16px; }

/* Mini SVG-less bar chart za stats */
.mini-bars {
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    gap: 2px;
    height: 80px;
    align-items: end;
    padding: 8px 0;
}
.mini-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    cursor: help;
}
.mini-bar-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-soft));
    border-radius: 2px;
    min-height: 2px;
    transition: opacity 0.2s;
}
.mini-bar:hover .mini-bar-fill { opacity: 0.7; }
.mini-bar-date {
    position: absolute;
    bottom: -16px;
    font-size: 8px;
    color: var(--text-soft);
    transform: rotate(-45deg);
    transform-origin: top left;
    white-space: nowrap;
    display: none;
}
.mini-bar:nth-child(5n+1) .mini-bar-date { display: block; }

/* === Calendar — Grid view (24 meseca, click-to-toggle) === */
.cal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}
.cal-stat {
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.cal-stat strong {
    display: block;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.cal-stat span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cal-stat-free strong   { color: #2D7D3A; }
.cal-stat-negotiation strong { color: #D4A24C; }
.cal-stat-booked strong { color: #B92F3B; }
.cal-stat-blocked strong { color: #555; }
.cal-stat-unset strong  { color: var(--text-soft); }

.cal-quick-actions {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.cal-quick-actions h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}
.cal-seed-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.cal-seed-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}
.cal-seed-label > span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cal-seed-label select {
    padding: 12px 14px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg);
    border: 1.5px solid var(--accent-soft);
    border-radius: 10px;
    color: var(--accent-dark);
    font-weight: 600;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238E4F5A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.cal-seed-label select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-pale);
}
.cal-seed-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    align-self: flex-end;
}
.cal-seed-form { display: inline-block; }

@media (max-width: 700px) {
    .cal-seed-row { flex-direction: column; gap: 12px; }
    .cal-seed-label { width: 100%; min-width: 0; }
    .cal-seed-btns { width: 100%; flex-direction: column; }
    .cal-seed-form { width: 100%; }
    .cal-seed-form .btn { width: 100%; }
}

.cal-legend-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}
.cal-legend-item {
    font-size: 13px;
    color: var(--text-muted);
}

.cal-months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.cal-month {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
}
.cal-month-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--accent);
    text-transform: capitalize;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-dow {
    text-align: center;
    font-size: 10px;
    color: var(--text-soft);
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 0;
    letter-spacing: 0.06em;
}
.cal-dow-weekend { color: var(--accent); }

.cal-cell {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg);
    font-size: 13px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
    padding: 0;
    position: relative;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cal-cell.cal-empty {
    background: transparent;
    border: none;
    cursor: default;
}
.cal-cell.cal-past {
    background: #F5F0EE;
    color: var(--text-soft);
    cursor: not-allowed;
    opacity: 0.5;
}
.cal-cell:not(:disabled):hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cal-cell.cal-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Status boje */
.cal-status-unset      { background: var(--bg); border-color: var(--border); }
.cal-status-available  { background: #E8F5EA; color: #2D7D3A; border-color: #C8E5CC; }
.cal-status-in_negotiation { background: #FFF5DB; color: #8E6E2F; border-color: #F5E2A8; }
.cal-status-booked     { background: #FBE5E8; color: var(--danger); border-color: #F5C2C7; }
.cal-status-blocked    { background: #EEE; color: #555; border-color: #CCC; opacity: 0.7; }

/* Weekend marker (mali dot u uglu) */
.cal-cell.cal-weekend::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.4;
}

@media (max-width: 600px) {
    .cal-months { grid-template-columns: 1fr; }
    .cal-cell { font-size: 12px; }
    .cal-quick-actions { padding: 16px; }
    .cal-quick-actions form { display: block !important; margin: 0 0 8px 0 !important; }
    .cal-quick-actions form .btn { width: 100%; }
}

/* === Calendar (legacy — održavam za eventualne ostale dele) === */
.calendar-legend { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cal-dot.cal-available { background: #5BA66E; }
.cal-dot.cal-in_negotiation { background: #D4A24C; }
.cal-dot.cal-booked { background: #B92F3B; }
.cal-dot.cal-blocked { background: #888; }

.calendar-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
}

.calendar-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.cal-day-card {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}
.cal-date { font-weight: 600; }
.cal-status { font-size: 11px; text-transform: uppercase; color: var(--text-muted); }

/* === Subscription === */
.subscription-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.sub-status { font-size: 18px; margin-bottom: 16px; }

/* Payment methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.payment-method {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}
.payment-method h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
}
.payment-method p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.payment-note {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 13px !important;
}
.bank-details {
    background: var(--bg);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
    border-left: 3px solid var(--accent);
}
.bank-details code {
    font-family: monospace;
    background: rgba(0,0,0,0.04);
    padding: 1px 6px;
    border-radius: 4px;
}

/* Proforma (predračun) */
.proforma {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 32px;
}
.proforma-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.proforma-parties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.proforma-parties h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.proforma-parties p { font-size: 14px; line-height: 1.6; margin: 0; }
.proforma-parties code { font-family: monospace; font-size: 13px; background: var(--bg); padding: 1px 6px; border-radius: 4px; }
.proforma-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
}
.proforma-table th, .proforma-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
}
.proforma-table th { background: var(--bg); text-align: left; font-weight: 600; color: var(--text-muted); }
.proforma-table tfoot td { border-bottom: none; padding-top: 12px; }
.proforma-note {
    background: var(--accent-pale);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 24px;
}
.proforma-note h4 { color: var(--accent-dark); margin-bottom: 8px; }
.proforma-note p { font-size: 14px; line-height: 1.7; margin: 0; }
.proforma-footer {
    font-size: 12px;
    color: var(--text-soft);
    text-align: center;
    margin: 0;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}

@media print {
    .no-print, .topbar, .site-footer, .bg-decoration { display: none !important; }
    body { background: white; }
    .proforma { border: none; padding: 0; box-shadow: none; }
}

/* === Footer === */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 56px 24px 24px;
    margin-top: 80px;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 32px;
}
.footer-brand-col { gap: 8px; display: flex; flex-direction: column; }
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: var(--text);
}
.footer-brand .dot { color: var(--accent); font-style: normal; font-weight: 800; }
.footer-tagline { font-family: 'Playfair Display', serif; color: var(--accent); font-style: italic; font-size: 18px; }
.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-soft);
    margin-bottom: 12px;
    font-weight: 600;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 0;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    max-width: 1180px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-soft);
}
.footer-region { letter-spacing: 0.12em; text-transform: uppercase; }

/* === Error pages === */
.error-page { text-align: center; padding: 96px 24px 64px; }
.error-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 18vw, 180px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}
.error-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 12px;
}
.error-page p { color: var(--text-muted); margin-bottom: 32px; }
.error-actions { display: flex; gap: 12px; justify-content: center; }

/* === Autocomplete === */
.autocomplete-wrap {
    position: relative;
    display: contents;
}
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-height: 280px;
    overflow-y: auto;
    z-index: 50;
    padding: 6px;
}
.autocomplete-item {
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
    transition: background 0.12s;
    line-height: 1.3;
}
.autocomplete-item:hover,
.autocomplete-item.active {
    background: var(--accent-pale);
    color: var(--accent-dark);
}
.autocomplete-item strong {
    color: var(--accent);
    font-weight: 700;
}
/* Skrivamo native dropdown arrow */
.autocomplete-wrap input::-webkit-calendar-picker-indicator {
    display: none !important;
}

/* === Autosave restored banner === */
.autosave-restored {
    background: linear-gradient(135deg, #FFF5DB 0%, #FFEFC4 100%);
    border: 1px solid #F5E2A8;
    color: #8E6E2F;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease, padding 0.5s ease;
}
.autosave-restored .clear-draft-link {
    color: var(--accent-dark);
    text-decoration: underline;
    margin-left: 8px;
    cursor: pointer;
}
.autosave-restored.autosave-fade {
    opacity: 0.5;
}
.autosave-restored.autosave-fade:hover {
    opacity: 1;
}

/* === Photo grid (owner upload manager) === */
.file-input {
    display: block;
    width: 100%;
    padding: 14px;
    border: 2px dashed var(--accent-soft);
    border-radius: 12px;
    background: var(--bg);
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}
.file-input:hover { border-color: var(--accent); background: var(--accent-pale); }
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.photo-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.photo-img {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--accent-pale);
}
.photo-actions {
    padding: 8px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}
.cover-pill {
    background: var(--gold);
    color: white;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

/* === Mobile responsive — full overhaul === */

/* Tablet i veći mobilni (do 920px) */
@media (max-width: 920px) {
    .main-nav { display: none; }
    .nav-actions { margin-left: auto; gap: 6px; }
    .nav-actions .btn-ghost { display: none; }  /* sklon "Za vlasnike" da ima prostora */
    .nav-toggle { display: block; }

    .search-form { grid-template-columns: 1fr; gap: 0; padding: 10px; }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 14px; }
    .search-field:last-of-type { border-bottom: none; }
    .search-btn { width: 100%; padding: 16px; margin-top: 6px; font-size: 16px; }
    .search-form-inline { grid-template-columns: 1fr 1fr; }

    .hall-hero-grid { grid-template-columns: 1fr; gap: 16px; }
    .hall-sidebar { position: static; padding: 24px 20px; }
    .gallery-main { height: 260px; border-radius: 14px; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .gallery-thumb { height: 64px; }

    .form-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-brand-col { grid-column: 1 / -1; text-align: center; }

    .hero-home { padding: 56px 0 40px; }
    .hero-headline { line-height: 0.95; }
    .hero-subtitle { font-size: 17px; padding: 0 8px; }

    /* Hall card hover-i ne rade na touch — uklanjamo lift */
    .hall-card:hover, .feature:hover, .city-tile:hover, .blog-card:hover { transform: none; }
}

/* Telefoni (do 600px) — kritičan touch UX */
@media (max-width: 600px) {
    html { font-size: 15px; }
    body { line-height: 1.55; }

    .topbar-inner { padding: 12px 16px; gap: 8px; }
    .brand { font-size: 22px; }
    .nav-actions .btn { padding: 8px 14px; font-size: 13px; }
    .lang-current { padding: 7px 10px; font-size: 12px; }
    .lang-menu { right: -8px; min-width: 180px; max-width: calc(100vw - 24px); }

    .container { padding: 0 16px; }
    .main { min-height: calc(100vh - 280px); }

    .hero-home { padding: 36px 0 28px; }
    .hero-headline { font-size: clamp(44px, 14vw, 64px); margin-bottom: 18px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 28px; }
    .hero-counter { font-size: 13px; margin-top: 20px; }

    /* Search form na telefonu — najveći touch buttons */
    .search-form { border-radius: 14px; padding: 8px; }
    .search-field { padding: 12px 14px; }
    .search-field label { font-size: 10px; }
    .search-field input, .search-field select { font-size: 16px; padding: 6px 0; }  /* 16px = iOS ne zoom-uje */
    .search-btn { padding: 18px; font-size: 16px; border-radius: 12px; }

    .search-form-inline { grid-template-columns: 1fr; }

    /* Halls grid — 1 kolona na telefonu */
    .halls-grid { grid-template-columns: 1fr; gap: 16px; }
    .hall-card { border-radius: 14px; }
    .hall-photo { height: 200px; }
    .hall-body { padding: 16px 16px 20px; }
    .hall-body h3 { font-size: 19px; }

    /* How strip */
    .how-strip { padding: 40px 0; }
    .how-strip-full { padding: 32px 20px; }
    .how-grid { gap: 24px; }
    .how-num { font-size: 40px; }
    .how-item h3 { font-size: 20px; }

    /* Section heads */
    .section { padding: 40px 0; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
    .section-head h2, .section-title { font-size: 26px; }

    /* Categories pills */
    .cat-pills { gap: 8px; }
    .cat-pill { padding: 10px 14px; font-size: 13px; }
    .categories-strip { padding: 36px 0; }

    /* Cities grid */
    .cities-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .city-tile { padding: 18px 14px; }
    .city-name { font-size: 18px; }

    /* For-owners CTA */
    .for-owners-cta { padding: 36px 0 56px; }
    .owners-card { padding: 40px 22px; border-radius: 16px; }
    .owners-card h2 { font-size: 28px; }

    /* Hall detail */
    .hall-hero { padding: 16px 0 32px; }
    .breadcrumb { font-size: 12px; margin-bottom: 14px; }
    .gallery-main { height: 220px; }
    .hall-sidebar h1 { font-size: 26px; }
    .hall-section { padding: 24px 0; }
    .hall-section h2 { font-size: 22px; }
    .hall-contact-actions .btn { padding: 14px 18px; font-size: 15px; }

    /* Footer — 1 kolona, sve centrirano */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-col h4 { font-size: 12px; }
    .footer-col a { padding: 6px 0; font-size: 15px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding-top: 16px; }
    .site-footer { padding: 40px 16px 16px; margin-top: 48px; }

    /* Dashboard */
    .dashboard-page { padding: 20px 16px 48px; }
    .dashboard-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .dashboard-head h1 { font-size: 26px; }
    .dashboard-section { padding: 18px; }
    .dashboard-section h2 { font-size: 19px; }

    /* Dashboard tabele — horizontal scroll umesto malim slovima */
    .dashboard-section { overflow-x: auto; }
    .dashboard-table { min-width: 600px; font-size: 13px; }
    .dashboard-table th, .dashboard-table td { padding: 10px 8px; white-space: nowrap; }

    /* Forms */
    .form-row label { font-size: 12px; }
    .form-row input, .form-row select, .form-row textarea { font-size: 16px; padding: 12px 14px; }
    .form-section { padding: 20px 18px; border-radius: 14px; }
    .form-section h2 { font-size: 19px; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; }

    /* Auth card */
    .auth-page { padding: 32px 16px; }
    .auth-card { padding: 28px 24px; border-radius: 16px; }
    .auth-card h1 { font-size: 26px; }

    /* Page content */
    .page-content { padding: 32px 16px 48px; }
    .page-content h1 { font-size: 30px; }
    .page-content h2 { font-size: 22px; margin: 28px 0 10px; }
    .page-content .lead { font-size: 17px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 24px 22px; }
    .price-tag { font-size: 34px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-img { height: 120px; font-size: 40px; }

    /* Features */
    .features { grid-template-columns: 1fr; gap: 10px; }
    .feature { padding: 18px 16px; }

    /* Premium watch */
    .hall-checks { grid-template-columns: 1fr; }
    .dow-grid { grid-template-columns: repeat(4, 1fr); }
    .premium-cta-section h2 { font-size: 30px !important; }

    /* Photo grid (owner) */
    .photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .photo-img { height: 110px; }
    .photo-actions { padding: 6px; flex-direction: column; gap: 4px; }
    .photo-actions .btn { width: 100%; font-size: 12px; }

    /* Stat cards */
    .stat-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-num { font-size: 22px; }
    .stat-tile { padding: 12px 10px; }
    .admin-nav-grid { grid-template-columns: 1fr; }

    /* Empty state */
    .empty-state { padding: 56px 16px; }
    .empty-state h2 { font-size: 22px; }
    .empty-criteria { padding: 14px 16px; }
    .chip { font-size: 13px; padding: 6px 12px; }

    /* Calendar legend */
    .calendar-legend { flex-direction: column; align-items: flex-start; gap: 6px; }
    .calendar-grid-detail { grid-template-columns: 1fr 1fr; }

    /* Schema.org JSON-LD ne treba styling */
}

/* Vrlo mali telefoni (do 380px) */
@media (max-width: 380px) {
    html { font-size: 14px; }
    .nav-actions .btn-primary { padding: 8px 12px; font-size: 12px; }
    .brand { font-size: 20px; }
    .hero-headline { font-size: 40px; }
    .stat-cards, .cities-grid { grid-template-columns: 1fr; }
    .dow-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Touch device — bigger tap targets svuda */
@media (hover: none) and (pointer: coarse) {
    .btn, .cat-pill, .city-tile, .dow-check, .hall-check, .lang-item, .filter-tab {
        min-height: 44px;
    }
    .form-row input, .form-row select, .form-row textarea { min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
