/* Shop Page Specific Styles */

/* CSS Variables */
:root {
    --accent-color: #ff6b4a;
    --primary-color: #e85537;
    --text-dark: #0d141c;
    --text-medium: #374151;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
}

/* Global touch highlight removal & Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    
    /* Enable GPU acceleration for smooth scrolling
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    
    /* Optimize rendering */
    /* contain: layout style paint;  */
}

/* Allow text selection for inputs and content areas */
input, textarea, [contenteditable="true"], .selectable {
    -webkit-user-select: text !important;
    -khtml-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Shop Layout */
.shop-layout {
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
}

.breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #666;
    font-weight: 500;
}

/* Mobile Filter Header */
.mobile-filter-header {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-filter-btn,
.mobile-sort-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
    min-height: 44px;
}

.mobile-filter-btn:hover,
.mobile-sort-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Shop Content Layout */
.shop-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.filters-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
}

.clear-filters {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    touch-action: manipulation;
    min-height: 44px;
}

.clear-filters:hover {
    background-color: rgba(255, 107, 74, 0.1);
}

/* Filter Groups */
.filter-group {
    margin-bottom: 24px;
}

.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 12px 0;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #f0f0f0;
}

.filter-title i {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #999;
}

.filter-group.collapsed .filter-title i {
    transform: rotate(-90deg);
}

.filter-content {
    padding-top: 8px;
}

.filter-group.collapsed .filter-content {
    display: none;
}

/* Filter Options */
.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    touch-action: manipulation;
}

.filter-option:hover {
    background-color: #f8f9fa;
}

