/* WooCommerce Page Headers - Unified Design */
.woocommerce-page-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    padding: 3.5rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.woocommerce-page-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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.woocommerce-page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.woocommerce-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.75rem 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

.woocommerce-page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .woocommerce-page-header {
        padding: 3rem 0;
        margin-bottom: 2.5rem;
    }
    
    .woocommerce-page-title {
        font-size: 2.5rem;
    }
    
    .woocommerce-page-subtitle {
        font-size: 1.0625rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-page-header {
        padding: 2.5rem 0;
        margin-bottom: 2rem;
    }
    
    .woocommerce-page-title {
        font-size: 2rem;
    }
    
    .woocommerce-page-subtitle {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .woocommerce-page-header {
        padding: 2rem 0;
        margin-bottom: 1.5rem;
    }
    
    .woocommerce-page-title {
        font-size: 1.75rem;
    }
    
    .woocommerce-page-subtitle {
        font-size: 0.9375rem;
    }
}
