/* Header styling for shop page - ensure black text */
.header .nav-center a {
    color: #000000 !important;
}

.header .logo h1 {
    color: #000000 !important;
}

.header .icon-link {
    color: #000000 !important;
}

.header #search-icon {
    color: #000000 !important;
}

.header #search-icon svg {
    stroke: #000000 !important;
}

/* Header override for shop page - ensure all text is black */
body:has(.shop-section) .header {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

body:has(.shop-section) .header .logo h1 {
    color: #000000 !important;
}

body:has(.shop-section) .header .nav-center a {
    color: #000000 !important;
}

body:has(.shop-section) .header .nav-center span {
    color: #000000 !important;
}

body:has(.shop-section) .header .icon-link {
    color: #000000 !important;
}

body:has(.shop-section) .header #search-icon {
    color: #000000 !important;
}

/* Shop Section */
.shop-section {
    margin-top: 200px;
    padding: 80px 0;
    min-height: 100vh;
    background: #f8f8f8;
}

.no-products {
    text-align: center;
    padding: 100px 20px;
    color: #666;
}

.no-products p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    letter-spacing: 1px;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.breadcrumb-link:hover {
    color: #000;
    text-decoration: underline;
}

.breadcrumb-link.breadcrumb-current {
    color: #000;
    font-weight: 500;
    cursor: default;
}

.breadcrumb-link.breadcrumb-current:hover {
    text-decoration: none;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 4px;
}

.shop-title {
    text-align: center;
    font-family: "Didot", "GFS Didot", serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 80px;
}

.products-collection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.product-item-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: block;
}

