/* ============================================================
   lokalne-uslugi.css — Lokalne Usługi (Listing Page)
   Extracted from lokalne-uslugi.php
   ============================================================ */

/* Page */
.lu-page {
    background: var(--bg);
    min-height: 100vh;
}

/* Hero */
.lu-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 50px 0 40px;
    color: white;
    margin-bottom: 30px;
}

.lu-hero h1 {
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 10px;
}

.lu-hero p {
    font-size: 15px;
    opacity: 0.85;
    margin: 0 0 20px;
    max-width: 700px;
}

.lu-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.lu-hero-stat {
    text-align: center;
}

.lu-hero-stat .num {
    font-size: 32px;
    font-weight: 900;
    display: block;
}

.lu-hero-stat .lbl {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Breadcrumbs */
.lu-breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.lu-breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.lu-breadcrumbs .sep {
    margin: 0 8px;
}

/* Grid Layout */
.lu-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 25px;
    padding-bottom: 40px;
}

/* Sidebar */
.lu-sidebar {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.lu-sidebar h3 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lu-sidebar-cat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    margin-bottom: 3px;
}

.lu-sidebar-cat:hover {
    background: var(--bg);
    color: var(--primary);
}

.lu-sidebar-cat i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    opacity: 0.7;
}

/* Category Section */
.lu-cat-section {
    margin-bottom: 35px;
}

/* Tags Grid */
.lu-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lu-tag-btn {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: white;
    transition: all 0.2s;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.lu-tag-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Empty State */
.lu-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.lu-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.3;
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .lu-hero {
        padding: 30px 0 25px;
        margin-bottom: 20px;
    }

    .lu-hero h1 {
        font-size: 22px;
    }

    .lu-hero p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .lu-hero-stats {
        gap: 15px;
    }

    .lu-hero-stat .num {
        font-size: 24px;
    }

    .lu-hero-stat .lbl {
        font-size: 10px;
    }

    .lu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lu-sidebar {
        display: none;
    }

    .lu-breadcrumbs {
        font-size: 12px;
        padding: 10px 0;
    }

    .lu-cat-section {
        margin-bottom: 25px;
    }

    .lu-cat-section h3 {
        font-size: 17px !important;
        margin-bottom: 12px !important;
    }

    .lu-tags-grid {
        gap: 8px;
    }

    .lu-tag-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .lu-empty {
        padding: 40px 15px;
    }

    .lu-empty i {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .lu-hero h1 {
        font-size: 20px;
    }

    .lu-hero-stat .num {
        font-size: 20px;
    }

    .lu-tag-btn {
        padding: 7px 12px;
        font-size: 12px;
    }
}
