/* Shop Page Specific Styles */

.shop-hero {
    background-color: #6c63ff;
    padding: 6rem 0;
    margin-bottom: 4rem;
}

.shop-hero-content {
    text-align: center;
    color: #fff;
}

.shop-hero-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.shop-hero-content p {
    font-size: 1.8rem;
    opacity: 0.9;
}

.shop-filters {
    margin-bottom: 4rem;
}

.filters-container {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.search-filter {
    display: flex;
    align-items: center;
}

.search-filter input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem 0 0 0.5rem;
    font-size: 1.4rem;
}

.search-filter button {
    padding: 1.2rem 1.5rem;
    background-color: #6c63ff;
    color: #fff;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-filter button:hover {
    background-color: #5a52d5;
}

.category-filter select,
.price-filter select,
.sort-filter select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.6rem;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 0;
    font-size: 1.8rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .filters-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .filters-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .search-filter {
        flex-direction: column;
    }
    
    .search-filter input {
        width: 100%;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .search-filter button {
        width: 100%;
        border-radius: 0.5rem;
    }
}