/* Shop Hero Section */
#shop-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/IMAGES/PAGES/SHOP/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.shop-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.shop-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.shop-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Shop Filter Section */
.shop-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 1rem;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown select {
    padding: 10px 40px 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    appearance: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.filter-dropdown::after {
    content: '▼';
    font-size: 0.7rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    pointer-events: none;
}

.search-filter {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.search-filter input {
    padding: 10px 15px;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    width: 200px;
}

.search-filter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-filter button {
    padding: 10px 15px;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-filter button:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    
    .shop-hero-content h1 {
        font-size: 2.5rem;
    }

    .shop-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-options {
        width: 100%;
        justify-content: space-between;
    }
    
    .search-filter {
        width: 100%;
    }
    
    .search-filter input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    
    .shop-hero-content h1 {
        font-size: 2rem;
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .filter-dropdown select {
        width: 100%;
    }
}
