/* ============================================================================
   ZOLDEA RESPONSIVE — Comprehensive Mobile & Tablet Overrides
   ============================================================================
   Loaded AFTER components.css to override desktop styles.
   Breakpoints:
     - Tablet:  max-width 1024px
     - Mobile:  max-width 768px
     - Small:   max-width 480px
   ============================================================================ */

/* ==========================================================================
   TABLET  (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {

    /* ── Layout ───────────────────────────────────────────────────────────── */
    .app {
        grid-template-columns: 200px 1fr;
    }

    .app.sidebar-collapsed {
        grid-template-columns: 60px 1fr;
    }

    .dashboard-content {
        padding: var(--space-3) var(--space-4) var(--space-4);
    }

    /* ── KPI Row ──────────────────────────────────────────────────────────── */
    .kpi-row {
        padding: var(--space-4) var(--space-5);
    }

    .kpi-card {
        min-width: 175px;
        padding: var(--space-3) var(--space-4);
    }

    .kpi-card__value {
        font-size: var(--text-2xl);
    }

    /* ── Cards & Charts ───────────────────────────────────────────────────── */
    .card {
        padding: var(--space-4);
    }

    .card__body--chart {
        height: 260px;
        min-height: 220px;
    }

    .card--hero .card__body--chart {
        height: 320px;
    }

    /* ── Impact Calculator ─────────────────────────────────────────────── */
    .impact-calc__layout {
        grid-template-columns: 300px 1fr;
    }

    .impact-calc__metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    /* ── Scenario Simulator ────────────────────────────────────────────── */
    .sim__layout {
        grid-template-columns: 300px 1fr;
    }

    /* ── Calendar ──────────────────────────────────────────────────────── */
    .calendar__layout {
        grid-template-columns: 1fr 240px;
    }

    /* ── MET Briefings ─────────────────────────────────────────────────── */
    .met__grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }

    /* ── Recession Tracker ─────────────────────────────────────────────── */
    .recession__indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Narrative Engine ──────────────────────────────────────────────── */
    .narrative__sectors {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Relocation Tool ───────────────────────────────────────────────── */
    .reloc__selectors {
        grid-template-columns: 1fr auto 1fr;
        gap: var(--space-3);
    }

    /* ── Gas Prices ────────────────────────────────────────────────────── */
    .gas-price__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Map Detail Panel ──────────────────────────────────────────────── */
    .map-detail-panel {
        width: 320px;
    }

    /* ── Top Bar ───────────────────────────────────────────────────────── */
    .top-bar {
        padding: var(--space-3) var(--space-4);
    }

    .top-bar__left {
        max-width: 360px;
    }

    /* ── Section Headers ──────────────────────────────────────────────── */
    .section-header h1 {
        font-size: var(--text-xl);
    }

    .section-header {
        margin-bottom: var(--space-4);
    }
}