.filter-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 12px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.filter-option input[type="checkbox"]:checked + .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-label {
    flex: 1;
    font-size: 15px;
    color: #1f2937;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-count {
    font-size: 12px;
    color: #6b7280;
    margin-left: auto;
    font-weight: 600;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .fas {
    color: #ffd700;
}

.rating-stars .far {
    color: #d1d5db;
}

/* Products Section */
.products-section {
    min-height: 800px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.products-info h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
}

.products-count {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.sort-dropdown select {
    padding: 10px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    min-width: 200px;
    transition: border-color 0.3s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Active Filters */
.active-filters {
    margin-bottom: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.active-filters-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-right: 12px;
}

.active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.filter-tag .remove-filter {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.filter-tag .remove-filter:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    cursor: pointer;
    touch-action: manipulation;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image-container {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e74c3c;
    color: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    z-index: 10;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #ff4757;
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
}

.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.product-stars {
    display: flex;
    gap: 2px;
}

.product-stars .fas {
    color: #ffd700;
    font-size: 13px;
}

.product-stars .far {
    color: #d1d5db;
    font-size: 13px;
}

.rating-text {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.product-price {
    margin-bottom: 16px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
}

.original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 8px;
}

.discount-percent {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    margin-left: 8px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.product-features li {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 4px;
    position: relative;
    padding-left: 16px;
}

.product-features li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.add-to-cart-btn {
    flex: 1;
    background: #1a202c;
    color: white;
    border: none;
    padding: 12px 8px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    touch-action: manipulation;
    min-height: 44px;
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.quick-view-btn {
    padding: 12px 16px;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quick-view-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Mobile Overlays */
.mobile-filter-overlay,
.mobile-sort-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: flex-end;
}

.mobile-filter-overlay.active,
.mobile-sort-overlay.active {
    display: flex;
}

.mobile-filter-content,
.mobile-sort-content {
    width: 100%;
    max-height: 80vh;
    background: white;
    border-radius: 24px 24px 0 0;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-filter-header-popup,
.mobile-sort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-filter-header-popup h3,
.mobile-sort-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
}

.close-mobile-filter,
.close-mobile-sort {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-mobile-filter:hover,
.close-mobile-sort:hover {
    background: #e9ecef;
}

.mobile-filter-body {
    padding: 0 24px;
    max-height: calc(80vh - 160px);
    overflow-y: auto;
}

.mobile-filter-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.clear-mobile-filters,
.apply-mobile-filters {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-mobile-filters {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.apply-mobile-filters {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.clear-mobile-filters:hover {
    border-color: #d1d5db;
}

.apply-mobile-filters:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mobile Sort Options */
.mobile-sort-options {
    padding: 20px 24px;
}

.sort-option {
    display: flex;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.sort-option:last-child {
    border-bottom: none;
}

.sort-option input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--accent-color);
}

.sort-option span {
    font-size: 16px;
    color: #374151;
}

/* Mobile Sort Footer */
.mobile-sort-footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.clear-mobile-sort,
.apply-mobile-sort {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-mobile-sort {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.apply-mobile-sort {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.clear-mobile-sort:hover {
    border-color: #d1d5db;
}

.apply-mobile-sort:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2d3748;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 500;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1100;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 1200px) {
    .shop-content {
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .filters-sidebar {
        display: none;
    }

    .shop-content {
        grid-template-columns: 1fr;
    }

    .mobile-filter-header {
        display: grid;
    }

    .products-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .sort-dropdown {
        align-self: flex-end;
    }

    .sort-dropdown select {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .shop-layout {
        padding: 0 12px;
    }

    .breadcrumb {
        padding: 16px 0;
        margin-bottom: 16px;
    }


    .products-header h1 {
        font-size: 22px;
        font-weight: 700;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 12px;
    }

    /* Smaller wishlist button and discount badge for small screens */
    .wishlist-btn {
        width: 24px;
        height: 24px;
        top: 6px;
        right: 6px;
        min-height: 24px;
        min-width: 24px;
    }

    .wishlist-btn svg {
        width: 12px;
        height: 12px;
    }

    .discount-badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 10px;
    }

    /* Smaller text for all product card elements */
    .product-brand {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .product-name,
    .product-info h3 {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .product-rating {
        margin-bottom: 8px;
    }

    .product-stars .fas,
    .product-stars .far {
        font-size: 11px;
    }

    .rating-text {
        font-size: 10px;
    }

    .current-price {
        font-size: 15px;
        font-weight: 700;
    }

    .original-price {
        font-size: 11px;
    }

    .discount-percent {
        font-size: 10px;
    }

    .product-features li {
        font-size: 10px;
        color: #555;
        margin-bottom: 2px;
    }

    /* Hide action buttons on mobile */
    .product-actions {
        display: none;
    }

    .notification {
        top: 20px !important;
        right: 8px;
        left: auto;
        max-width: 160px !important;
        font-size: 10px !important;
        border-radius: 6px;
        padding: 4px 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transform: translateX(110%) !important;
        border-left: 3px solid #10b981;
        min-height: auto;
        background: #2d3748 !important;
        color: white !important;
        font-weight: 400 !important;
    }

    .notification.show {
        transform: translateX(0) !important;
    }
    
    /* Ultra compact notification content on mobile */
    .notification div {
        gap: 3px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    .notification i {
        font-size: 9px !important;
        flex-shrink: 0;
        margin: 0;
        color: #10b981 !important;
    }
    
    .notification.error i {
        color: #dc2626 !important;
    }
    
    .notification.warning i {
        color: #f59e0b !important;
    }
    
    .notification span,
    .notification #notification-text {
        font-size: 9px !important;
        line-height: 1.1 !important;
        font-weight: 400 !important;
        word-wrap: break-word;
        hyphens: auto;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .shop-layout {
        padding: 0 8px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mobile-filter-header {
        margin-bottom: 16px;
    }

    .mobile-filter-btn,
    .mobile-sort-btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Mobile navigation icon size fix for small screens */
    .mobile-nav-icon svg {
        width: 20px;
        height: 20px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-info {
        padding: 8px;
    }

    /* Even smaller wishlist button for very small screens */
    .wishlist-btn {
        width: 30px;
        height: 30px;
        top: 4px;
        right: 4px;
        min-height: 20px;
        min-width: 20px;
    }

    .wishlist-btn svg {
        width: 10px;
        height: 10px;
    }

    .discount-badge {
        top: 6px;
        left: 6px;
        padding: 3px 6px;
        font-size: 5px;
        border-radius: 8px;
    }

    /* Extra small text for very small screens */
    .product-brand {
        font-size: 8px;
        margin-bottom: 1px;
    }

    .product-name,
    .product-info h3 {
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .product-stars .fas,
    .product-stars .far {
        font-size: 10px;
    }

    .rating-text {
        font-size: 9px;
    }

    .current-price {
        font-size: 14px;
        font-weight: 800;
    }

    .original-price {
        font-size: 10px;
    }

    .discount-percent {
        font-size: 9px;
    }

    .product-features li {
        font-size: 9px;
        color: #0d141c;
        font-weight: 700;
        margin-bottom: 1px;
    }

    /* Keep action buttons hidden */
    .product-actions {
        display: none;
    }
}


/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Active Filter Tags */
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin: 2px;
}

.active-filter-tag button {
    background: none;
    border: none;
    color: white;
    margin-left: 6px;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-filter-tag button:hover {
    opacity: 0.7;
}


/* Mobile Clear Filters Button */
.clear-filters-mobile {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin: 20px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.clear-filters-mobile:hover {
    background: #c0392b;
}

/* Print styles */
@media print {
    .filters-sidebar,
    .mobile-filter-header,
    .mobile-bottom-nav,
    .notification {
        display: none !important;
    }

    .shop-content {
        grid-template-columns: 1fr;
    }

    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
