/* Shop Specific Styles */
.shop-hero {
    background: #f4f4f4;
    padding: 40px 0;
    margin-bottom: 40px;
    text-align: center;
}

.shop-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-subtitle {
    color: #666;
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 20px;
}

.results-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-tag {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

.sort-controls form {
    display: flex;
    gap: 10px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.no-products {
    text-align: center;
    padding: 60px 0;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-products-icon {
    color: #ccc;
    margin-bottom: 20px;
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-filter {
    text-decoration: none;
    color: #666;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    display: block;
}

.category-filter:hover,
.category-filter.active {
    background: #f0f0f0;
    color: var(--accent);
    font-weight: 500;
}

.search-input-group {
    display: flex;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.search-btn {
    padding: 0 15px;
    background: var(--accent);
    border: none;
    color: white;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}
