.despo-sub-brands {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e5e5;
}

.despo-sub-brands__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #232323;
}

.despo-sub-brands__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1rem;
}

.despo-sub-brands__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, border-color .2s;
    background: #fff;
}

.despo-sub-brands__card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    text-decoration: none;
    color: inherit;
}

.despo-sub-brands__logo {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: .75rem;
}

.despo-sub-brands__initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
    font-weight: 700;
    font-size: 1rem;
    color: #888;
}

.despo-sub-brands__name {
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    color: #232323;
}

.despo-sub-brands__desc {
    font-size: .78rem;
    color: #777;
    text-align: center;
    margin-top: .3rem;
    line-height: 1.3;
}

.despo-brand-tree {
    padding: 1rem 0;
}

.despo-brand-tree__branch {
    margin-bottom: 2rem;
}

.despo-brand-tree__parent {
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #f0f0f0;
}

.despo-brand-tree__parent-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #232323;
    text-decoration: none;
}

.despo-brand-tree__parent-link:hover {
    color: #2fb5d2;
}

.despo-brand-tree__parent-logo {
    max-width: 50px;
    max-height: 35px;
    object-fit: contain;
}

.despo-brand-tree__children {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    padding-left: 1.5rem;
    margin-top: .5rem;
}

.despo-brand-tree__child {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .9rem;
    border: 1px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    color: #444;
    font-size: .88rem;
    transition: border-color .2s, background .2s;
}

.despo-brand-tree__child:hover {
    background: #f9f9f9;
    border-color: #ccc;
    text-decoration: none;
    color: #232323;
}

.despo-brand-tree__child-logo {
    max-width: 36px;
    max-height: 24px;
    object-fit: contain;
}

.despo-brand-tree__child-name {
    font-weight: 500;
}

.despo-brand-tree__empty {
    color: #999;
    font-style: italic;
}

@media (max-width: 767px) {
    .despo-sub-brands__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .despo-brand-tree__children {
        padding-left: .5rem;
    }
}
