/* Enhanced Brand Archive Styles */
.brand-archive-page.enhanced {
    padding: 2rem 0 4rem;
    background: #f8f9fa;
    min-height: 70vh;
}

/* Enhanced Header */
.brand-header-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.brand-visual {
    flex-shrink: 0;
}

.brand-logo-large {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.brand-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-icon-large {
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    backdrop-filter: blur(10px);
}

.brand-content {
    flex: 1;
}

.brand-title-large {
    font-size: 2.75rem;
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    line-height: 1.2;
}

.brand-slogan {
    font-size: 1.35rem;
    opacity: 0.95;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    font-weight: 300;
}

.brand-description-box {
    background: rgba(255,255,255,0.12);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    line-height: 1.7;
}

/* Brand Stats Grid */
.brand-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.stat-box {
    background: rgba(255,255,255,0.15);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-3px);
}

.stat-box.stat-link a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.stat-icon {
    font-size: 2rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Category Filter */
.category-filter-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.filter-title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: #e9ecef;
    border-color: #27AE60;
    transform: translateY(-2px);
}

.category-tab.active {
    background: #27AE60;
    border-color: #27AE60;
    color: white;
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-count {
    background: rgba(0,0,0,0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.category-tab.active .tab-count {
    background: rgba(255,255,255,0.25);
}

/* Products Section */
.brand-products-section {
    margin-bottom: 3rem;
}

.products-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid #27AE60;
    display: inline-block;
}

/* Enhanced Product Card */
.product-card.enhanced {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card.enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Related Brands */
.related-brands-section {
    margin-top: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.brand-item-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-header-enhanced {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
        text-align: center;
    }
    
    .brand-logo-large,
    .brand-icon-large {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        font-size: 3.5rem;
    }
    
    .brand-title-large {
        font-size: 2rem;
    }
    
    .brand-slogan {
        font-size: 1.1rem;
    }
    
    .brand-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-tabs {
        flex-direction: column;
    }
    
    .category-tab {
        justify-content: space-between;
    }
}
