/**
 * Subcategories Block
 * UNDER THE TITLE
 */
.ll-subcategories-list {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    order: -2;
}

.ll-subcat-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.ll-subcat-item {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eeeeee;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    color: #333 !important;
}

.ll-subcat-item:hover {
    background: #ffffff;
    border-color: var(--wd-primary-color, #777);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.ll-subcat-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-subcat-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.ll-subcat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.ll-subcat-name {
    font-size: 16px;
    font-weight: 600;
}

.ll-subcat-count {
    font-size: 13px;
    color: #888;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ll-subcat-item {
        flex: 1 1 calc(50% - 12px);
        min-width: 140px;
    }
}
