/* Brand Detail Page Styles */
.brand-detail-page {
    background: #f9f7fb;
    padding: 40px 0 60px;
    min-height: calc(100vh - var(--wd-header-h, 160px));
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 13px;
    color: #6a6a6a;
}

.breadcrumb a {
    color: #f26a30;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #c40545;
}

.breadcrumb span {
    color: #a0a0a0;
}

/* Brand Header */
.brand-header {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 12px 40px #150b3414;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand-logo-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: #f7f2fe;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-info {
    flex: 1;
}

.brand-name {
    color: #1e1e1e;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.brand-description {
    color: #6a6a6a;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Brand Products Section */
.brand-products-section {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 12px 40px #150b3414;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f26a3014;
}

.section-title {
    color: #1e1e1e;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.products-count {
    color: #6a6a6a;
    font-size: 14px;
    background: #f7f2fe;
    padding: 6px 12px;
    border-radius: 8px;
}

.brand-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.empty-icon {
    color: #f26a30;
    background: #f26a3014;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.empty-state h3 {
    color: #1e1e1e;
    font-size: 22px;
    margin: 0;
}

.empty-state p {
    color: #6a6a6a;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .brand-header {
        padding: 30px;
    }

    .brand-logo-wrapper {
        width: 120px;
        height: 120px;
    }

    .brand-name {
        font-size: 28px;
    }

    .brand-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .brand-detail-page {
        padding: 20px 0 40px;
    }

    .brand-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .brand-logo-wrapper {
        width: 100px;
        height: 100px;
    }

    .brand-name {
        font-size: 24px;
    }

    .brand-products-section {
        padding: 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .brand-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .brand-products-grid {
        grid-template-columns: 1fr;
    }
}