/* ==========================================================================
   MOBILE  (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* ── Top Bar ───────────────────────────────────────────────────────── */
    .top-bar {
        padding: var(--space-2) var(--space-3);
        min-height: 48px;
        gap: var(--space-2);
    }

    .top-bar__left {
        max-width: none;
        flex: 1;
    }

    .top-bar__right {
        gap: var(--space-2);
    }

    .status-label {
        display: none;
    }

    .search-input {
        min-width: 0;
    }

    .search-input input::placeholder {
        font-size: var(--text-xs);
    }

    .sidebar-toggle {
        display: flex;
    }

    .auth-btn span {
        display: none;
    }

    /* ── KPI Row — Horizontal scroll with compact cards ───────────────── */
    .kpi-row {
        padding: var(--space-3);
        gap: var(--space-3);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .kpi-card {
        min-width: 150px;
        padding: var(--space-3);
        scroll-snap-align: start;
    }

    .kpi-card__value {
        font-size: var(--text-xl);
    }

    .kpi-card__icon {
        width: 28px;
        height: 28px;
    }

    .kpi-card__icon svg {
        width: 14px;
        height: 14px;
    }

    .kpi-card__label {
        font-size: 10px;
    }

    /* ── Section Headers ──────────────────────────────────────────────── */
    .section-header h1 {
        font-size: var(--text-lg);
    }

    .section-subtitle {
        font-size: var(--text-xs);
    }

    .section-header {
        margin-bottom: var(--space-3);
    }

    /* ── Cards — Full width, single column ────────────────────────────── */
    .card {
        padding: var(--space-4) var(--space-4);
        border-radius: 0;
        border-left: none;
        border-right: none;
        background: var(--glass-bg);
    }

    .card:hover {
        transform: none;
    }

    .card__header {
        margin-bottom: var(--space-3);
        flex-direction: column;
        gap: var(--space-2);
    }

    .card__title {
        font-size: var(--text-sm);
    }

    .card__subtitle {
        font-size: 11px;
    }

    /* ── Charts — Full width with proportional height ─────────────────── */
    .card__body--chart {
        height: 220px;
        min-height: 180px;
    }

    .card--hero .card__body--chart {
        height: 260px;
    }

    .card__body--centered {
        min-height: 200px;
    }

    /* ── Time Range Selector ──────────────────────────────────────────── */
    .time-range-selector {
        gap: 0;
    }

    .time-btn {
        padding: var(--space-1) var(--space-2);
        font-size: 10px;
    }

    /* ── Tables — Horizontal scroll wrapper ───────────────────────────── */
    .data-table {
        font-size: var(--text-xs);
    }

    .data-table thead th {
        padding: var(--space-2) var(--space-3);
        font-size: 10px;
    }

    .data-table tbody td {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }

    .card__body {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* ── Gas Price Analysis ───────────────────────────────────────────── */
    .gas-price__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }

    .gas-price__value {
        font-size: var(--text-xl);
    }

    .gas-price__card {
        padding: var(--space-3);
    }

    .gas-price__region {
        grid-template-columns: 90px 1fr auto;
        gap: var(--space-2);
    }

    .gas-price__region-name {
        font-size: var(--text-xs);
    }

    .gas-price__region-price {
        font-size: var(--text-xs);
        min-width: auto;
    }

    .gas-price__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .gas-price__yoy {
        align-self: center;
    }

    .gas-price__search-input {
        font-size: var(--text-sm);
    }

    .gas-price__result-prices {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── MET Briefings — Single column ────────────────────────────────── */
    .met__grid {
        grid-template-columns: 1fr;
    }

    .met__filters {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }

    .met__filter-btn {
        flex-shrink: 0;
        padding: 0.4rem 0.7rem;
        font-size: 0.72rem;
    }

    .met__card-header {
        padding: 1rem 1rem 0.5rem;
    }

    .met__card-body {
        padding: 0 1rem;
    }

    .met__card-footer {
        padding: 0.5rem 1rem 1rem;
    }

    .met__card-title {
        font-size: 0.95rem;
    }

    .met__preview-text {
        font-size: 0.8rem;
    }

    .met__view-toggle {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .met__view-btn {
        width: 100%;
        text-align: center;
    }

    .met__state-selector {
        margin-left: 0;
        width: 100%;
    }

    .met__state-dropdown {
        width: 100%;
        flex: 1;
    }

    .met__source-link {
        padding: 0.5rem 0.7rem;
    }

    .met__source-title {
        font-size: 0.7rem;
    }

    /* ── Newsletter — Full width ──────────────────────────────────────── */
    .newsletter {
        max-width: 100%;
        padding: 1.25rem 1rem;
        margin: 1rem auto 0;
        border-radius: var(--radius-md);
    }

    .newsletter__title {
        font-size: 1rem;
    }

    .newsletter__desc {
        font-size: 0.78rem;
    }

    .newsletter__row {
        flex-direction: column;
    }

    .newsletter__input,
    .newsletter__select {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    /* ── Economic Calendar ────────────────────────────────────────────── */
    .calendar__layout {
        grid-template-columns: 1fr;
    }

    .calendar__top-bar {
        grid-template-columns: 1fr;
    }

    .calendar__sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .calendar__sidebar > * {
        flex: 1;
        min-width: 200px;
    }

    .calendar__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .calendar__secondary-filters {
        flex-wrap: wrap;
    }

    .calendar__view-toggle {
        margin-left: 0;
        width: 100%;
    }

    .calendar__view-btn {
        flex: 1;
        text-align: center;
    }

    .calendar__events-grid {
        grid-template-columns: 1fr;
    }

    .calendar__event {
        grid-template-columns: 4px 1fr;
    }

    .calendar__event-data {
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .calendar__heat-row {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-1);
    }

    .calendar__summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar__filter-pill {
        padding: 3px var(--space-2);
        font-size: 10px;
    }

    /* ── Scenario Simulator ────────────────────────────────────────────── */
    .sim__layout {
        grid-template-columns: 1fr;
    }

    .sim__sliders {
        position: static;
        padding: var(--space-4);
    }

    .sim__presets {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: var(--space-2);
    }

    .sim__preset-btn {
        flex-shrink: 0;
    }

    .sim__cascade-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .sim__card {
        padding: var(--space-3);
    }

    .sim__card-value {
        font-size: var(--text-xl);
    }

    .sim__analog {
        padding: var(--space-4);
    }

    /* ── Impact Calculator ─────────────────────────────────────────────── */
    .impact-calc__layout {
        grid-template-columns: 1fr;
    }

    .impact-calc__form {
        position: static;
        padding: var(--space-4);
    }

    .impact-calc__results {
        grid-template-columns: 1fr;
    }

    .impact-calc__results-inner {
        grid-template-columns: 1fr;
    }

    .impact-calc__card--wide,
    .impact-calc__card--teaser,
    .impact-calc__card--full {
        grid-column: 1;
    }

    .impact-calc__metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2);
    }

    .impact-calc__rate-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-2);
    }

    .impact-calc__rate-item {
        padding: var(--space-2);
    }

    .impact-calc__rate-value {
        font-size: var(--text-base);
    }

    .impact-calc__score {
        font-size: var(--text-2xl);
    }

    .impact-calc__teaser-content {
        flex-direction: column;
        text-align: center;
    }

    .impact-calc__teaser-btn {
        width: 100%;
    }

    .impact-calc__job-metrics {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-1);
    }

    .impact-calc__placeholder {
        padding: var(--space-6);
        grid-column: 1;
    }

    /* ── Relocation Tool ───────────────────────────────────────────────── */
    .reloc__selectors {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .reloc__swap {
        flex-direction: row;
        justify-content: center;
    }

    .reloc__input-row {
        flex-direction: column;
        gap: var(--space-3);
    }

    .reloc__results {
        grid-template-columns: 1fr;
    }

    .reloc__hero-card {
        grid-column: 1;
    }

    .reloc__card--full {
        grid-column: 1;
    }

    .reloc__hero-value {
        font-size: var(--text-3xl);
    }

    .reloc__selector-row {
        grid-template-columns: 1fr;
    }

    .reloc__housing-columns {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .reloc__housing-divider {
        flex-direction: row;
    }

    .reloc__cost-row {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .reloc__cost-legend {
        flex-direction: column;
        gap: var(--space-2);
    }

    .reloc__comparison-table {
        font-size: var(--text-xs);
    }

    .reloc__comparison-table th,
    .reloc__comparison-table td {
        padding: var(--space-2);
    }

    .reloc__table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .reloc__equiv-salary {
        font-size: var(--text-3xl);
    }

    .reloc__placeholder {
        grid-column: 1;
    }

    /* ── Recession Tracker ─────────────────────────────────────────────── */
    .recession__indicators-grid {
        grid-template-columns: 1fr;
    }

    .recession__gauge-svg {
        max-width: 280px;
    }

    .recession__gauge-value {
        font-size: var(--text-3xl);
    }

    .recession__card {
        padding: var(--space-4);
    }

    .recession__card-value {
        font-size: var(--text-xl);
    }

    .recession__timeline {
        flex-direction: column;
        gap: var(--space-3);
        padding: var(--space-4) var(--space-2);
    }

    .recession__timeline-line {
        display: none;
    }

    .recession__timeline-item {
        display: flex;
        align-items: center;
        gap: var(--space-3);
        text-align: left;
    }

    .recession__timeline-dot {
        margin: 0;
    }

    .recession__timeline-section {
        padding: var(--space-4);
    }

    .recession__methodology-toggle {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-xs);
    }

    .recession__methodology-content {
        padding: 0 var(--space-4) var(--space-4);
    }

    /* ── Narrative Engine ──────────────────────────────────────────────── */
    .narrative__header {
        padding: var(--space-5) var(--space-4);
    }

    .narrative__title {
        font-size: var(--text-xl);
    }

    .narrative__subtitle {
        font-size: var(--text-sm);
    }

    .narrative__takeaways {
        grid-template-columns: 1fr;
    }

    .narrative__takeaway-list {
        grid-template-columns: 1fr;
    }

    .narrative__sectors {
        grid-template-columns: 1fr;
    }

    .narrative__sector-grid {
        grid-template-columns: 1fr;
    }

    .narrative__sector-value {
        font-size: var(--text-xl);
    }

    .narrative__table-wrap,
    .narrative__snapshot {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .narrative__table,
    .narrative__snapshot-table {
        min-width: 480px;
    }

    .narrative__watch-item {
        font-size: var(--text-xs);
    }

    /* ── Gauge (Fear & Greed) ─────────────────────────────────────────── */
    .gauge {
        width: 200px;
        height: 120px;
    }

    .gauge__meter {
        width: 200px;
        height: 100px;
    }

    .gauge__meter::after {
        width: 150px;
        height: 75px;
    }

    .gauge__needle {
        height: 75px;
    }

    .gauge__number {
        font-size: var(--text-3xl);
    }

    /* ── Modals — Nearly full screen ──────────────────────────────────── */
    .pmod__overlay {
        padding: var(--space-2);
        align-items: flex-end;
    }

    .pmod__modal {
        max-width: 100%;
        width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: var(--space-5) var(--space-4);
        max-height: 92vh;
        overflow-y: auto;
    }

    .pmod__row {
        flex-direction: column;
    }

    .pmod__icon {
        width: 44px;
        height: 44px;
    }

    .pmod__title {
        font-size: var(--text-lg);
    }

    .pmod__body {
        min-height: auto;
    }

    /* ── Bottom Line Banner ───────────────────────────────────────────── */
    .bottom-line {
        flex-direction: column;
        text-align: center;
        padding: var(--space-3) var(--space-4);
        gap: var(--space-3);
    }

    .bottom-line__icon {
        width: 36px;
        height: 36px;
    }

    /* ── Alerts Panel ─────────────────────────────────────────────────── */
    .alert-form {
        flex-direction: column;
    }

    .alert-form select,
    .alert-form input {
        width: 100%;
    }

    /* ── Insight Cards ────────────────────────────────────────────────── */
    .insight-card {
        padding: var(--space-2) var(--space-3);
    }

    .insight-card__title {
        font-size: var(--text-xs);
    }

    .insight-card__description {
        font-size: 11px;
    }

    /* ── Map ──────────────────────────────────────────────────────────── */
    .map-layout {
        height: calc(100vh - 280px);
        min-height: 350px;
    }

    .map-controls {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-2);
    }

    .map-metric-selector {
        flex-wrap: wrap;
    }

    .map-legend {
        flex-wrap: wrap;
    }

    .map-legend__bar-wrap {
        width: 120px;
    }

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

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

    .map-detail__grid {
        grid-template-columns: 1fr;
    }

    .map-detail__hero-value {
        font-size: var(--text-3xl);
    }

    /* ── Auth ─────────────────────────────────────────────────────────── */
    .auth-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        min-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    /* ── Footer ───────────────────────────────────────────────────────── */
    .dashboard-footer {
        padding: var(--space-4) var(--space-3) var(--space-3);
        font-size: 10px;
    }

    /* ── Crypto / Oil Table ───────────────────────────────────────────── */
    .commodity-full-name {
        display: none;
    }
}


/* ==========================================================================
   SMALL MOBILE  (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {

    /* ── KPI — Even more compact ──────────────────────────────────────── */
    .kpi-card {
        min-width: 130px;
        padding: var(--space-2) var(--space-3);
    }

    .kpi-card__value {
        font-size: var(--text-lg);
    }

    .kpi-card__footer {
        flex-wrap: wrap;
    }

    /* ── Section Headers ──────────────────────────────────────────────── */
    .section-header h1 {
        font-size: var(--text-base);
    }

    /* ── Cards ────────────────────────────────────────────────────────── */
    .card {
        padding: var(--space-2) var(--space-3);
    }

    .card__body--chart {
        height: 180px;
        min-height: 160px;
    }

    .card--hero .card__body--chart {
        height: 220px;
    }

    /* ── Gas Prices ────────────────────────────────────────────────────── */
    .gas-price__grid {
        grid-template-columns: 1fr;
    }

    .gas-price__region {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .gas-price__region-price {
        text-align: left;
    }

    .gas-price__result-prices {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }

    /* ── Simulator ─────────────────────────────────────────────────────── */
    .sim__cascade-row {
        grid-template-columns: 1fr;
    }

    .sim__card-value {
        font-size: var(--text-lg);
    }

    /* ── Impact Calculator ─────────────────────────────────────────────── */
    .impact-calc__metrics {
        grid-template-columns: 1fr;
    }

    .impact-calc__rate-grid {
        grid-template-columns: 1fr;
    }

    .impact-calc__job-metrics {
        grid-template-columns: 1fr;
    }

    .impact-calc__score {
        font-size: var(--text-xl);
    }

    .impact-calc__card {
        padding: var(--space-3);
    }

    /* ── Relocation ────────────────────────────────────────────────────── */
    .reloc__hero-value {
        font-size: var(--text-2xl);
    }

    .reloc__location {
        padding: var(--space-3);
    }

    .reloc__card {
        padding: var(--space-3);
    }

    .reloc__housing-price {
        font-size: var(--text-lg);
    }

    .reloc__equiv-salary {
        font-size: var(--text-2xl);
    }

    /* ── Recession ─────────────────────────────────────────────────────── */
    .recession__gauge-svg {
        max-width: 220px;
    }

    .recession__gauge-value {
        font-size: var(--text-2xl);
    }

    .recession__card {
        padding: var(--space-3);
    }

    /* ── Narrative ─────────────────────────────────────────────────────── */
    .narrative__title {
        font-size: var(--text-lg);
    }

    .narrative__header {
        padding: var(--space-4) var(--space-3);
    }

    .narrative__sector {
        padding: var(--space-3);
    }

    .narrative__sector-value {
        font-size: var(--text-lg);
    }

    /* ── Calendar ──────────────────────────────────────────────────────── */
    .calendar__event-card {
        padding: var(--space-3);
    }

    .calendar__summary {
        grid-template-columns: 1fr 1fr;
        padding: var(--space-3);
    }

    .calendar__summary-count {
        font-size: var(--text-xl);
    }

    .calendar__category-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* ── MET ───────────────────────────────────────────────────────────── */
    .met__card-title {
        font-size: 0.88rem;
    }

    .met__full-briefing p {
        font-size: 0.8rem;
    }

    /* ── Newsletter ────────────────────────────────────────────────────── */
    .newsletter {
        padding: 1rem 0.85rem;
    }

    .newsletter__icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .newsletter__title {
        font-size: 0.9rem;
    }

    /* ── Modals ────────────────────────────────────────────────────────── */
    .pmod__modal {
        max-height: 95vh;
        padding: var(--space-4) var(--space-3);
    }

    .pmod__option {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }

    /* ── Gauge ────────────────────────────────────────────────────────── */
    .gauge {
        width: 170px;
        height: 100px;
    }

    .gauge__meter {
        width: 170px;
        height: 85px;
    }

    .gauge__meter::after {
        width: 130px;
        height: 65px;
    }

    .gauge__needle {
        height: 65px;
    }

    .gauge__number {
        font-size: var(--text-2xl);
    }

    /* ── Map ──────────────────────────────────────────────────────────── */
    .map-layout {
        height: calc(100vh - 320px);
        min-height: 280px;
    }

    .map-detail-panel {
        max-height: 65%;
        padding: var(--space-4);
    }

    .map-detail__title {
        font-size: var(--text-lg);
    }

    .map-detail__hero-value {
        font-size: var(--text-2xl);
    }

    /* ── Bottom Line ──────────────────────────────────────────────────── */
    .bottom-line {
        padding: var(--space-2) var(--space-3);
    }

    .bottom-line__headline {
        font-size: var(--text-sm);
    }

    .bottom-line__detail {
        font-size: var(--text-xs);
    }

    /* ── Affects You badges ───────────────────────────────────────────── */
    .affects-you {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* ── Digest Panel ─────────────────────────────────────────────────── */
    .digest-preview {
        padding: var(--space-3) var(--space-4);
    }
}


/* ==========================================================================
   TOUCH / INTERACTION HELPERS
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover transforms on touch devices */
    .card:hover,
    .kpi-card:hover,
    .calendar__event-card:hover,
    .met__card:hover,
    .gas-price__card:hover,
    .sim__card:hover,
    .insight-card:hover {
        transform: none;
        box-shadow: none;
    }

    /* Larger touch targets */
    .nav-link {
        min-height: 44px;
    }

    .time-btn {
        min-height: 36px;
        min-width: 36px;
    }

    .btn {
        min-height: 44px;
    }

    .calendar__filter-pill,
    .sim__preset-btn,
    .met__filter-btn {
        min-height: 36px;
    }

    /* Smoother scrolling */
    .kpi-row,
    .met__filters,
    .sim__presets,
    .calendar__category-filters {
        scroll-behavior: smooth;
    }
}


/* ==========================================================================
   PRINT STYLES (minimal)
   ========================================================================== */
@media print {
    .sidebar,
    .top-bar,
    .sidebar-toggle,
    .theme-toggle,
    .time-range-selector,
    .met__filters,
    .sim__presets,
    .calendar__controls,
    .newsletter,
    .pmod__overlay {
        display: none !important;
    }

    .app {
        display: block;
    }

    .main-content {
        overflow: visible;
    }

    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
