/* Beast Prints - Shop Page Additional Styles */

/* Shop Header */
.shop-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
    position: relative;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

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

.shop-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.shop-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

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

/* Products Section */
.products-section {
    background: var(--bg-light);
    padding: 60px 0 80px;
}

.products-section .product-grid {
    margin-bottom: 0;
}

/* Enhanced Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.product-features li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-options {
    margin: 15px 0;
}

.size-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.size-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Bulk Orders Section */
.bulk-orders {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #444 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.bulk-content {
    max-width: 600px;
    margin: 0 auto;
}

.bulk-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.bulk-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Animation for filtering */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-header h1 {
        font-size: 36px;
    }
    
    .shop-header p {
        font-size: 16px;
    }
    
    .filter-section {
        top: 60px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}