.product-item {
    position: relative;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.product-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Product Gallery */
.product-gallery {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: visible;
    background: #f0f0f0;
    border-radius: 4px 4px 0 0;
}

/* Dark overlay on hover */
.product-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.product-item:hover .product-gallery::after {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.gallery-container:active {
    cursor: grabbing;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    will-change: opacity;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Product Info Overlay - Bottom Left */
.product-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 7;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item:hover .product-info-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-info-overlay .product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-info-overlay .product-price {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-info-overlay .product-price .price-current {
    font-size: 18px;
    font-weight: 600;
}

.product-info-overlay .product-price .price-original {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 400;
}

.product-info-overlay .product-price .price-discounted {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b6b;
}

.product-info-overlay .product-price .price-discount-badge {
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-shadow: none;
}

.product-discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 8;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-wrapper:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(0);
}

.add-to-cart-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover svg {
    transform: scale(1.1);
}

.add-to-cart-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(200, 200, 200, 0.95);
    color: #666;
    pointer-events: none;
}

.add-to-cart-btn.disabled:hover {
    background: rgba(200, 200, 200, 0.95);
    color: #666;
    transform: translateY(0);
}

/* Out of Stock Badge */
.out-of-stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 8px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
    pointer-events: none;
}

.product-item.out-of-stock {
    opacity: 0.85;
}

.product-item.out-of-stock .product-gallery {
    filter: grayscale(0.3);
}


/* Product Info - הסרת רקע לבן */
.product-info {
    background: transparent !important;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Product Name */
.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

/* Product Price Simple - מתחת לשם המוצר */
.product-price-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 4px 0;
}

.product-price-simple .price-current {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-family: Arial, sans-serif;
    letter-spacing: 0.3px;
}

.product-price-simple .price-original {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    font-family: Arial, sans-serif;
    letter-spacing: 0.2px;
}

.product-price-simple .price-discounted {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: Arial, sans-serif;
    letter-spacing: 0.3px;
}

.product-price-simple .price-discount-badge {
    display: inline-flex;
    align-items: center;
    background: #ff6b6b;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
    font-family: Arial, sans-serif;
}

/* Product Price Badge - עיצוב דומה לכפתור SHOP NOW אבל לא clickable */
.product-price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 9;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
    cursor: default;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.product-price-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.product-item:hover .product-price-badge {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 6px 30px rgba(0, 0, 0, 0.25),
        0 0 0 3px rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.product-item:hover .product-price-badge::before {
    left: 100%;
}

.product-price-badge .price-current {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

.product-price-badge .price-original {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
    font-family: Arial, sans-serif;
    letter-spacing: 0.2px;
}

.product-price-badge .price-discounted {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

.product-price-badge .price-discount-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 107, 0.3);
    color: #ffcccc;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1;
    margin-left: 3px;
    box-shadow: 0 1px 3px rgba(255, 107, 107, 0.3);
}

/* Gallery Dots - מתחת למוצר במרכז - עיצוב יוקרתי */
.gallery-dots {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 15px 0 0 0;
    background: transparent !important;
    border: none;
    margin: 0;
    box-shadow: none;
    width: 100%;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.dot:focus {
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dot:focus-visible {
    outline: none;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.dot:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dot:hover::before {
    width: 16px;
    height: 16px;
    opacity: 1;
}

.dot.active {
    background: #000000;
    width: 10px;
    height: 10px;
    border-color: #000000;
    box-shadow: none;
    transform: scale(1.2);
}

.dot.active::before {
    display: none;
}

.dot:active {
    transform: scale(1.1);
}


/* Responsive Design */
@media (max-width: 1400px) {
    .products-collection {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .products-collection {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .shop-title {
        font-size: 36px;
        letter-spacing: 6px;
    }
    
    .product-info-overlay .product-title {
        font-size: 18px;
    }
    
    .product-info-overlay .product-price {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .shop-section {
        margin-top: 140px;
        padding: 50px 0;
    }
    
    .products-collection {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 15px;
    }
    
    .shop-title {
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .product-item {
        margin-bottom: 0;
    }
    
    .product-gallery {
        height: 400px;
    }
    
    .product-info {
        padding: 18px;
    }
    
    .product-name {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .product-price-simple .price-current {
        font-size: 15px;
    }
    
    .product-price-simple .price-discounted {
        font-size: 22px;
        font-weight: 600;
    }
    
    .product-price-simple .price-discount-badge {
        font-size: 15px;
        padding: 5px 10px;
        margin-top: 4px;
        font-weight: 600;
    }
    
    .product-price-simple {
        margin: 10px 0 8px 0;
        gap: 10px;
    }
    
    .add-to-cart-btn {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 12px;
        padding: 12px 20px;
        font-size: 12px;
        opacity: 1;
        transform: none;
        width: 100%;
        justify-content: center;
    }
    
    .product-wrapper:hover .add-to-cart-btn {
        opacity: 1;
        transform: none;
    }
    
    .gallery-dots {
        padding: 0;
        background: transparent !important;
        margin-top: 12px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .breadcrumbs {
        padding: 0 15px;
        font-size: 12px;
    }
    
    .product-info-overlay .product-title {
        font-size: 18px;
    }
    
    .product-info-overlay .product-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .shop-section {
        margin-top: 120px;
        padding: 30px 0;
    }
    
    .shop-title {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .products-collection {
        gap: 25px;
        padding: 0 10px;
    }
    
    .product-item {
        margin-bottom: 0;
    }
    
    .product-gallery {
        height: 350px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 14px;
        letter-spacing: 0.8px;
        margin-bottom: 5px;
    }
    
    .product-price-simple {
        margin: 8px 0 6px 0;
        gap: 8px;
    }
    
    .product-price-simple .price-current {
        font-size: 14px;
    }
    
    .product-price-simple .price-discounted {
        font-size: 20px;
        font-weight: 600;
    }
    
    .product-price-simple .price-discount-badge {
        font-size: 13px;
        padding: 4px 8px;
        margin-top: 3px;
        font-weight: 600;
    }
    
    .product-price-simple .price-original {
        font-size: 12px;
    }
    
    .add-to-cart-btn {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 10px;
        padding: 10px 16px;
        font-size: 11px;
        opacity: 1;
        transform: none;
        width: 100%;
        justify-content: center;
    }
    
    .add-to-cart-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .gallery-dots {
        margin-top: 10px;
        padding: 0;
    }
    
    .dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
    
    .breadcrumbs {
        padding: 0 15px;
        font-size: 11px;
    }
    
    .product-info-overlay {
        bottom: 15px;
        left: 15px;
    }
    
    .product-info-overlay .product-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .product-info-overlay .product-price {
        font-size: 14px;
    }
}

/* Filter Sidebar */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filter-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* On desktop, ensure filter overlay and sidebar are above header */
@media (min-width: 769px) {
    .filter-overlay {
        z-index: 100003 !important; /* Higher than header (100001) and top-bar (100001) but lower than cart-sidebar (100002) */
    }
    
    .filter-overlay.active {
        z-index: 100003 !important;
    }
    
    .filter-sidebar {
        z-index: 100004 !important; /* Highest - above overlay, header, and top-bar */
    }
    
    .filter-sidebar.active {
        z-index: 100004 !important;
    }
    
    /* Ensure header and top-bar are below filter on desktop */
    body.filter-open .header {
        z-index: 100001 !important; /* Lower than filter */
    }
    
    body.filter-open .top-bar {
        z-index: 100001 !important; /* Lower than filter */
    }
}

.filter-sidebar.active {
    right: 0;
}

.filter-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}

.filter-title {
    font-family: "Didot", "GFS Didot", serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.filter-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: opacity 0.3s ease;
}

.filter-close:hover {
    opacity: 0.7;
}

.filter-sidebar-content {
    flex: 1;
    padding: 20px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

.filter-price-range {
    margin-bottom: 20px;
}

.filter-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-price-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #000;
}

.filter-price-input:focus {
    outline: none;
    border-color: #000;
}

.filter-price-separator {
    color: #666;
    font-size: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.filter-option:hover {
    background: #f5f5f5;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000;
}

.filter-option label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    flex: 1;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    position: sticky;
    bottom: 0;
    background: #ffffff;
}

.filter-clear-btn,
.filter-apply-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #000;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-clear-btn {
    background: #ffffff;
    color: #000;
}

.filter-clear-btn:hover {
    background: #f5f5f5;
}

.filter-apply-btn {
    background: #000;
    color: #ffffff;
}

.filter-apply-btn:hover {
    background: #333;
}

.filter-icon-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.filter-icon-link svg {
    transition: opacity 0.3s;
    pointer-events: none;
}

.filter-icon-link:hover svg,
.filter-icon-link:hover {
    opacity: 0.7;
}

/* Responsive Filter Sidebar */
@media (max-width: 768px) {
    .filter-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .filter-sidebar.active {
        right: 0;
    }
    
    .filter-sidebar-header {
        padding: 15px;
    }
    
    .filter-title {
        font-size: 20px;
    }
    
    .filter-sidebar-content {
        padding: 15px;
    }
    
    .filter-section {
        margin-bottom: 25px;
    }
    
    .filter-section-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .filter-sidebar-header {
        padding: 12px;
    }
    
    .filter-title {
        font-size: 18px;
    }
    
    .filter-sidebar-content {
        padding: 12px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .filter-clear-btn,
    .filter-apply-btn {
        width: 100%;
    }
}

