/* ============================================
   SHOP MOBILE CSS - Mobile App-like Design
   ============================================ */

/* Mobile Only Styles */
@media (max-width: 768px) {
    /* Floating Filter Button */
    .mobile-filter-btn {
        position: fixed;
        bottom: 90px;
        right: 20px;
        background: linear-gradient(135deg, #800020 0%, #a00030 100%);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 12px 20px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    /* Mobile Filter Modal */
    .mobile-filter-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
        display: flex;
        justify-content: flex-end;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-filter-modal.active {
        visibility: visible;
        opacity: 1;
    }

    .mobile-filter-content {
        width: 80%;
        max-width: 350px;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
    }

    .mobile-filter-modal.active .mobile-filter-content {
        transform: translateX(0);
    }

    .mobile-filter-header {
        padding: 1.5rem;
        background: #800020;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-filter-header h3 {
        margin: 0;
        font-size: 1.25rem;
    }

    .mobile-filter-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-filter-body {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
    }

    /* Product Cards Mobile */
    .product-card {
        margin-bottom: 1rem;
    }

    .product-card-image {
        height: 200px;
        object-fit: cover;
    }

    /* Shop Sidebar Hidden on Mobile */
    .shop-sidebar {
        display: none;
    }

    .d-none.d-md-block {
        display: none !important;
    }
}
