/* Products Page Styles */

.shop-header {
    background: linear-gradient(135deg, rgba(12, 110, 49, 0.85) 0%, rgba(12, 110, 49, 0.75) 100%),
                url('../images/hero-woman.png') center center / cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.shop-header-content {
    position: relative;
    z-index: 1;
}

.shop-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.shop-header p {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.shop-content {
    padding: 60px 20px;
}

.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    width: 250px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.search-box input:focus {
    border-color: var(--primary-color);
}

.search-box button {
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.search-box button:hover {
    background: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .shop-header {
        padding: 80px 20px;
    }
    
    .shop-header h1 {
        font-size: 36px;
    }
    
    .shop-header p {
        font-size: 16px;
    }
}
