/* Mobile bottom nav */
@media (max-width: 768px) {
    .wp-block-navigation {
        display: none !important;
    }
    .mobile-bottom-nav {
        display: flex !important;
        z-index: 1000;
        background: white;
        padding: 0.5rem 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-top: 1px solid #cbd5e1;
        justify-content: space-around;
    }
    body {
        padding-bottom: 70px;
    }
    .wp-block-columns {
        flex-direction: column !important;
    }
}
.mobile-bottom-nav {
    display: none;
}
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.filter-chip.is-style-outline .wp-block-button__link {
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
}
.filter-chip.is-style-outline .wp-block-button__link:hover {
    background: #f97316;
    color: white;
}
.download-btn .wp-block-button__link {
    background: #3b82f6;
}