/* Mobile filter styles for the shop page */
/*@media (max-width: 768px) {*/
    /* Mobile filter button and container */
/*    .mobile-filter-toggle {*/
/*        display: block !important;*/
/*        margin-bottom: 20px;*/
/*        text-align: center;*/
/*    }*/
    
/*    .filter-btn {*/
/*        width: 100%;*/
/*        display: flex;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        background-color: #fff;*/
/*        color: #333;*/
/*        border: 1px solid #ddd;*/
/*        box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
/*        padding: 12px 20px;*/
/*    }*/
    
/*    .filters-container {*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: -100%;*/
/*        width: 85%;*/
/*        height: 100vh;*/
/*        background: white;*/
/*        z-index: 1000;*/
/*        transition: left 0.3s ease;*/
/*        box-shadow: 2px 0 10px rgba(0,0,0,0.2);*/
/*        overflow-y: auto;*/
/*        padding-bottom: 20px;*/
/*    }*/
    
/*    .filters-container.active {*/
/*        left: 0;*/
/*    }*/
    
/*    .filters-header {*/
/*        display: flex !important;*/
/*        justify-content: space-between;*/
/*        align-items: center;*/
/*        padding: 15px 20px;*/
/*        background: var(--primary);*/
/*        color: var(--secondary);*/
/*    }*/
    
/*    .filters-header h3 {*/
/*        margin: 0;*/
/*        font-size: 18px;*/
/*        font-weight: 600;*/
/*    }*/
    
/*    .close-filters {*/
/*        background: none;*/
/*        border: none;*/
/*        color: var(--secondary);*/
/*        font-size: 20px;*/
/*        cursor: pointer;*/
/*    }*/
    
/*    .reset-filter {*/
        flex: 0 0 auto; /* Don't grow, don't shrink, just use the space needed */
/*        min-width: 100px;*/
/*    }*/
    
/*    .btn-reset {*/
/*        width: 100%;*/
        background-color: #d4af37; /* Gold color to match your branding */
/*        color: #333;*/
/*        border: none;*/
/*        border-radius: 4px;*/
/*        padding: 8px 15px;*/
/*        cursor: pointer;*/
/*        text-transform: uppercase;*/
/*        font-weight: 600;*/
        height: 40px; /* Match the height of the selects for alignment */
/*        white-space: nowrap;*/
/*    }*/
    
/*    .btn-reset:hover {*/
/*        background-color: #c9a22b;*/
/*    }*/
/*}*/




 /*Desktop filter layout */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.filter-option {
    flex: 1;
    min-width: 180px;
    margin-bottom: 10px;
}

.reset-filter {
    flex: 0 0 auto; /* Don't grow, don't shrink, just use the space needed*/
    min-width: 100px;
    margin-bottom: 10px;
}

.filter-option label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.filter-option select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 40px; /* Fixed height for better alignment  */
}

.btn-reset {
    width: 100%;
    background-color: #d4af37; /* Gold color to match your branding */
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    height: 40px; /* Match the height of the selects for alignment */
    white-space: nowrap;
}

.btn-reset:hover {
    background-color: #c9a22b;
}

 Mobile filter styles for the shop page 
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
    }
    
     Mobile filter button and container 
    .mobile-filter-toggle {
        display: block !important;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .filter-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        color: #333;
        border: 1px solid #ddd;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 12px 20px;
    }
    
    .filters-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        overflow-y: auto;
        padding-bottom: 20px;
    }
    
    .filters-container.active {
        left: 0;
    }
    
    .filters-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: var(--primary);
        color: var(--secondary);
    }
    
    .filters-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }
    
    .close-filters {
        background: none;
        border: none;
        color: var(--secondary);
        font-size: 20px;
        cursor: pointer;
    }
}
