/* Brands Page Styles - Crew Clothing Inspired Design */

.brands-main {
    background-color: #F8FAFC;
    min-height: 100vh;
    padding: 2rem 0;
}

.brands-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Content Area */
.brands-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Header Section */
.brands-header {
    background: #0D9488;
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brands-logo {
    flex-shrink: 0;
}

.brands-logo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.brands-title-section {
    flex: 1;
}

.brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.brands-badge i {
    color: #ffd700;
}

.brands-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.brands-title-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.brands-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #0D9488;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #0F766E;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Brands Grid */
.brands-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-card:hover {
    border-color: #ffd700;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6c757d;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.brand-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.25rem;
}

.brand-info p {
    color: #6B7280;
    font-size: 0.9rem;
}

.brand-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.brand-offers {
    display: flex;
    gap: 0.5rem;
}

.offer-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.offer-badge.code {
    background: #e3f2fd;
    color: #1976d2;
}

.offer-badge.deal {
    background: #f3e5f5;
    color: #7b1fa2;
}

.offer-badge.sale {
    background: #ffebee;
    color: #c62828;
}

.offer-badge.vip {
    background: #fff3e0;
    color: #f57c00;
}

.offer-badge.top {
    background: #e8f5e8;
    color: #2e7d32;
}

.offer-badge.exclusive {
    background: #f3e5f5;
    color: #7b1fa2;
}

.offer-badge.discount {
    background: #e3f2fd;
    color: #1976d2;
}

.offer-badge.code {
    background: #fff8e1;
    color: #f57c00;
}

.brand-action {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-action:hover {
    background: #ffed4e;
    transform: translateY(-1px);
}

/* No Brands State */
.no-brands {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-brands p {
    font-size: 1.1rem;
}

/* Right Sidebar */
.brands-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Verification Card */
.verification-card {
    text-align: center;
}

.verification-badge {
    background: #ffd700;
    color: #333;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

.verification-badge i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: block;
}

.verification-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.trustpilot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    color: #28a745;
}

/* VIP Card */
.vip-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vip-header i {
    color: #ffd700;
}

.vip-header span {
    background: #ffd700;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vip-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.vip-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.vip-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-white {
    background: white;
    color: #333;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    border-color: #ffd700;
    transform: translateY(-1px);
}

.btn-yellow {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background: #ffed4e;
    transform: translateY(-1px);
}

/* Stats Card */
.stats-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brands-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .brands-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .brands-title-section h1 {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .brands-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brands-main {
        padding: 1rem 0;
    }
    
    .brands-header {
        padding: 1.5rem;
    }
    
    .brands-title-section h1 {
        font-size: 1.75rem;
    }
    
    .brands-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
