/* Shop Page Styles */
.shop-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.shop-search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.shop-search-box input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.shop-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.filter-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #d9232d;
    color: #fff;
    border-color: #d9232d;
}

.sort-box select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.no-products {
    text-align: center;
    padding: 50px 0;
    font-size: 18px;
    color: #666;
}