/* ============================================
   PUB RADAR - Mobile-First Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Core palette - warm amber/pub tones */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;

    --red-500: #ef4444;
    --red-600: #dc2626;

    /* Semantic */
    --bg-primary: #faf8f5;
    --bg-card: #ffffff;
    --bg-overlay: rgba(15, 23, 42, 0.6);
    --text-primary: var(--slate-800);
    --text-secondary: var(--slate-500);
    --text-muted: var(--slate-400);
    --accent: var(--amber-600);
    --accent-hover: var(--amber-700);
    --accent-light: var(--amber-100);
    --border: var(--slate-200);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --header-height: 56px;
    --panel-width: 400px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.5;
    overflow: hidden;
    height: 100dvh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    line-height: 1.2;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ---- HEADER ---- */
.header {
    height: var(--header-height);
    background: var(--slate-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 1000;
    flex-shrink: 0;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__logo-icon {
    width: 32px;
    height: 32px;
    background: var(--amber-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.header__logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.header__logo-text span {
    color: var(--amber-400);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__btn {
    background: var(--slate-800);
    color: var(--slate-300);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__btn:hover {
    background: var(--slate-700);
    color: #fff;
}

.header__btn--primary {
    background: var(--amber-600);
    color: #fff;
    border-color: var(--amber-600);
}

.header__btn--primary:hover {
    background: var(--amber-700);
}

/* ---- MAIN LAYOUT ---- */
.app {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* ---- SEARCH BAR ---- */
.search-bar {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 800;
    display: flex;
    gap: 8px;
}

.search-bar__input-wrap {
    flex: 1;
    position: relative;
}

.search-bar__input {
    width: 100%;
    height: 44px;
    padding: 0 44px 0 40px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: box-shadow 0.2s;
}

.search-bar__input::placeholder {
    color: var(--text-muted);
}

.search-bar__input:focus {
    box-shadow: var(--shadow-lg), 0 0 0 2px var(--amber-400);
}

.search-bar__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 16px;
}

.search-bar__clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: background 0.15s;
}

.search-bar__clear.visible { display: flex; }
.search-bar__clear:hover { background: var(--slate-100); }

.search-bar__locate {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.search-bar__locate:hover {
    color: var(--accent);
}

.search-bar__locate.active {
    color: var(--accent);
    background: var(--accent-light);
}

.search-bar__suggestions {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 260px;
    overflow-y: auto;
    display: none;
}

.search-bar__suggestions.visible { display: block; }

.search-bar__suggestion {
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    transition: background 0.15s;
    border-bottom: 1px solid var(--slate-100);
}

.search-bar__suggestion:last-child { border-bottom: none; }
.search-bar__suggestion:hover { background: var(--amber-50); }

.search-bar__suggestion-icon {
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
}

/* ---- MAP ---- */
#map {
    flex: 1;
    width: 100%;
    background: var(--slate-200);
}

.leaflet-control-zoom { display: none; }

/* Custom Leaflet markers */
.pub-marker {
    background: var(--amber-600);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    color: #fff;
    transition: transform 0.15s;
}

.pub-marker:hover { transform: scale(1.2); }

.pub-marker--featured {
    background: var(--green-600);
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-width: 3px;
    animation: markerPulse 2s ease-in-out infinite;
}

.pub-marker--selected {
    background: var(--slate-900);
    transform: scale(1.3);
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 2px 6px rgba(0,0,0,0.3), 0 0 0 8px rgba(34, 197, 94, 0.2); }
}

/* Radius circle */
.radius-circle {
    stroke: var(--amber-600);
    fill: var(--amber-600);
    fill-opacity: 0.06;
    stroke-opacity: 0.4;
    stroke-width: 2;
    stroke-dasharray: 6 4;
}

/* ---- FILTER BAR ---- */
.filter-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.filter-bar__scroll {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.filter-chip {
    flex-shrink: 0;
    height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: var(--amber-300);
    background: var(--amber-50);
}

.filter-chip.active {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: #fff;
}

.filter-chip__icon { font-size: 15px; }

.filter-chip--radius {
    gap: 4px;
}

.filter-chip--radius select {
    appearance: none;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: inherit;
    cursor: pointer;
    padding-right: 2px;
}

.filter-chip.active select { color: #fff; }

/* ---- RESULTS COUNT BADGE ---- */
.results-badge {
    position: absolute;
    bottom: 68px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
    background: var(--slate-900);
    color: #fff;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0;
    pointer-events: none;
}

.results-badge.visible {
    opacity: 1;
    pointer-events: all;
}

.results-badge:hover {
    background: var(--slate-800);
    transform: translateX(-50%) scale(1.05);
}

.results-badge__count {
    background: var(--amber-500);
    color: var(--slate-900);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ---- PUB LIST PANEL ---- */
.panel-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.panel-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85dvh;
    background: var(--bg-card);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 950;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.panel.visible {
    transform: translateY(0);
}

.panel__handle {
    width: 36px;
    height: 4px;
    background: var(--slate-300);
    border-radius: 2px;
    margin: 10px auto 6px;
    flex-shrink: 0;
}

.panel__header {
    padding: 6px 16px 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.panel__title {
    font-size: 18px;
    color: var(--text-primary);
}

.panel__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    transition: background 0.15s;
}

.panel__close:hover { background: var(--slate-100); }

.panel__list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* ---- AD SLOT ---- */
.ad-slot {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.ad-slot__placeholder {
    background: var(--slate-100);
    border: 1px dashed var(--slate-300);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- PUB CARD ---- */
.pub-card {
    padding: 14px 16px;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: background 0.15s;
}

.pub-card:hover { background: var(--amber-50); }
.pub-card:active { background: var(--amber-100); }

.pub-card--featured {
    background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, rgba(251,191,36,0.04) 100%);
    border-left: 3px solid var(--green-600);
}

.pub-card__image {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    background: var(--slate-200);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--slate-400);
}

.pub-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pub-card__info { flex: 1; min-width: 0; }

.pub-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.pub-card__name {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    line-height: 1.3;
    color: var(--text-primary);
}

.pub-card__featured-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green-700);
    background: rgba(34,197,94,0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pub-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-secondary);
}

.pub-card__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
    color: var(--amber-600);
}

.pub-card__rating-stars {
    letter-spacing: -1px;
    font-size: 12px;
}

.pub-card__distance {
    color: var(--text-muted);
}

.pub-card__status {
    font-weight: 600;
}

.pub-card__status--open { color: var(--green-600); }
.pub-card__status--closed { color: var(--red-500); }

.pub-card__tags {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.pub-card__tag {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    background: var(--slate-100);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ---- PUB DETAIL PANEL ---- */
.detail-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90dvh;
    background: var(--bg-card);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 960;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.detail-panel.visible { transform: translateY(0); }

.detail-panel__header {
    position: relative;
    background: var(--slate-200);
    min-height: 160px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.detail-panel__header-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.detail-panel__header-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.detail-panel__header-content {
    position: relative;
    padding: 16px;
    width: 100%;
}

.detail-panel__back {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(8px);
    transition: background 0.15s;
    z-index: 2;
}

.detail-panel__back:hover { background: rgba(0,0,0,0.6); }

.detail-panel__name {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.detail-panel__address {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
}

.detail-panel__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
}

.detail-panel__stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.detail-panel__stat {
    flex: 1;
    background: var(--slate-50);
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.detail-panel__stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--amber-600);
}

.detail-panel__stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.detail-panel__section {
    margin-bottom: 16px;
}

.detail-panel__section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.detail-panel__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-panel__feature {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    font-size: 13px;
    color: var(--text-secondary);
}

.detail-panel__feature--yes {
    background: rgba(34,197,94,0.08);
    color: var(--green-700);
}

.detail-panel__feature--no {
    background: var(--slate-50);
    color: var(--text-muted);
    text-decoration: line-through;
}

.detail-panel__hours {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.detail-panel__hours strong {
    color: var(--text-primary);
}

.detail-panel__actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.detail-panel__action-btn {
    flex: 1;
    height: 44px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.detail-panel__action-btn--primary {
    background: var(--amber-600);
    color: #fff;
}

.detail-panel__action-btn--primary:hover { background: var(--amber-700); }

.detail-panel__action-btn--secondary {
    background: var(--slate-100);
    color: var(--text-secondary);
}

.detail-panel__action-btn--secondary:hover { background: var(--slate-200); }

/* ---- LOADING STATES ---- */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 16px;
    color: var(--text-muted);
    font-size: 14px;
}

.loading-spinner__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber-500);
    animation: loadDot 1.2s ease-in-out infinite;
}

.loading-spinner__dot:nth-child(2) { animation-delay: 0.15s; }
.loading-spinner__dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes loadDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ---- EMPTY STATE ---- */
.empty-state {
    padding: 40px 24px;
    text-align: center;
}

.empty-state__icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state__title {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.empty-state__text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ---- DEMO BANNER ---- */
.demo-banner {
    background: linear-gradient(90deg, var(--amber-100), var(--amber-50));
    border-bottom: 1px solid var(--amber-200);
    padding: 8px 16px;
    font-size: 12px;
    color: var(--amber-700);
    text-align: center;
    flex-shrink: 0;
    display: none;
}

.demo-banner.visible { display: block; }

/* ---- TOAST ---- */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--slate-900);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    white-space: nowrap;
}

.toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- GOOGLE ADS SLOTS ---- */
.ad-banner {
    text-align: center;
    padding: 0;
    background: var(--slate-50);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.ad-banner--header {
    min-height: 50px;
}

.ad-banner--inline {
    margin: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--slate-300);
    min-height: 100px;
}

.ad-banner__label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- POPUP STYLES ---- */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0 !important;
}

.leaflet-popup-content {
    margin: 0 !important;
    min-width: 220px;
}

.popup-pub {
    padding: 14px;
}

.popup-pub__name {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.popup-pub__meta {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.popup-pub__rating {
    color: var(--amber-600);
    font-weight: 600;
}

.popup-pub__btn {
    width: 100%;
    height: 36px;
    background: var(--amber-600);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s;
}

.popup-pub__btn:hover { background: var(--amber-700); }

/* ============================================
   DESKTOP LAYOUT (768px+)
   ============================================ */
@media (min-width: 768px) {
    .header { padding: 0 20px; }

    .search-bar {
        left: 20px;
        right: auto;
        width: 400px;
    }

    /* Side panel instead of bottom sheet */
    .panel {
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: var(--panel-width);
        max-height: 100%;
        border-radius: 0;
        transform: translateX(-100%);
    }

    .panel.visible {
        transform: translateX(0);
    }

    .panel__handle { display: none; }

    .panel-overlay { display: none; }

    .detail-panel {
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: var(--panel-width);
        max-height: 100%;
        border-radius: 0;
        transform: translateX(-100%);
    }

    .detail-panel.visible {
        transform: translateX(0);
    }

    .filter-bar {
        bottom: auto;
        top: 12px;
        left: 440px;
        right: 20px;
        background: none;
        border: none;
    }

    .filter-bar__scroll {
        padding: 0;
    }

    .filter-chip {
        background: var(--bg-card);
        box-shadow: var(--shadow-md);
    }

    .results-badge {
        bottom: 24px;
    }

    .ad-banner--header {
        min-height: 90px;
    }
}

@media (min-width: 1024px) {
    :root {
        --panel-width: 440px;
    }
}
